:root {
  --navy: #0B1D3A;
  --navy-2: #0F2648;
  --red: #D71E28;
  --red-dark: #A81620;
  --off: #F6F7F9;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #fff;
}

/* ---- Utility bar ---- */
.util-bar {
  background: var(--navy-2);
  color: #c9d3e0;
  font-size: 13px;
  padding: 6px 0;
}

.util-bar a {
  color: #c9d3e0;
  text-decoration: none;
  margin-right: 0;
  transition: color .2s;
}

.util-bar a:hover {
  color: #fff;
}

.util-bar i {
  margin-right: 6px;
  color: var(--red);
}

.util-bar .track-link {
  background: var(--red);
  color: #fff;
  padding: 3px 14px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: .3px;
}


.timeline .tl-step .tl-dot .bi-check-lg {
  /* color: green;
    background: #0080001f;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 20px; */
}

.util-bar .track-link:hover {
  background: var(--red-dark);
  color: #fff;
}

.anc-Padding {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* ---- Main header ---- */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eaecef;
  transition: padding .25s ease, box-shadow .25s ease;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header.shrink {
  padding: 6px 0;
  box-shadow: 0 3px 18px rgba(11, 29, 58, .08);
}

.brand-logo {
  width: 130px;
  transition: height .25s ease;
}

.main-header.shrink .brand-logo {
  height: auto;
}

.topHeader .leftHEAD {
  gap: 12px;
}

.main-nav .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px !important;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-nav .nav-link:hover {
  color: var(--red);
}

.btn-book {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 4px;
  border: none;
  letter-spacing: .3px;
  transition: background .2s ease, transform .15s ease;
}

.btn-book:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  font-size: 26px;
  color: var(--navy);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas-header {
  background: var(--navy);
  color: #fff;
}

.offcanvas-body a.nav-link {
  color: var(--navy);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.offcanvas-contact {
  background: var(--off);
  padding: 16px 20px;
  border-radius: 6px;
  margin-top: 16px;
}

.offcanvas-contact div {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--navy);
}

.offcanvas-contact i {
  color: var(--red);
  margin-right: 8px;
}

/* demo filler content to test sticky/scroll */
.demo-hero {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.demo-filler {
  padding: 60px 0;
  color: #777;
  text-align: center;
}

/* Hero Section */
.slider {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
  transform: scale(1.08);
  transition: transform 7s ease-out;
}

.slide.active .slide-bg img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 29, 58, .4) 0%, rgba(11, 29, 58, .8) 55%, rgba(11, 29, 58, .15) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

.slide-content .container {
  color: #fff;
}

.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 30, 40, .15);
  border: 1px solid var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .6s ease .2s;
}

.slide.active .slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .35s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title .accent {
  color: var(--red);
}

.slide-text {
  font-size: 17px;
  color: #dbe2ee;
  max-width: 520px;
  margin: 0 auto 28px;
  margin-bottom: 28px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .5s;
}

.slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
}

.slide-actions {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease .65s;
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary-hero {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
  margin-right: 12px;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-hero:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-outline-hero {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .6);
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-hero:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* Progress-bar style indicators (reads number of .slide divs automatically) */
.slider-nav {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-nav button {
  width: 46px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, .3);
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.slider-nav button .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--red);
}

.slider-nav button.active .fill {
  width: 100%;
  transition: width 5.5s linear;
}

.slider-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 18px;
}

.slider-arrows button:hover {
  background: rgba(255, 255, 255, .25);
}

.slider-arrows .prev {
  left: 24px;
}

.slider-arrows .next {
  right: 24px;
}

@media(max-width:767px) {
  .slider {
    height: 560px;
  }

  .slide-title {
    font-size: 28px;
  }

  .slide-text {
    font-size: 14.5px;
  }

  .btn-primary-hero,
  .btn-outline-hero {
    padding: 11px 20px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .slider-arrows {
    display: none;
  }
}

/* Trust Strip */
.trust-ribbon {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  padding: 22px 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 10px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease;
}

.badge-item:hover {
  background: rgba(215, 30, 40, .18);
  border-color: var(--red);
}

.badge-item i {
  color: var(--red);
  font-size: 16px;
}

@media(max-width:767px) {
  .badge-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .badge-item {
    flex-shrink: 0;
    font-size: 13px;
    padding: 9px 14px;
  }
}

/* About Section */
.about-section {
  padding: 40px 0 40px;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 420px;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: 0 14px 30px rgba(11, 29, 58, .25);
  text-align: center;
}

.about-badge .n {
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
}

.about-badge .l {
  font-size: 12.5px;
  color: #c9d3e0;
}

@media(max-width:767px) {
  .about-badge {
    right: 10px;
    bottom: -18px;
    padding: 14px 18px;
  }
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}

.about-section p.lead-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.about-quote {
  border-left: 3px solid var(--red);
  padding-left: 18px;
  margin-bottom: 28px;
  font-style: italic;
  color: var(--navy);
  font-size: 16px;
}

/* Value pillars — each is its own <div class="value-item"> */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-item {
  display: flex;
  gap: 12px;
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.value-item p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media(max-width:575px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.founder-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid #eef0f3;
}

.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.founder-strip .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.founder-strip .role {
  font-size: 13px;
  color: var(--muted);
}

/* services section  */
.services-section {
  padding: 40px 0 40px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Each service is its own <div class="col"><div class="svc-card">...</div></div> */
.svc-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef0f3;
  padding: 30px 26px;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(11, 29, 58, .1);
}

.svc-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  border-top: 1px solid #eef0f3;
  padding-top: 14px;
  margin-bottom: 14px;
}

.svc-meta span.price {
  color: var(--red);
}

.svc-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-link:hover {
  color: var(--red);
}

/* Pricing Section */
.pricing-section {
  padding: 40px 0 40px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Each plan is its own <div class="col"><div class="price-card">...</div></div> */
.price-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 34px 28px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(11, 29, 58, .08);
}

.price-card.featured {
  border: 2px solid var(--red);
}

.price-card .ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.price-card .desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.price-card .amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
}

.price-card .amount span {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.price-card .window {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  margin: 6px 0 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.price-features li i {
  color: var(--red);
  font-size: 14px;
}

.btn-price {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  background: #F1F3F6;
  color: var(--navy);
}

.price-card.featured .btn-price {
  background: var(--red);
  color: #fff;
}

.btn-price:hover {
  opacity: .9;
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-note strong {
  color: var(--navy);
}

/* Testimonials Section */
.testi-section {
  padding: 40px 0 40px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Each review is its own <div class="col"><div class="testi-card">...</div></div> */
.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
  border: 1px solid #eef0f3;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 46px;
  color: rgba(215, 30, 40, .1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars i {
  color: #F2A93B;
  font-size: 14px;
  margin-right: 2px;
}

.testi-card p.quote {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
  margin: 16px 0 22px;
  font-style: italic;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-person .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.testi-person .company {
  font-size: 12.5px;
  color: var(--muted);
}

.trust-summary {
  background: #fff2f3;
  padding: 12px 0;
  border-radius: 12px;
  border: 1px solid #80808021;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-summary .n {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.trust-summary .l {
  font-size: 13px;
  color: var(--muted);
}

/* How it work section */
.how-section {
  padding: 80px 0;
  background: var(--navy);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 54px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.section-head p {
  color: #c9d3e0;
  font-size: 16px;
}

/* Each step is its own <div class="col"><div class="step-item">...</div></div> */
.steps-row {
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 10px, transparent 10px 20px);
  z-index: 0;
}

@media(max-width:991px) {
  .steps-row::before {
    display: none;
  }
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--red);
  position: relative;
}

.step-item h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-item p {
  color: #c9d3e0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

.how-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-how {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}

.btn-how:hover {
  background: #A81620;
  color: #fff;
}

/* Why choose us section */
.why-section {
  padding: 40px 0 40px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.why-section>.container>p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 40px;
}

/* Feature cards row — each is its own <div class="col"><div class="why-card">...</div></div> */
.why-card {
  background: #F8F9FB;
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  border: 1px solid #eef0f3;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Comparison table — rows are edited directly in <tbody>, add/remove <tr> freely */
.compare-wrap {
  margin-top: 20px;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eef0f3;
}

.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--navy);
  border-top: 1px solid #f0f1f4;
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
}

.compare-table tbody tr:nth-child(even) {
  background: #FAFBFC;
}

.compare-table .yes {
  color: #1D9E75;
  font-weight: 700;
}

.compare-table .col-us {
  background: rgba(215, 30, 40, .04);
}

.compare-table thead th.col-us {
  background: var(--red);
}

@media(max-width:767px) {
  .compare-wrap {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 520px;
  }
}

/* Service area Section */
.area-section {
  padding: 40px 0 40px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.area-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.area-section>.container>p {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 40px;
}

.map-panel {
  background: var(--navy);
  border-radius: 14px;
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  position: absolute;
  inset: 0;
}

.map-panel-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 30px;
}

.map-panel-content i {
  font-size: 44px;
  color: var(--red);
  margin-bottom: 16px;
}

.map-panel-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-panel-content p {
  color: #c9d3e0;
  font-size: 14px;
  max-width: 280px;
  margin: 0 auto;
}

/* Each city is its own <div class="city-chip"> — edit label directly */
.city-list-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.city-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #eef0f3;
  padding: 9px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.city-chip i {
  color: var(--red);
  font-size: 13px;
}

.national-note {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 18px 20px;
  align-items: flex-start;
}

.national-note i {
  font-size: 26px;
  color: var(--red);
}

.national-note h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.national-note p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* Faqs section */
.faq-section {
  padding: 40px 0 40px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Category tabs */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.faq-tab {
  background: #fff;
  border: 1px solid #eef0f3;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 24px;
  cursor: pointer;
  transition: all .2s ease;
}

.faq-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.faq-tab:hover:not(.active) {
  border-color: var(--red);
  color: var(--red);
}

.faq-panel {
  display: none;
  max-width: 85%;
  margin: 0 auto;
}

.faq-panel.active {
  display: block;
}

/* Each Q&A is its own <div class="faq-item"> — edit question/answer text directly */
.faq-item {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.faq-q i {
  color: var(--red);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-a {
  max-height: 220px;
}

.faq-a p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* size guide css */
.size-section {
  padding: 40px 0 40px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Each size tier is its own <div class="col"><div class="size-card">...</div></div> */
.size-card {
  background: #F8F9FB;
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  border: 1px solid #eef0f3;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}

.size-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.size-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.size-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.size-card .range {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}

.size-card .desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.size-card .examples {
  font-size: 12px;
  color: #9aa0a8;
  font-style: italic;
}

.handling-note {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.handling-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 13.5px;
  font-weight: 600;
}

.handling-chip i {
  color: var(--red);
}


/* Footer Section */
footer {
  background: var(--navy);
  color: var(--off);
}

.footer-top {
  padding: 56px 0 30px;
}

.footer-brand-logo {
  width: 130px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--off);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.footer-links a {
  display: block;
  color: var(--off);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links a i {
  color: var(--red);
  font-size: 11px;
  margin-right: 8px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--off);
}

.footer-contact i {
  color: var(--red);
  font-size: 16px;
  margin-top: 2px;
}

.newsletter input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 13.5px;
}

.newsletter input::placeholder {
  color: #8896ac;
}

.newsletter .btn-sub {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  border: none;
  font-size: 13.5px;
}

.newsletter .btn-sub:hover {
  background: var(--red-dark);
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: background .2s ease;
}

.social-icons a:hover {
  background: var(--red);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom {
  padding: 18px 0;
  font-size: 13px;
  color: #8896ac;
}

.footer-bottom a {
  color: #8896ac;
  text-decoration: none;
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media(max-width:767px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 6px 8px;
  }
}

.badge-strip {
  background: var(--navy-2);
  padding: 14px 0;
  font-size: 13px;
  color: var(--off);
}

.badge-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.badge-strip i {
  color: var(--red);
  font-size: 16px;
}

/* Inner Pages */
/* ============ PAGE BANNER ============ */
.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  padding: 64px 0 54px;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  width: 280px;
  background: var(--red);
  opacity: .08;
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}

.page-banner h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  color: #c9d3e0;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #c9d3e0;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-nav i {
  font-size: 11px;
  margin: 0 8px;
}


/* ============ OUR STORY ============ */
.story-section {
  padding: 80px 0;
}

.story-img-wrap {
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 440px;
}

.story-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: 0 14px 30px rgba(11, 29, 58, .25);
  text-align: center;
}

.story-badge .n {
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
}

.story-badge .l {
  font-size: 12.5px;
  color: #c9d3e0;
}

@media(max-width:767px) {
  .story-badge {
    right: 8px;
    bottom: -18px;
    padding: 14px 18px;
  }
}

.story-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.story-section p.lead-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-quote {
  border-left: 3px solid var(--red);
  padding-left: 18px;
  margin: 28px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 16.5px;
}

/* ============ MISSION & VISION ============ */
.mv-section {
  padding: 70px 0;
  background: #F8F9FB;
}

.mv-card {
  background: #fff;
  border-radius: 14px;
  padding: 38px 34px;
  height: 100%;
  border: 1px solid #eef0f3;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--red);
}

.mv-card.vision::before {
  background: var(--navy);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.mv-card.vision .mv-icon {
  background: rgba(11, 29, 58, .08);
  color: var(--navy);
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ============ CORE VALUES ============ */
.values-section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #eef0f3;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(11, 29, 58, .08);
}

.value-card .vicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}

.value-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ STATS STRIP ============ */
.stats-strip {
  background: var(--navy);
  padding: 50px 0;
}

.stats-strip .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
}

.stats-strip .label {
  font-size: 13.5px;
  color: #c9d3e0;
  margin-top: 4px;
}

.stats-strip .col-6 {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats-strip .col-6:last-child {
  border-right: none;
}

@media(max-width:767px) {
  .stats-strip .col-6 {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

/* ============ LEADERSHIP ============ */
.leader-section {
  padding: 80px 0;
}

.leader-card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #F8F9FB;
  border-radius: 14px;
  padding: 34px;
  border: 1px solid #eef0f3;
}

.leader-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 34px;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(11, 29, 58, .15);
}

.leader-card h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.leader-card .role {
  color: var(--red);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.leader-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.leader-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
}

.leader-contact i {
  color: var(--red);
  margin-right: 6px;
}

@media(max-width:575px) {
  .leader-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--red);
  padding: 44px 0;
  text-align: center;
}

.cta-band h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.btn-cta-white {
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}

.btn-cta-white:hover {
  background: var(--navy);
  color: #fff;
}

/* Services page */
/* ============ QUICK NAV ============ */
.quick-nav {
  background: #F8F9FB;
  border-bottom: 1px solid #eef0f3;
  position: sticky;
  top: 0;
  z-index: 50;
}

.quick-nav .container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 0;
}

.quick-nav a {
  flex-shrink: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all .2s ease;
}

.quick-nav a:hover {
  background: rgba(215, 30, 40, .08);
  color: var(--red);
}

.quick-nav a.active {
  background: var(--navy);
  color: #fff;
}

/* ============ INTRO ============ */
.intro-section {
  padding: 60px 0 20px;
  text-align: center;
}

.intro-section p {
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
}

/* ============ SERVICE DETAIL BLOCKS ============ */
.svc-block {
  padding: 64px 0;
  scroll-margin-top: 70px;
}

.svc-block:nth-child(even) {
  background: #F8F9FB;
}

.svc-block-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

.svc-icon-lg {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.svc-block h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.svc-block .tagline {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.svc-block p.desc {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.svc-badge-pop {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .3px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.spec-item {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 14px 16px;
}

.svc-block:nth-child(even) .spec-item {
  background: #fff;
}

.spec-item .k {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 3px;
}

.spec-item .v {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

@media(max-width:575px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.svc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 10px;
  padding: 16px 22px;
  margin-bottom: 20px;
}

.svc-price-row .label {
  color: #c9d3e0;
  font-size: 13.5px;
}

.svc-price-row .amount {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.svc-price-row .amount span {
  font-size: 13px;
  color: #c9d3e0;
  font-weight: 600;
}

.btn-svc {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  font-size: 14.5px;
}

.btn-svc:hover {
  background: var(--red-dark);
  color: #fff;
}

/* ============ PRICING QUICK REF TABLE ============ */
.pricing-ref {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.ref-table-wrap {
  overflow-x: auto;
}

.ref-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}

.ref-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
}

.ref-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.ref-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.ref-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid #eef0f3;
}

.ref-table tbody tr:nth-child(even) {
  background: #F8F9FB;
}

.ref-table .price {
  color: var(--red);
  font-weight: 700;
}

/* ============ CALCULATOR TEASER ============ */
.calc-teaser {
  background: var(--navy);
  padding: 56px 0;
}

.calc-teaser .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.calc-teaser h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.calc-teaser p {
  color: #c9d3e0;
  font-size: 14.5px;
  margin: 0;
  max-width: 440px;
}

.btn-calc {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
  white-space: nowrap;
}

.btn-calc:hover {
  background: var(--red);
  color: #fff;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--red);
  padding: 44px 0;
  text-align: center;
}

.cta-band h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.btn-cta-white {
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}

.btn-cta-white:hover {
  background: var(--navy);
  color: #fff;
}

/* pricing */
/* ============ PLAN CARDS ============ */
.plans-section {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.price-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 34px 28px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(11, 29, 58, .08);
}

.price-card.featured {
  border: 2px solid var(--red);
}

.price-card .ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.price-card .desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.price-card .amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
}

.price-card .amount span {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.price-card .window {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  margin: 6px 0 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.price-features li i {
  color: var(--red);
  font-size: 14px;
}

.btn-price {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  background: #F1F3F6;
  color: var(--navy);
}

.price-card.featured .btn-price {
  background: var(--red);
  color: #fff;
}

/* ============ FULL PRICING TABLE ============ */
.full-table-section {
  padding: 70px 0;
  background: #F8F9FB;
}

.ref-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef0f3;
}

.ref-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
}

.ref-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 16px;
  text-align: left;
}

.ref-table tbody td {
  padding: 15px 16px;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid #eef0f3;
}

.ref-table tbody tr:last-child td {
  border-bottom: none;
}

.ref-table tbody tr:nth-child(even) {
  background: #FAFBFC;
}

.ref-table .price {
  color: var(--red);
  font-weight: 700;
}

.table-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
}

.table-note i {
  color: var(--red);
  margin-top: 2px;
}

/* ============ CALCULATOR ============ */
.calc-section {
  padding: 70px 0;
}

.calc-panel {
  background: var(--navy);
  border-radius: 16px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.calc-panel::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: var(--red);
  opacity: .08;
  border-radius: 50%;
}

.calc-panel h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.calc-panel p {
  color: #c9d3e0;
  font-size: 14.5px;
  margin-bottom: 26px;
  max-width: 100%;
}

.calc-form label {
  color: #c9d3e0;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 6px;
  display: block;
}

.calc-form .form-control,
.calc-form .form-select {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 14px;
}

.calc-form .form-control::placeholder {
  color: #8896ac;
}

.calc-form .form-control:focus,
.calc-form .form-select:focus {
  background: rgba(255, 255, 255, .1);
  border-color: var(--red);
  box-shadow: none;
  color: #fff;
}

.btn-calc-submit {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  font-size: 14.5px;
  margin-top: 8px;
}

.btn-calc-submit:hover {
  background: var(--red-dark);
  color: #fff;
}

.calc-result {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 20px;
  margin-top: 22px;
  display: none;
}

.calc-result.show {
  display: block;
}

.calc-result .amount {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.calc-result .meta {
  font-size: 13px;
  color: #c9d3e0;
  margin-top: 4px;
}

.form-select-1 {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #ff4650;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
}

/* ============ BILLING INFO ============ */
.billing-section {
  padding: 70px 0;
  background: #F8F9FB;
}

.billing-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 26px;
  height: 100%;
}

.billing-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
}

.billing-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.billing-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ MINI FAQ ============ */
.mini-faq-section {
  padding: 70px 0;
}

.faq-item {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.faq-q i {
  color: var(--red);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-a {
  max-height: 160px;
}

.faq-a p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--red);
  padding: 44px 0;
  text-align: center;
}

.cta-band h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.btn-cta-white {
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}

.btn-cta-white:hover {
  background: var(--navy);
  color: #fff;
}

/* contact us page */
/* ============ CONTACT INFO CARDS (overlap banner) ============ */
.info-cards-wrap {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 14px 30px rgba(11, 29, 58, .1);
  text-align: center;
  transition: transform .25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.info-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.info-card a {
  color: var(--muted);
  text-decoration: none;
}

.info-card a:hover {
  color: var(--red);
}

/* ============ FORM + MAP SPLIT ============ */
.contact-main {
  padding: 90px 0 70px;
}

.form-panel {
  background: #F8F9FB;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #eef0f3;
}

.form-panel h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-panel p.sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1px solid #dfe3e8;
  font-size: 14.5px;
  padding: 11px 14px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 30, 40, .1);
}

textarea.form-control {
  resize: vertical;
}

.btn-send {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.btn-send:hover {
  background: var(--red-dark);
  color: #fff;
}

.side-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  position: relative;
  background: var(--navy);
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  position: absolute;
  inset: 0;
}

.map-box-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.map-box-content i {
  font-size: 34px;
  color: var(--red);
  margin-bottom: 10px;
}

.map-box-content p {
  font-size: 13px;
  color: #c9d3e0;
  max-width: 240px;
  margin: 6px auto 0;
}

.hours-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px 30px;
  color: #fff;
  flex: 1;
}

.hours-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-box h4 i {
  color: var(--red);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  color: #c9d3e0;
}

.hours-row .time {
  font-weight: 700;
  color: #fff;
}

.response-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(215, 30, 40, .08);
  border: 1px solid rgba(215, 30, 40, .25);
  border-radius: 10px;
  padding: 14px 18px;
}

.response-badge i {
  color: var(--red);
  font-size: 20px;
}

.response-badge span {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--red);
  padding: 44px 0;
  text-align: center;
}

.cta-band h3 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.btn-cta-white {
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}

.btn-cta-white:hover {
  background: var(--navy);
  color: #fff;
}

/* Booking Page */
/* ============ WIZARD WRAPPER ============ */
.wizard-wrap {
  padding: 50px 0 80px;
}

.wizard-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(11, 29, 58, .08);
  overflow: hidden;
}

/* ---- Step indicator ---- */
.step-track {
  display: flex;
  background: var(--navy);
  padding: 0;
}

.step-track .step {
  flex: 1;
  text-align: center;
  padding: 20px 8px;
  position: relative;
  color: #8896ac;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.step-track .step:last-child {
  border-right: none;
}

.step-track .step .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #8896ac;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 13px;
  font-weight: 800;
  transition: all .25s ease;
}

.step-track .step.active {
  color: #fff;
}

.step-track .step.active .circle {
  background: var(--red);
  color: #fff;
}

.step-track .step.done .circle {
  background: #1D9E75;
  color: #fff;
}

.step-track .step.done {
  color: #c9d3e0;
}

.step-track .step .label {
  display: none;
}

@media(min-width:768px) {
  .step-track .step .label {
    display: inline;
  }
}

/* ---- Form panels ---- */
.wizard-body {
  padding: 40px;
}

@media(max-width:575px) {
  .wizard-body {
    padding: 26px 20px;
  }
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

.panel-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.panel-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1px solid #dfe3e8;
  font-size: 14.5px;
  padding: 11px 14px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 30, 40, .1);
}

/* Service type cards (step 1) */
.svc-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 10px;
}

.svc-select-card {
  border: 2px solid #eef0f3;
  border-radius: 10px;
  padding: 12px 12px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}

.svc-select-card:hover {
  border-color: #c9d3e0;
}

.svc-select-card.selected {
  border-color: var(--red);
  background: rgba(215, 30, 40, .04);
}

.svc-select-card i {
  font-size: 24px;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.svc-select-card .t {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 2px;
}

.svc-select-card .p {
  font-size: 12px;
  color: var(--muted);
}

/* Section divider inside a panel */
.mini-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin: 26px 0 14px;
  padding-top: 20px;
  border-top: 1px solid #f0f1f4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-heading:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.mini-heading i {
  color: var(--red);
}

/* Special handling checkboxes */
.handling-check {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.handling-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe3e8;
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
}

.handling-check input {
  accent-color: var(--red);
}

/* ---- Review step ---- */
.review-box {
  background: #F8F9FB;
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 16px;
  border: 1px solid #eef0f3;
}

.review-box h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-box h5 i {
  color: var(--red);
}

.review-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 5px 0;
  color: var(--muted);
}

.review-row span:last-child {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

/* ---- Nav buttons ---- */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
}

.btn-back {
  background: #F1F3F6;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  font-size: 14.5px;
}

.btn-next {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-size: 14.5px;
}

.btn-next:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-back:disabled {
  opacity: .4;
}

/* ---- Success screen ---- */
.success-panel {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(29, 158, 117, .1);
  color: #1D9E75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 22px;
}

.success-panel h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.success-panel p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.booking-id-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.booking-id-box i {
  color: var(--red);
  font-size: 22px;
}

/* track page css */

.search-panel {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(11, 29, 58, .18);
  margin-top: 26px;
  max-width: 640px;
}

.search-panel form {
  display: flex;
  gap: 8px;
}

.search-panel input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 8px;
  background: #F8F9FB;
}

.search-panel input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(215, 30, 40, .12);
}

.btn-track-submit {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-size: 14.5px;
  white-space: nowrap;
}

.btn-track-submit:hover {
  background: var(--red-dark);
  color: #fff;
}

@media(max-width:575px) {
  .search-panel form {
    flex-direction: column;
  }

  .btn-track-submit {
    width: 100%;
  }
}

/* ============ RESULTS ============ */
.results-wrap {
  padding: 0 0 80px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.result-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(11, 29, 58, .08);
  padding: 36px;
  margin-bottom: 24px;
}

@media(max-width:575px) {
  .result-card {
    padding: 24px 20px;
  }
}

.result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef0f3;
}

.result-head .id {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.result-head .id span {
  color: var(--red);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 158, 117, .1);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 20px;
}

.status-pill.in-transit {
  background: rgba(215, 30, 40, .1);
  color: var(--red);
}

.status-pill i {
  font-size: 8px;
}

.eta-box {
  text-align: right;
}

.eta-box .l {
  font-size: 12px;
  color: var(--muted);
}

.eta-box .v {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

/* ---- Timeline ---- */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 10px 0 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #eef0f3;
  z-index: 0;
}

.timeline .progress-line {
  position: absolute;
  top: 19px;
  left: 0%;
  height: 3px;
  background: var(--red);
  z-index: 1;
  transition: width .4s ease;
}

.tl-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #eef0f3;
  color: #c2c7ce;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  transition: all .3s ease;
}

.tl-step.done .tl-dot {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.tl-step.active .tl-dot {
  border-color: var(--red);
  background: #fff;
  color: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 30, 40, .12);
}

.tl-step .t {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}

.tl-step.done .t,
.tl-step.active .t {
  color: var(--navy);
}

.tl-step .time {
  font-size: 11px;
  color: #9aa0a8;
  margin-top: 2px;
}

@media(max-width:575px) {
  .tl-step .t {
    font-size: 10.5px;
  }

  .tl-dot {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* ---- Details grid ---- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

@media(max-width:767px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-box {
  background: #F8F9FB;
  border-radius: 10px;
  padding: 20px 22px;
  border: 1px solid #eef0f3;
}

.detail-box h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.detail-box h5 i {
  color: var(--red);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 6px 0;
  color: var(--muted);
}

.detail-row span:last-child {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

/* ---- Activity log ---- */
.activity-section {
  margin-top: 30px;
}

.activity-section h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.activity-item {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  position: relative;
}

.activity-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: #eef0f3;
}

.activity-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  z-index: 1;
}

.activity-content .t {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.activity-content .d {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.activity-content .time {
  font-size: 12px;
  color: #9aa0a8;
  margin-top: 3px;
}

/* ---- Not found state ---- */
.empty-state {
  text-align: center;
  padding: 50px 20px;
}

.empty-state i {
  font-size: 44px;
  color: #dfe3e8;
  margin-bottom: 16px;
}

.empty-state h4 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}

.empty-state p {
  color: var(--muted);
  font-size: 14px;
}

/* ============ HELP STRIP ============ */
.help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: var(--navy);
  border-radius: 14px;
  padding: 26px 30px;
}

.help-strip .t {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.help-strip .s {
  color: #c9d3e0;
  font-size: 13px;
  margin-top: 2px;
}

.btn-help {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  white-space: nowrap;
}

.btn-help:hover {
  background: var(--red-dark);
  color: #fff;
}

/* FAQs Page */
.faq-search {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 30px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 16px 40px rgba(11, 29, 58, .18);
  margin: 26px auto 0;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-search i {
  color: var(--muted);
  font-size: 16px;
}

.faq-search input {
  flex: 1;
  border: none;
  padding: 12px 4px;
  font-size: 14.5px;
}

.faq-search input:focus {
  outline: none;
}

.faq-search button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13.5px;
}

.faq-search button:hover {
  background: var(--red-dark);
}

/* ============ LAYOUT ============ */
.faq-main {
  padding: 0 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.faq-shell {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(11, 29, 58, .08);
  overflow: hidden;
}

/* ---- Category sidebar (desktop) / tabs (mobile) ---- */
.faq-sidebar {
  background: #F8F9FB;
  padding: 30px 0;
  border-right: 1px solid #eef0f3;
  height: 100%;
}

.faq-sidebar .cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  border-left: 3px solid transparent;
  transition: all .2s ease;
}

.faq-sidebar .cat-item i {
  font-size: 18px;
  color: var(--muted);
}

.faq-sidebar .cat-item .count {
  margin-left: auto;
  background: #eef0f3;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 12px;
}

.faq-sidebar .cat-item.active {
  background: #fff;
  border-left-color: var(--red);
  color: var(--red);
}

.faq-sidebar .cat-item.active i {
  color: var(--red);
}

.faq-sidebar .cat-item.active .count {
  background: var(--red);
  color: #fff;
}

.faq-sidebar .cat-item:hover:not(.active) {
  background: rgba(215, 30, 40, .04);
}

@media(max-width:767px) {
  .faq-sidebar {
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #eef0f3;
    padding: 16px 12px;
    gap: 8px;
  }

  .faq-sidebar .cat-item {
    flex-shrink: 0;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    padding: 10px 16px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
  }

  .faq-sidebar .cat-item.active {
    border-left: none;
    border-bottom-color: var(--red);
  }

  .faq-sidebar .cat-item .count {
    margin-left: 0;
  }
}

/* ---- Q&A panel ---- */
.faq-content {
  padding: 36px 40px;
}

@media(max-width:575px) {
  .faq-content {
    padding: 26px 20px;
  }
}

.faq-cat-panel {
  display: none;
}

.faq-cat-panel.active {
  display: block;
}

.faq-cat-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.faq-item {
  background: #F8F9FB;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
}

.faq-q i {
  color: var(--red);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open {
  background: #fff;
  border-color: rgba(215, 30, 40, .2);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-a {
  max-height: 260px;
}

.faq-a p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.faq-item.hidden {
  display: none;
}

.no-results {
  display: none;
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
}

.no-results i {
  font-size: 36px;
  color: #dfe3e8;
  margin-bottom: 12px;
  display: block;
}

/* ============ STILL HAVE QUESTIONS CTA ============ */
.cta-band {
  background: var(--red);
  padding: 44px 0;
  text-align: center;
  margin-top: 10px;
  border-radius: 16px 16px 0 0;
}

.cta-band h3 {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-cta-white {
  background: #fff;
  color: var(--red-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  font-size: 14.5px;
  margin: 0 6px;
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .6);
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 14.5px;
  margin: 0 6px;
}

.btn-cta-outline:hover {
  background: #fff;
  color: var(--red-dark);
}

/* service section with modal box */
/* ============ SLIDER TRACK ============ */
.svc-slider-wrap {
  position: relative;
  padding: 0 54px;
}

.svc-track-viewport {
  overflow: hidden;
}

.svc-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

/* Each card keeps 3-per-view on desktop, matching your original grid look */
.svc-slide {
  flex: 0 0 calc((100% - 48px)/3);
  min-width: 0;
}

@media(max-width:991px) {
  .svc-slide {
    flex: 0 0 calc((100% - 24px)/2);
  }
}

@media(max-width:575px) {
  .svc-slide {
    flex: 0 0 100%;
  }
}

.svc-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef0f3;
  padding: 30px 26px;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(11, 29, 58, .1);
}

.svc-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(215, 30, 40, .08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  border-top: 1px solid #eef0f3;
  padding-top: 14px;
  margin-bottom: 14px;
}

.svc-meta span.price {
  color: var(--red);
}

.svc-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.svc-link:hover {
  color: var(--red);
}

/* ============ ARROWS ============ */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eef0f3;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(11, 29, 58, .08);
  transition: all .2s ease;
}

.slider-arrow:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.slider-arrow:disabled:hover {
  background: #fff;
  color: var(--navy);
  border-color: #eef0f3;
}

/* ============ DOTS ============ */
.svc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.svc-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dfe3e8;
  border: none;
  padding: 0;
  transition: all .2s ease;
}

.svc-dots button.active {
  background: var(--red);
  width: 22px;
  border-radius: 5px;
}

@media(max-width:575px) {
  .svc-slider-wrap {
    padding: 0 6px;
  }

  .slider-arrow {
    display: none;
  }
}

/* ============ MODAL (service details popup) ============ */
.svc-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.svc-modal .modal-header {
  background: var(--navy);
  border: none;
  padding: 24px 30px;
}

.svc-modal .modal-header .svc-modal-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(215, 30, 40, .15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 14px;
}

.svc-modal .modal-title {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.svc-modal .modal-title .tag {
  display: block;
  color: #c9d3e0;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
}

.svc-modal .btn-close {
  filter: brightness(0) invert(1);
}

.svc-modal .modal-body {
  padding: 30px;
}

.svc-modal .desc-text {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.svc-modal .spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.svc-modal .spec-item {
  background: #F8F9FB;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 12px 14px;
}

.svc-modal .spec-item .k {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 3px;
}

.svc-modal .spec-item .v {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

@media(max-width:480px) {
  .svc-modal .spec-grid {
    grid-template-columns: 1fr;
  }
}

.svc-modal .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.svc-modal .price-row .label {
  color: #c9d3e0;
  font-size: 13px;
}

.svc-modal .price-row .amount {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.svc-modal .price-row .amount span {
  font-size: 12.5px;
  color: #c9d3e0;
  font-weight: 600;
}

.svc-modal .modal-footer {
  border: none;
  padding: 0 30px 30px;
  justify-content: center;
}

.btn-modal-book {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-size: 14.5px;
  width: 100%;
}

.btn-modal-book:hover {
  background: var(--red-dark);
  color: #fff;
}

/* Mobile View */
@media(max-width:767px) {
  .anc-Padding {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .slider {
    height: 430px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .slider-arrow {
    display: block;
  }

  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px
  }

  .svc-modal .modal-body {
    padding: 12px;
  }
  .svc-modal .modal-title {
    font-weight: 600;
  }
  .step-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.step-num {
    width: 50px;
    height: 50px;
    font-size: 18px;
}
.how-section {
    padding: 40px 0;
}
.why-section h2 {
    font-size: 26px;
  }
  .faq-tab {
    background: #fff;
    border: 1px solid #eef0f3;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 22px;
  }
  .faq-section {
    padding: 0 0 20px;
}
.faq-panel {
    display: none;
    max-width: 100%;
}
.page-banner h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.story-section h2 {
    font-size: 24px;
    text-transform: capitalize;
}
.story-section {
    padding: 30px 0 0;
}
.mv-section {
    padding: 30px 0;
}
.values-section {
    padding: 30px 0;
}

.leader-section {
    padding: 30px 0;
}
.cta-band h3 {
    font-weight: 700;
    font-size: 20px;
}
.svc-block h2 {
    font-size: 22px;
    font-weight: 700;
}
.svc-block {
    padding: 30px 0;
}
.calc-teaser h3 {
    font-size: 22px;
    font-weight: 600;
}
.plans-section {
    padding: 40px 0;
}
.price-card {
    text-align: left;
}
.full-table-section {
    padding: 30px 0;
}
.calc-section {
    padding: 30px 0;
}
.calc-panel {
    padding: 15px;
}
form#calcForm .col-3, form#calcForm .col-2 {
    width: 100%;
}
.calc-panel h3 {
    font-size: 20px;
    font-weight: 600;
}
.calc-result .amount {
    font-size: 24px;
    font-weight: 600;
}
.btn-calc-submit {
    font-weight: 600;
    padding: 10px 12px;
}
.sub {
    color: #fff;
}
.results-wrap {
    padding: 0px 0 30px;
}
.result-head .id {
    font-size: 20px;
    font-weight: 600;
}
.status-pill {
  font-weight: 600;
}
.eta-box .v {
    font-size: 14px;
    font-weight: 700;
}
    .result-card {
        padding: 24px 12px;
    }
    .info-card {
    padding: 14px 10px;
    }
    .contact-main {
    padding: 30px 0 30px;
}
.form-panel {
    padding: 20px;
}
.form-panel h3 {
    font-size: 22px;
    font-weight: 600;
}
.panel-title {
    font-size: 20px;
    font-weight: 600;
}
.svc-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 2fr));
    gap: 5px;
    margin-bottom: 10px;
}
.svc-select-card {
    padding: 9px 10px;
}
.svc-select-card .t {
    font-weight: 700;
    font-size: 13px;
}
    .wizard-body {
        padding: 8px 8px;
    }
.success-panel h2 {
    font-size: 20px;
    font-weight: 700;
}
.success-panel p {
    font-size: 14px;
}
.booking-id-box {
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 600;
}
}

/* mobile bottom */
.mobile-tabbar{
  display:none; /* shown only on mobile via media query below */
  position:fixed;bottom:0;left:0;right:0;z-index:1000;
  background:#fff;
  border-top:1px solid #eef0f3;
  box-shadow:0 -4px 20px rgba(11,29,58,.08);
  padding-bottom:env(safe-area-inset-bottom, 0px); /* iOS home-bar safe area */
}
.mobile-tabbar-inner{
  display:flex;align-items:flex-end;justify-content:space-around;
  height:64px;position:relative;
}

.mobile-tabbar-inner .tab-item{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:3px;text-decoration:none;color:#8a8f98;padding:8px 4px 10px;
  transition:color .2s ease;
}
.mobile-tabbar-inner .tab-item i{font-size:20px;}
.mobile-tabbar-inner .tab-item span{font-size:10.5px;font-weight:700;letter-spacing:.1px;}
.mobile-tabbar-inner .tab-item.active{color:var(--red);}
.mobile-tabbar-inner .tab-item:active{opacity:.7;}

/* Center "Book" tab — raised circular button */
.mobile-tabbar-inner .tab-item.tab-primary{
  position:relative;color:#fff;
}
.mobile-tabbar-inner .tab-primary-circle{
  width:52px;height:52px;border-radius:50%;
  background:var(--red);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 16px rgba(215,30,40,.35);
  margin-top:-26px;border:4px solid #fff;
  transition:transform .15s ease, background .2s ease;
}
.mobile-tabbar-inner .tab-item.tab-primary:active .tab-primary-circle{transform:scale(.94);background:var(--red-dark);}
.mobile-tabbar-inner .tab-primary-circle i{font-size:22px;color:#fff;}
.mobile-tabbar-inner .tab-item.tab-primary span{color:var(--navy);margin-top:2px;}

/* Prevent content from being hidden behind the fixed bar on mobile */
.mobile-tabbar-spacer{display:none;}

@media(max-width:767px){
  .mobile-tabbar{display:block;}
  .mobile-tabbar-spacer{display:block;height:76px;}
}

@media (min-width: 767px) and (max-width: 991px) {
.mobile-tabbar{display:block;}
  .mobile-tabbar-spacer{display:block;height:76px;}
}

/* preloader css */
#preloader{
  position:fixed;inset:0;z-index:9999;
  background:#fff;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  transition:opacity .5s ease, visibility .5s ease;
}
#preloader.fade-out{opacity:0;visibility:hidden;pointer-events:none;}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 5;
    flex-direction: column;
}
.preloader-logo svg{height:34px;}
.preloader-logo .name{font-weight:800;color:var(--navy);font-size:19px;letter-spacing:.2px;}
.preloader-logo .name span{color:var(--red);}

/* ---- Road + truck animation ---- */
.route-wrap{
  width:280px;position:relative;height:90px;
}

.road-line{
  position:absolute;bottom:22px;left:0;right:0;height:3px;
  background:repeating-linear-gradient(90deg, #dfe3e8 0 14px, transparent 14px 26px);
  border-radius:2px;
}

/* pin markers at start (warehouse) and end (destination) */
.pin{
  position:absolute;bottom:14px;width:20px;height:20px;
  display:flex;align-items:center;justify-content:center;
}
.pin.start{left:-4px;color:#c2c7ce;}
.pin.end{right:-4px;color:var(--red);}
.pin svg{width:18px;height:18px;}

.truck-wrap{
  position:absolute;bottom:24px;left:0;
  animation:driveAcross 2.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes driveAcross{
  0%{ left:0%; }
  45%{ left:calc(100% - 46px); }
  50%{ left:calc(100% - 46px); }  /* brief pause at destination */
  55%{ left:calc(100% - 46px); }
  100%{ left:0%; }
}

.truck{
  width:46px;height:30px;position:relative;
}
.truck svg{width:100%;height:100%;}

/* wheels spin */
.wheel{
  animation:spin 0.4s linear infinite;
  transform-origin:center;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

/* dust/motion puff behind truck */
.truck-wrap::after{
  content:'';position:absolute;bottom:2px;left:-10px;width:8px;height:8px;
  background:#e9ecf1;border-radius:50%;
  animation:puff 2.2s cubic-bezier(.65,0,.35,1) infinite;
  opacity:0;
}
@keyframes puff{
  0%{opacity:0;}
  10%{opacity:.6;transform:translateX(0) scale(1);}
  40%{opacity:0;transform:translateX(-16px) scale(1.8);}
  50%,100%{opacity:0;}
}

/* checkmark pulse at the destination pin, timed with truck arrival */
.pin.end .check-pulse{
  position:absolute;inset:0;border-radius:50%;
  background:rgba(215,30,40,.25);
  animation:pulse 2.2s cubic-bezier(.65,0,.35,1) infinite;
  opacity:0;
}
@keyframes pulse{
  0%,42%{opacity:0;transform:scale(.6);}
  48%{opacity:1;transform:scale(1.6);}
  58%{opacity:0;transform:scale(2.2);}
  100%{opacity:0;}
}

.preloader-text{
  margin-top:15px;font-size:13.5px;color:#6b7280;font-weight:600;letter-spacing:.3px;
}
.preloader-text .dots span{
  animation:dotBlink 1.4s infinite;
  opacity:0;
}
.preloader-text .dots span:nth-child(2){animation-delay:.2s;}
.preloader-text .dots span:nth-child(3){animation-delay:.4s;}
@keyframes dotBlink{
  0%,20%{opacity:0;}
  40%{opacity:1;}
  100%{opacity:0;}
}

@media(max-width:767px){
      .leader-card {
        flex-direction: column;
        text-align: left;
    }
    .leader-card {
    display: flex;
    gap: 14px;
    background: #F8F9FB;
    border-radius: 14px;
    padding: 15px;
    border: 1px solid #eef0f3;
    align-items: flex-start;
}
.leader-avatar {
    width: 65px;
    height: 65px;
    font-size: 24px;
}
.footer-top {
    padding: 30px 0 12px;
}
}

/* privacy policy */
.policy-main {
    padding: 40px 0 40px;
}

/* ---- TOC sidebar ---- */
.toc-panel{background:#F8F9FB;border:1px solid #eef0f4;border-radius:12px;padding:22px;position:sticky;top:20px;}
.toc-panel h5{font-size:13px;font-weight:700;color:var(--navy);text-transform:uppercase;letter-spacing:.4px;margin-bottom:14px;}
.toc-panel a{
  display:block;color:var(--muted);text-decoration:none;font-size:13.5px;padding:7px 0;
  border-left:2px solid transparent;padding-left:12px;transition:all .15s ease;
}
.toc-panel a:hover{color:var(--red);border-left-color:var(--red);}

/* ---- Content ---- */
.policy-content h2{
      font-size: 20px;
    font-weight: 600;color:var(--navy);margin:38px 0 14px;
  scroll-margin-top:20px;padding-top:6px;
}
.policy-content h2:first-child{margin-top:0;}
.policy-content p{color:var(--muted);font-size:15px;line-height:1.8;margin-bottom:14px;}
.policy-content ul{color:var(--muted);font-size:15px;line-height:1.8;margin-bottom:14px;padding-left:20px;}
.policy-content li{margin-bottom:6px;}
.policy-content strong{color:var(--navy);}
.policy-content a{color:var(--red);text-decoration:none;}
.policy-content a:hover{text-decoration:underline;}

.intro-box{
  background:#F8F9FB;border-left:3px solid var(--red);border-radius:6px;
  padding:18px 22px;margin-bottom:36px;font-size:14.5px;color:var(--navy);line-height:1.75;
}

.contact-box{
  background:var(--navy);border-radius:12px;padding:26px 28px;margin-top:20px;color:#fff;
}
.contact-box h4{font-size:16px;font-weight:700;margin-bottom:10px;}
.contact-box p{color:#c9d3e0;font-size:14px;margin-bottom:14px;}
.contact-box .row-item{display:flex;align-items:center;gap:10px;font-size:14px;margin-bottom:8px;}
.contact-box .row-item i{color:var(--red);}
.contact-box a{color:#fff;text-decoration:none;}
.contact-box a:hover{text-decoration:underline;}

.legal-disclaimer{
  background:#FFF8F0;border:1px solid #F0D9A8;border-radius:8px;padding:14px 18px;
  font-size:12.5px;color:#8a6d1f;margin-top:40px;display:flex;gap:10px;
}
.legal-disclaimer i{font-size:16px;flex-shrink:0;margin-top:1px;}

@media(max-width:991px){.toc-panel{position:static;margin-bottom:30px;}}


.key-clause{
  background:#FFF5F5;border:1px solid #F5C6C6;border-radius:8px;
  padding:16px 20px;margin:16px 0;
}
.key-clause .label{
  display:inline-flex;align-items:center;gap:6px;color:var(--red-dark);font-weight:700;
  font-size:11.5px;text-transform:uppercase;letter-spacing:.4px;margin-bottom:8px;
}
.key-clause p{color:var(--navy);margin:0;font-size:14px;}

.rate-table{width:100%;border-collapse:collapse;margin:14px 0 20px;font-size:14px;}
.rate-table th{background:#F8F9FB;color:var(--navy);font-weight:700;text-align:left;padding:10px 14px;border-bottom:2px solid #eef0f4;}
.rate-table td{padding:10px 14px;border-bottom:1px solid #f4f5f8;color:var(--muted);}

/* animation truck css */
/* ---- Road spanning full width ---- */
.road-base{position:absolute;bottom:0;left:0;right:0;height:56px;background:#08152c;}
.road{
  position:absolute;bottom:44px;left:0;right:0;height:4px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 26px, transparent 26px 52px);
}
