  :root {
    --navy: #0b2a5b;
    --navy-dark: #071b3d;
    --blue: #1e4fa3;
    --blue-light: #2f63c4;
    --blue-dark: #063d7a;
    --light-bg: #f7f9fc;
    --text: #1e2d40;
    --text-body: #3d4a5c;
    --muted: #667085;
    --border: #9db5d5;
    --line-color: #c9d7e6;
    --icon-bg: #f4f6f9;
    --white: #ffffff;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* FIX: no more global `*` / `body` resets here — the theme's main
     stylesheet (loaded via header-link.php) already owns box-sizing,
     body font, and body background. Re-declaring them page-locally
     is what broke the shared layout. */

  /* ---------- HERO / BANNER — FULL-WIDTH FIX ---------- */
  .hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    height: clamp(560px, 42vw, 650px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #eef4f9;
  }

  /*
     IMPORTANT:
     The banner image is NOT loaded through CSS.
     It is placed directly inside the Hero/Banner php section below.
     This makes the banner easy to replace/manage from the PHP page/backend.
  */
  .hero__background {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    z-index: 0;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.08);
    transform-origin: center center;
  }

  /* Text readability overlay — image itself remains in the php. */
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.84) 0%,
      rgba(255,255,255,0.70) 22%,
      rgba(255,255,255,0.38) 45%,
      rgba(255,255,255,0.12) 68%,
      rgba(255,255,255,0.02) 100%
    );
  }

  /* Full-bleed banner; text remains aligned with the normal site grid. */
  .hero > .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
  }

  /* FIX: hero content now sits inside the shared .container class
     (same one used in the destinations/reviews/FAQ sections below),
     so its left/right edges line up with the rest of the page
     instead of using a one-off 1440px width. */
  .hero__content {
    width: min(620px, 54vw);
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero__badge {
    display: inline-block;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(30, 79, 163, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(30, 79, 163, 0.2);
  }

  .hero__heading {
    font-size: 44px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin: 0;
  }

  .hero__heading span {
    color: var(--blue-light);
  }

  .hero__description {
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--text-body);
    max-width: 480px;
    margin: 0;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 28px;
    margin-top: 8px;
  }

  .stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .stat__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--blue);
    margin-top: 2px;
  }

  .stat__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .stat__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .stat__number {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap;
  }

  .stat__label {
    font-size: 13px;
    color: var(--text-body);
    white-space: nowrap;
  }

  .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
  }

  /* FIX: the hero CTAs now use the site's own cmt-btn button classes
     (the same ones used on the medicine-courier reference page)
     instead of a custom .btn class. The custom class was being
     silently overridden by the theme's global stylesheet, which is
     why "Get a Quote" was rendering as a near-empty box. Reusing
     cmt-btn guarantees it looks and behaves like every other button
     on the site. */

  @media (max-width: 1024px) {
    .hero__heading { font-size: 36px; }
    .hero__stats { grid-template-columns: repeat(2, auto); row-gap: 20px; }
  }

  @media (max-width: 640px) {
    .hero {
      min-height: 620px;
      height: auto;
      padding: 50px 0 55px;
    }

    .hero__background {
      inset: 0;
      width: 100%;
      height: 100%;
      object-position: center top;
      transform: scale(1.04);
    }

    .hero__overlay {
      background: linear-gradient(
        180deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.86) 45%,
        rgba(255,255,255,0.58) 72%,
        rgba(255,255,255,0.28) 100%
      );
    }
    .hero > .container {
      max-width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }
    .hero__content { width: 100%; max-width: 100%; gap: 16px; }
    .hero__badge { font-size: 11.5px; }
    .hero__heading { font-size: 28px; line-height: 1.25; }
    .hero__description { font-size: 15px; max-width: 100%; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
    .stat__number, .stat__label { white-space: normal; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .cmt-btn { width: 100%; text-align: center; }
  }

  /* ---------- TRUST / WHY CHOOSE US PANEL ---------- */
  /* FIX: this used to be its own top-level flex container centered
     on the viewport via a `body { display:flex }` hack. It now
     lives inside the page's normal .container, same as every other
     section, and only controls its own three-column layout. */
  .trust-panel-row {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .trust-panel-left {
    flex: 42%;
    position: relative;
    background: linear-gradient(135deg, rgba(16, 45, 92, 0.90), rgba(10, 94, 184, 0.90)), url('blue background .webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .trust-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
  }

  .trust-main-heading {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 25px;
    max-width: 400px;
    position: relative;
    z-index: 2;
  }

  .trust-checklist {
    list-style: none;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
  }

  .trust-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
    opacity: 0.95;
  }

  .trust-checklist li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('i con.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 14px;
    flex-shrink: 0;
  }

  .trust-panel-center {
    flex: 30%;
    position: relative;
    min-height: 320px;
  }

  .trust-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .trust-panel-right {
    flex: 28%;
    position: relative;
    background: linear-gradient(135deg, rgba(247, 249, 252, 0.92), rgba(235, 240, 245, 0.92)), url('grey background .webp');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-left: none;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .trust-stat-item {
    text-align: left;
    position: relative;
    z-index: 2;
  }

  .trust-stat-large {
    font-size: 44px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
  }

  .trust-stat-text {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
  }

  .trust-icon-text-block {
    display: flex;
    align-items: center;
    margin: 15px 0;
    position: relative;
    z-index: 2;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 14px;
    flex-shrink: 0;
  }

  .trust-icon-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.35;
    font-weight: 500;
  }

  .trust-divider {
    height: 1px;
    background-color: var(--border);
    margin: 15px 0;
    position: relative;
    z-index: 2;
  }

  @media (max-width: 1024px) {
    .trust-panel-row { flex-direction: column; }
    .trust-panel-left { padding: 40px; border-bottom-left-radius: 0; border-top-right-radius: 12px; }
    .trust-panel-center { height: 320px; }
    .trust-panel-right {
      border-top-right-radius: 0;
      border-bottom-left-radius: 12px;
      border-left: 1px solid var(--border);
      border-top: none;
      padding: 35px 30px;
    }
  }

  @media (max-width: 768px) {
    .trust-main-heading { font-size: 26px; }
    .trust-stat-large { font-size: 38px; }
    .trust-stat-text, .trust-checklist li, .trust-icon-text { font-size: 14px; }
  }

  @media (max-width: 480px) {
    .trust-panel-left { padding: 30px 20px; }
    .trust-main-heading { font-size: 22px; margin-bottom: 20px; }
    .trust-checklist li { margin-bottom: 12px; }
    .trust-panel-center { height: 220px; }
    .trust-panel-right { padding: 25px 20px; }
    .trust-icon-text-block { margin: 12px 0; }
    .trust-divider { margin: 12px 0; }
  }

  /* ---------- 6-STEP PROCESS ---------- */
  .process-section {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
  }

  /* FIX: dropped the custom 1450px .process-container in favor of
     the shared .container class the rest of the page uses. */
  .process-header {
    text-align: center;
    margin-bottom: 45px;
  }

  .process-eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .process-heading {
    color: var(--navy);
    font-size: 36px;
    font-weight: 800;
    margin: 0;
  }

  .process-decoration {
    margin-top: 10px;
    color: var(--blue);
    font-size: 18px;
  }

  .process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 29px;
    left: 8.5%;
    right: 8.5%;
    height: 2px;
    background: var(--line-color);
  }

  .process-step {
    position: relative;
    text-align: center;
    padding: 0 12px;
    z-index: 2;
  }

  .process-number-wrap {
    height: 60px;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .process-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    background: var(--blue-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(6, 61, 122, 0.25);
  }

  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--blue-dark);
    border-radius: 50%;
    top: 27px;
    right: 28%;
  }

  .process-step:not(:last-child)::after {
    content: "\27A4";
    position: absolute;
    top: 18px;
    right: 2px;
    color: var(--blue-dark);
    font-size: 17px;
  }

  .process-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--icon-bg);
  }

  .process-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
  }

  .process-title {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
  }

  .process-description {
    max-width: 200px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
  }

  @media (max-width: 1100px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 55px 25px; }
    .process-grid::before, .process-step::before, .process-step::after { display: none; }
    .process-step { padding: 30px 15px; border: 1px solid #e3eaf2; border-radius: 18px; }
    .process-number-wrap { margin-top: -60px; }
  }

  @media (max-width: 767px) {
    .process-section { padding: 55px 0; }
    .process-heading { font-size: 27px; }
    .process-grid { display: block; max-width: 450px; margin: auto; }
    .process-grid::before { display: none; }
    .process-step { margin-bottom: 55px; }
    .process-step:last-child { margin-bottom: 0; }
    .process-title { font-size: 17px; }
  }

  /* Theme override protection: keep the Why Choose Us heading white. */
  .cmt-row .trust-panel-left h2.trust-main-heading,
  .trust-panel-left h2.trust-main-heading {
    color: #ffffff !important;
  }
 
.hero__breadcrumb-row,
.hero__breadcrumb-row a,
.hero__breadcrumb-row span,
.hero__breadcrumb-row i {
    color: #000 !important;
}
.hero__breadcrumb-row a:hover {
    color: #000 !important;
}
 