  :root {
      --ink: #12213A;
      --ink-soft: #1E3358;
      --amber: #FFB020;
      --amber-deep: #E8940A;
      --kraft: #D8C9AE;
      --cloud: #F7F3EC;
      --route-red: #E14434;
      --steel: #5C6779;
      --white: #FFFFFF;
      --line: rgba(18, 33, 58, 0.12);
      --radius: 14px;
      --nav-bg: rgba(247, 243, 236, 0.92);
      --card-bg: #FFFFFF;
      --card-border: #e2e8f0;
      --bg-alt: #f8fafc;
      --text-muted: #64748b;
      --number-watermark: #f1f5f9;
  }

  [data-theme="dark"] {
      --ink: #f8fafc;
      --ink-soft: #cbd5e1;
      --cloud: #0f172a;
      --kraft: #1e2d45;
      --steel: #94a3b8;
      --white: #1e293b;
      --line: rgba(255, 255, 255, 0.12);
      --nav-bg: rgba(15, 23, 42, 0.92);
      --card-bg: #1e293b;
      --card-border: #334155;
      --bg-alt: #0f172a;
      --text-muted: #94a3b8;
      --number-watermark: #334155;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: var(--cloud);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      transition: background-color 0.3s ease, color 0.3s ease;
  }

  h1,
  h2,
  h3,
  .display {
      font-family: 'Archivo Black', sans-serif;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      line-height: 0.98;
      margin: 0;
  }

  .mono {
      font-family: 'IBM Plex Mono', monospace;
  }

  a {
      color: inherit;
  }

  img,
  svg {
      display: block;
      max-width: 100%;
  }

  :focus-visible {
      outline: 3px solid var(--amber-deep);
      outline-offset: 2px;
  }

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
  }

  /* ===== BREADCRUMBS ===== */
  .breadcrumb-nav {
      background: var(--cloud);
      border-bottom: 1px solid var(--line);
      padding: 10px 0;
  }

  .breadcrumb-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 2px;
  }

  .breadcrumb-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      font-weight: 500;
      color: var(--steel);
  }

  .breadcrumb-item a {
      color: var(--steel);
      text-decoration: none;
      transition: color 0.15s ease;
  }

  .breadcrumb-item a:hover {
      color: var(--amber);
  }

  .breadcrumb-current span {
      color: var(--ink);
      font-weight: 600;
  }

  .breadcrumb-sep {
      color: var(--steel);
      opacity: 0.5;
      display: flex;
      align-items: center;
  }

  .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--route-red);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .eyebrow::before {
      content: "";
      width: 22px;
      height: 2px;
      background: var(--route-red);
      display: inline-block;
  }

  section {
      position: relative;
  }

  /* ===== NAV ===== */
  header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--nav-bg);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
      transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 28px;
      max-width: 1180px;
      margin: 0 auto;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Archivo Black';
      font-size: 19px;
      text-transform: uppercase;
      text-decoration: unset;
  }

  .logo-img {
      height: 76px;
      width: auto;
      max-width: 250px;
      object-fit: contain;
      display: block;
      transition: transform 0.2s ease;
  }

  .logo:hover .logo-img {
      transform: scale(1.03);
  }

  .logo .dot {
      width: 11px;
      height: 11px;
      background: var(--route-red);
      border-radius: 2px;
      transform: rotate(45deg);
  }

  .navlinks {
      display: flex;
      gap: 6px;
      align-items: center;
      font-size: 14.5px;
      font-weight: 600;
  }

  .navlinks a {
      text-decoration: none;
      opacity: 0.75;
      transition: opacity .2s;
  }

  .navlinks a:hover {
      opacity: 1;
  }

  .nav-item {
      position: relative;
  }

  .nav-item>a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 10px 12px;
      border-radius: 8px;
  }

  .nav-item>a:hover {
      opacity: 1;
      background: rgba(18, 33, 58, 0.06);
  }

  .nav-item .chev {
      width: 10px;
      height: 10px;
      transition: transform .18s ease;
      opacity: 0.6;
  }

  .nav-item:hover .chev {
      transform: rotate(180deg);
  }

  .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 230px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 10px;
      box-shadow: 0 20px 40px -18px rgba(18, 33, 58, 0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity .16s ease, transform .16s ease, visibility .16s;
      display: flex;
      flex-direction: column;
      gap: 1px;
      z-index: 60;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown a {
      display: block;
      padding: 9px 12px;
      border-radius: 8px;
      font-size: 13.8px;
      font-weight: 600;
      opacity: 0.82;
      white-space: nowrap;
  }

  .dropdown a:hover {
      opacity: 1;
      background: var(--cloud);
  }

  .dropdown .all-link {
      margin-top: 6px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
      color: var(--route-red);
      font-weight: 700;
      font-size: 13px;
  }

  .dropdown .region-label {
      font-family: 'IBM Plex Mono';
      font-size: 10.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--steel);
      padding: 8px 12px 2px;
      opacity: 0.7;
  }

  .navphone {
      font-family: 'IBM Plex Mono';
      font-weight: 600;
      font-size: 14.5px;
      white-space: nowrap;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: var(--cloud);
      font-weight: 700;
      font-size: 14px;
      padding: 13px 22px;
      border-radius: 8px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform .15s ease, background .2s ease;
  }

  .btn:hover {
      background: var(--ink-soft);
      transform: translateY(-2px);
  }

  .btn-amber {
      background: var(--amber);
      color: var(--ink);
  }

  .btn-amber:hover {
      background: var(--amber-deep);
  }

  /* ===== MOBILE HEADER & DRAWER MENU ===== */
  .nav-icon-btn {
      background: var(--card-bg, #ffffff);
      border: 1px solid var(--line);
      color: var(--ink);
      width: 40px;
      height: 40px;
      border-radius: 12px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      padding: 0;
      position: relative;
  }

  .nav-icon-btn:hover {
      border-color: var(--amber);
      color: var(--amber);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
  }

  .nav-icon-btn svg {
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-icon-btn:hover svg {
      transform: rotate(15deg);
  }

  .theme-icon-sun {
      display: none;
      color: #ffb020;
  }

  .theme-icon-moon {
      display: block;
      color: var(--ink);
  }

  [data-theme="dark"] .nav-icon-btn {
      background: #1e293b;
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }

  [data-theme="dark"] .nav-icon-btn:hover {
      background: #0f172a;
      border-color: #ffb020;
      box-shadow: 0 0 14px rgba(255, 176, 32, 0.35);
  }

  [data-theme="dark"] .theme-icon-moon {
      display: none !important;
  }

  [data-theme="dark"] .theme-icon-sun {
      display: block !important;
  }

  .mobile-menu-btn {
      display: none;
      background: var(--white);
      border: 1px solid var(--line);
      color: var(--ink);
      width: 40px;
      height: 40px;
      border-radius: 10px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  }

  .hamburger-box {
      width: 20px;
      height: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
  }

  .hamburger-box span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(4px);
      z-index: 9998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  .mobile-menu-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 320px;
      max-width: 86vw;
      background: var(--card-bg);
      color: var(--ink);
      z-index: 9999;
      transform: translateX(100%);
      transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  }
  .mobile-menu-drawer.active {
      transform: translateX(0);
  }

  .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
  }

  .mobile-menu-close-btn {
      background: var(--cloud);
      border: 1px solid var(--line);
      color: var(--ink);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .mobile-menu-body {
      padding: 16px 20px 28px;
      overflow-y: auto;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .mobile-nav-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .mobile-acc {
      border-bottom: 1px solid var(--line);
      padding: 6px 0;
  }

  .mobile-acc summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 4px;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      cursor: pointer;
      user-select: none;
  }

  .mobile-acc summary .m-chev {
      width: 16px;
      height: 16px;
      stroke: var(--steel);
      transition: transform 0.2s ease;
  }
  .mobile-acc[open] summary .m-chev {
      transform: rotate(180deg);
  }

  .mobile-acc-content {
      padding: 6px 0 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .mobile-acc-content a {
      font-size: 14.5px;
      color: var(--steel);
      text-decoration: none;
      font-weight: 500;
      padding: 4px 0;
  }
  .mobile-acc-content a.all-link {
      color: var(--route-red);
      font-weight: 700;
  }

  .mobile-single-link {
      display: block;
      padding: 14px 4px;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--line);
  }

  .mobile-menu-footer {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .mobile-phone-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      background: var(--cloud);
      border: 1px solid var(--line);
      border-radius: 10px;
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 600;
      font-size: 14px;
      color: var(--ink);
      text-decoration: none;
  }

  @media (max-width:1050px) {
      .navlinks {
          display: none;
      }
      .mobile-menu-btn {
          display: flex;
      }
      .desktop-only {
          display: none !important;
      }
  }

  /* ===== ROUTE LINE (signature element) ===== */
  .route-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      transform: translateX(-50%);
      background-image: linear-gradient(var(--ink) 60%, transparent 0%);
      background-size: 4px 26px;
      background-repeat: repeat-y;
      opacity: 0.14;
      z-index: 0;
  }

  @media (max-width:900px) {
      .route-line {
          display: none;
      }
  }

  /* ===== HERO ===== */
  .hero {
      padding: 88px 0 60px;
      overflow: hidden;
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 50px;
      align-items: center;
  }

  .hero h1 {
      font-size: clamp(40px, 6vw, 74px);
  }

  .hero h1 span {
      color: var(--route-red);
  }

  .hero p.lead {
      font-size: 18px;
      color: var(--steel);
      max-width: 480px;
      margin: 22px 0 30px;
      font-weight: 500;
      line-height: 1.55;
  }

  .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .badges {
      display: flex;
      gap: 22px;
      margin-top: 38px;
      flex-wrap: wrap;
  }

  .badge {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink-soft);
  }

  .badge svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
  }

  .hero-art {
      position: relative;
  }

  .sign {
      background: var(--ink);
      border-radius: 20px;
      padding: 34px 30px;
      color: var(--cloud);
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 50px -20px rgba(18, 33, 58, 0.45);
  }

  .sign::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, rgba(255, 176, 32, 0.06) 0 14px, transparent 14px 28px);
  }

  .sign-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
  }

  .sign-head .maple {
      width: 34px;
      height: 34px;
      color: var(--amber);
  }

  .odometer {
      font-family: 'IBM Plex Mono';
      font-size: 46px;
      font-weight: 600;
      margin-top: 22px;
      position: relative;
      color: var(--amber);
  }

  .odometer+p {
      opacity: 0.72;
      font-size: 13px;
      margin-top: 6px;
      position: relative;
  }

  .sign-route {
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px dashed rgba(255, 255, 255, 0.25);
      position: relative;
  }

  .sign-route .r {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      padding: 7px 0;
      font-weight: 600;
      opacity: 0.9;
  }

  .sign-route .r span:last-child {
      color: var(--amber);
      font-family: 'IBM Plex Mono';
  }

  /* ===== TRUST STRIP ===== */
  .trust {
      background: var(--ink);
      color: var(--cloud);
      padding: 16px 0;
  }

  .trust .wrap {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px 34px;
  }

  .trust span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      gap: 9px;
      opacity: 0.9;
  }

  .trust svg {
      width: 16px;
      height: 16px;
      color: var(--amber);
  }

  /* ===== SERVICES ===== */
  .services {
      padding: 96px 0 60px;
  }

  .section-head {
      max-width: 620px;
      margin-bottom: 52px;
  }

  .section-head h2 {
      font-size: clamp(30px, 4vw, 44px);
      margin-top: 14px;
  }

  .section-head p {
      color: var(--steel);
      font-size: 16px;
      margin-top: 14px;
      font-weight: 500;
      line-height: 1.6;
  }

  /* ===== IMAGE SERVICE CARDS ===== */
  .srv-img-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
  }

  .srv-img-card {
      background: var(--card-bg);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
      display: flex;
      flex-direction: column;
      position: relative;
  }

  .srv-img-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
      border-color: var(--amber);
  }

  .srv-img-card-thumb {
      position: relative;
      width: 100%;
      height: 190px;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-alt);
  }

  .srv-img-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
  }

  .srv-img-card:hover .srv-img-card-thumb img {
      transform: scale(1.08);
  }

  .srv-img-card-icon {
      position: absolute;
      bottom: -18px;
      left: 18px;
      width: 42px;
      height: 42px;
      background: var(--amber);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
      border: 3px solid var(--card-bg);
      z-index: 2;
  }

  .srv-img-card-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--ink);
  }

  .srv-img-card-popular {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--amber);
      color: var(--ink);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .srv-img-card-body {
      padding: 32px 20px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .srv-img-card-body h3 {
      font-family: 'Inter', sans-serif;
      text-transform: none;
      font-size: 17px;
      font-weight: 800;
      color: var(--ink);
      margin: 0 0 8px;
      line-height: 1.3;
  }

  .srv-img-card-body p {
      font-size: 13.8px;
      color: var(--steel);
      line-height: 1.55;
      flex: 1;
      margin: 0;
      font-weight: 500;
  }

  .srv-img-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 700;
      color: var(--route-red);
      text-decoration: none;
      transition: gap 0.2s ease;
  }

  .srv-img-card-link:hover {
      gap: 10px;
  }

  @media (max-width: 1100px) {
      .srv-img-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 860px) {
      .srv-img-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .srv-img-card-thumb { height: 160px; }
  }
  @media (max-width: 580px) {
      .srv-img-grid { grid-template-columns: 1fr; }
  }

  .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
  }

  .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px 20px;
      position: relative;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px -24px rgba(18, 33, 58, 0.35);
      border-color: transparent;
  }

  .service-card .tag {
      position: absolute;
      top: -1px;
      right: 20px;
      background: var(--amber);
      color: var(--ink);
      font-family: 'IBM Plex Mono';
      font-size: 10.5px;
      font-weight: 600;
      padding: 4px 9px 5px;
      border-radius: 0 0 6px 6px;
      letter-spacing: 0.04em;
  }

  .service-card svg {
      width: 32px;
      height: 32px;
      color: var(--route-red);
      margin-bottom: 16px;
  }

  .service-card h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
      letter-spacing: 0;
  }

  .service-card p {
      font-size: 13.8px;
      color: var(--steel);
      margin-top: 9px;
      line-height: 1.5;
      font-weight: 500;
  }

  .service-card svg {
      width: 28px;
      height: 28px;
      color: var(--route-red);
      margin-bottom: 14px;
  }

  @media (max-width:1100px) {
      .service-grid {
          grid-template-columns: 1fr 1fr 1fr;
      }
  }

  @media (max-width:900px) {
      .service-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width:600px) {
      .service-grid {
          grid-template-columns: 1fr;
      }
  }

  /* ===== HOW IT WORKS — route journey ===== */
  .journey {
      padding: 70px 0 100px;
  }

  .stops {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
  }

  .stop {
      background: var(--white);
      border-radius: var(--radius);
      padding: 26px 22px 24px;
      border: 1px solid var(--line);
      position: relative;
  }

  .stop .mile {
      font-family: 'IBM Plex Mono';
      font-size: 12px;
      color: var(--route-red);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
  }

  .stop .mile::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--route-red);
      box-shadow: 0 0 0 4px rgba(225, 68, 52, 0.15);
  }

  .stop h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
  }

  .stop p {
      font-size: 13.8px;
      color: var(--steel);
      margin-top: 8px;
      line-height: 1.55;
      font-weight: 500;
  }

  .stops::after {
      content: "";
      position: absolute;
      top: 32px;
      left: 6%;
      right: 6%;
      height: 2px;
      background-image: linear-gradient(90deg, var(--ink) 50%, transparent 0%);
      background-size: 16px 2px;
      opacity: 0.18;
      z-index: -1;
  }

  @media (max-width: 900px) {
      .journey {
          padding: 50px 0 70px;
      }
      .stops {
          grid-template-columns: repeat(2, 1fr);
          gap: 18px;
      }
      .stops::after {
          display: none;
      }
  }

  @media (max-width: 600px) {
      .journey {
          padding: 40px 0 56px;
      }
      .stops {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 12px;
      }
      .stop {
          padding: 16px 13px 14px;
          border-radius: 12px;
      }
      .stop .mile {
          font-size: 11px;
          margin-bottom: 8px;
          gap: 6px;
      }
      .stop .mile::before {
          width: 7px;
          height: 7px;
          box-shadow: 0 0 0 3px rgba(225, 68, 52, 0.15);
      }
      .stop h3 {
          font-size: 14px;
          line-height: 1.35;
          margin: 0 0 6px 0;
      }
      .stop p {
          font-size: 12px;
          line-height: 1.45;
          margin-top: 4px;
      }
  }

  /* ===== STATS BAND ===== */
  .stats {
      background: var(--ink);
      color: var(--cloud);
      padding: 60px 0;
  }

  .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
  }

  .stat .num {
      font-family: 'IBM Plex Mono';
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 600;
      color: var(--amber);
  }

  .stat .lbl {
      font-size: 12.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.7;
      margin-top: 8px;
      font-weight: 700;
  }

  @media (max-width: 900px) {
      .stats {
          padding: 48px 0;
      }
      .stats-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 28px 16px !important;
      }
  }

  @media (max-width: 480px) {
      .stats {
          padding: 38px 0;
      }
      .stats-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 24px 12px !important;
      }
      .stat .num {
          font-size: clamp(26px, 6vw, 32px);
      }
      .stat .lbl {
          font-size: 11px;
          margin-top: 6px;
      }
  }

  /* ===== WHY US ===== */
  .why {
      padding: 100px 0;
  }

  .why-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: start;
  }

  .why-list {
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .why-item {
      display: flex;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
  }

  .why-item:first-child {
      padding-top: 0;
  }

  .why-item .n {
      font-family: 'IBM Plex Mono';
      font-weight: 600;
      color: var(--route-red);
      font-size: 14px;
      padding-top: 3px;
  }

  .why-item h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
  }

  .why-item p {
      font-size: 14.5px;
      color: var(--steel);
      margin-top: 6px;
      font-weight: 500;
      line-height: 1.55;
  }

  @media (max-width: 768px) {
      .why {
          padding: 48px 0;
      }
      .why-list {
          display: grid !important;
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 12px !important;
          margin-top: 24px !important;
      }
      .why-item {
          display: flex;
          flex-direction: column;
          gap: 6px;
          padding: 16px 13px !important;
          background: var(--white);
          border: 1px solid var(--line);
          border-radius: var(--radius, 12px);
          border-bottom: 1px solid var(--line);
      }
      .why-item:first-child {
          padding-top: 16px !important;
      }
      .why-item .n {
          font-size: 12px;
          padding-top: 0;
      }
      .why-item h3 {
          font-size: 14px;
          line-height: 1.35;
          margin: 0;
      }
      .why-item p {
          font-size: 12px;
          line-height: 1.45;
          margin-top: 4px;
      }
  }

  .quote-card {
      background: var(--kraft);
      border-radius: 20px;
      padding: 40px 34px;
      position: relative;
      overflow: hidden;
  }

  .quote-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(0deg, rgba(18, 33, 58, 0.05) 0 1px, transparent 1px 38px);
  }

  .quote-card blockquote {
      font-family: 'Archivo Black';
      text-transform: none;
      font-size: 22px;
      line-height: 1.35;
      position: relative;
      margin: 0;
  }

  .quote-card .who {
      margin-top: 22px;
      font-size: 13.5px;
      font-weight: 700;
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .quote-card .who .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Archivo Black';
      font-size: 15px;
  }

  .stars {
      display: flex;
      gap: 3px;
      margin-top: 16px;
      position: relative;
  }

  .stars svg {
      width: 16px;
      height: 16px;
      color: var(--amber-deep);
  }

  /* ===== MOVING TIPS ===== */
  .tips {
      padding: 20px 0 100px;
  }

  .tips-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
  }

  .tip-card {
      background: var(--kraft);
      border-radius: var(--radius);
      padding: 26px 22px 24px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      transition: background 0.3s ease, border-color 0.3s ease;
  }

  .tip-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 22px;
      width: 54px;
      height: 16px;
      background: var(--line);
      border-left: 1px dashed var(--line);
      border-right: 1px dashed var(--line);
  }

  .tip-card .tip-no {
      font-family: 'IBM Plex Mono';
      font-size: 12px;
      font-weight: 700;
      color: var(--route-red);
      letter-spacing: 0.06em;
      margin-top: 10px;
  }

  .tip-card h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 16.5px;
      font-weight: 800;
      margin-top: 10px;
      color: var(--ink);
  }

  .tip-card p {
      font-size: 13.8px;
      color: var(--ink-soft);
      margin-top: 8px;
      line-height: 1.55;
      font-weight: 500;
      opacity: 0.85;
  }

  .tip-card svg {
      width: 26px;
      height: 26px;
      color: var(--ink);
      margin-top: 16px;
      opacity: 0.75;
  }

  .tips-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 34px;
      flex-wrap: wrap;
      gap: 16px;
  }

  .tips-foot p {
      font-size: 14px;
      color: var(--steel);
      font-weight: 600;
      max-width: 460px;
  }

  @media (max-width: 1100px) {
      .tips-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
      }
  }

  @media (max-width: 600px) {
      .tips {
          padding: 20px 0 50px;
      }
      .tips-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 12px;
      }
      .tip-card {
          padding: 16px 13px 14px;
          border-radius: 12px;
      }
      .tip-card svg {
          width: 22px;
          height: 22px;
          margin-top: 8px;
      }
      .tip-card .tip-no {
          font-size: 11px;
          margin-top: 4px;
      }
      .tip-card h3 {
          font-size: 14px;
          line-height: 1.35;
          margin-top: 6px;
      }
      .tip-card p {
          font-size: 12px;
          line-height: 1.45;
          margin-top: 4px;
      }
      .tips-foot {
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 14px;
          margin-top: 28px;
      }
      .tips-foot p {
          text-align: center;
          margin: 0 auto;
          font-size: 13.5px;
      }
      .tips-foot .btn {
          width: 100%;
          justify-content: center;
          text-align: center;
      }
  }

  /* ===== ABOUT US ===== */
  .about {
      padding: 100px 0;
  }

  .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 56px;
      align-items: center;
  }

  .about-card {
      background: #12213A;
      border-radius: 20px;
      padding: 40px 34px;
      color: #F7F3EC;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  }

  [data-theme="dark"] .about-card {
      background: #1e293b;
      color: #f8fafc;
      border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-card::before {
      content: "";
      position: absolute;
      left: -60px;
      bottom: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 176, 32, 0.14), transparent 70%);
  }

  .about-card .yr {
      font-family: 'IBM Plex Mono';
      font-size: 13px;
      color: var(--amber);
      font-weight: 700;
      letter-spacing: 0.06em;
  }

  .about-card h3 {
      font-family: 'Archivo Black';
      text-transform: uppercase;
      font-size: 26px;
      margin-top: 10px;
      position: relative;
  }

  .about-card p {
      opacity: 0.85;
      font-size: 14.5px;
      margin-top: 14px;
      font-weight: 500;
      line-height: 1.6;
      position: relative;
  }

  .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 26px;
      position: relative;
  }

  .about-values div {
      border-top: 1px solid rgba(247, 243, 236, 0.18);
      padding-top: 12px;
  }

  .about-values .v-num {
      font-family: 'IBM Plex Mono';
      color: var(--amber);
      font-size: 20px;
      font-weight: 600;
  }

  .about-values .v-lbl {
      font-size: 12px;
      opacity: 0.8;
      margin-top: 2px;
      font-weight: 600;
  }

  /* Testimonials Grid & News Grid */
  .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }

  [data-theme="dark"] .quote-card {
      background: #1e293b;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #f8fafc;
  }

  [data-theme="dark"] .quote-card blockquote {
      color: #f8fafc;
  }

  [data-theme="dark"] .quote-card .who {
      color: #cbd5e1;
  }

  .about-news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  @media (max-width: 992px) {
      .about-grid {
          grid-template-columns: 1fr !important;
          gap: 36px !important;
      }
      .about-news-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 16px !important;
      }
      .testimonials-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 16px !important;
      }
  }

  @media (max-width: 600px) {
      .about-card {
          padding: 24px 18px !important;
          border-radius: 16px !important;
      }
      .about-card h3 {
          font-size: 20px !important;
      }
      .about-values {
          grid-template-columns: 1fr 1fr !important;
          gap: 10px !important;
          margin-top: 18px !important;
      }
      .about-values div {
          padding-top: 8px !important;
      }
      .about-values .v-num {
          font-size: 17px !important;
      }
      .about-values .v-lbl {
          font-size: 10.5px !important;
      }
      .about-news-grid {
          grid-template-columns: 1fr !important;
          gap: 12px !important;
      }
      .testimonials-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 12px !important;
      }
      .quote-card {
          padding: 16px 12px 14px !important;
          border-radius: 14px !important;
      }
      .quote-card .stars {
          margin-top: 0 !important;
          margin-bottom: 6px !important;
          gap: 2px !important;
      }
      .quote-card .stars svg {
          width: 12px !important;
          height: 12px !important;
      }
      .quote-card blockquote {
          font-size: 12.5px !important;
          line-height: 1.35 !important;
      }
      .quote-card .who {
          margin-top: 10px !important;
          font-size: 11px !important;
          gap: 6px !important;
      }
      .quote-card .who .avatar {
          width: 26px !important;
          height: 26px !important;
          font-size: 11px !important;
      }
  }

  /* ===== FAQ ===== */
  .faq {
      padding: 0 0 100px;
  }

  .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 22px 0;
  }

  .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      gap: 20px;
      font-weight: 800;
      font-size: 15.5px;
  }

  .faq-q svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      transition: transform .2s ease;
      color: var(--route-red);
  }

  .faq-item[open] .faq-q svg {
      transform: rotate(45deg);
  }

  .faq-a {
      font-size: 14.5px;
      color: var(--steel);
      margin-top: 12px;
      font-weight: 500;
      line-height: 1.6;
      max-width: 640px;
  }

  summary::-webkit-details-marker {
      display: none;
  }

  summary {
      list-style: none;
  }

  /* ===== SERVICE AREA ===== */
  .area {
      padding: 0 0 100px;
  }

  .area-box {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 44px;
      text-align: center;
  }

  .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 26px;
  }

  .chip {
      font-size: 13px;
      font-weight: 700;
      font-family: 'IBM Plex Mono';
      padding: 8px 15px;
      border-radius: 20px;
      background: var(--cloud);
      border: 1px solid var(--line);
  }

  /* ===== CTA / CONTACT SECTION — Always dark, theme-independent ===== */
  .cta {
      background: #12213A !important;
      color: #F7F3EC !important;
      padding: 90px 0;
      position: relative;
      overflow: hidden;
  }

  .cta::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 176, 32, 0.16), transparent 70%);
  }

  .cta-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 56px;
      position: relative;
  }

  .cta h2 {
      font-size: clamp(28px, 4vw, 42px);
      max-width: 460px;
      color: #F7F3EC !important;
  }

  .cta > .wrap > div > p,
  .cta > .wrap > div > div > p {
      color: rgba(247, 243, 236, 0.75);
      margin-top: 16px;
      max-width: 420px;
      font-weight: 500;
      line-height: 1.6;
  }

  /* Protect form subtitles inside CTA from the light color override */
  .contact-form-subtitle,
  .quick-quote-subtitle {
      color: #64748b !important;
  }

  .form-card {
      background: var(--cloud);
      color: var(--ink);
      border-radius: 18px;
      padding: 30px;
  }

  .form-card h3 {
      font-family: 'Inter';
      text-transform: none;
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
  }

  .form-card input,
  .form-card select {
      width: 100%;
      padding: 12px 14px;
      border-radius: 9px;
      border: 1px solid var(--line);
      background: var(--white);
      font-family: 'Inter';
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
  }

  .form-card input::placeholder {
      color: #9AA1AC;
  }

  .form-card .full {
      grid-column: 1/-1;
  }

  .form-card button {
      width: 100%;
      margin-top: 6px;
      justify-content: center;
      padding: 14px;
  }

  /* ===== PROFESSIONAL SITE FOOTER ===== */
  .site-footer {
      background: var(--cloud);
      border-top: 1px solid var(--line);
      padding-top: 64px;
      padding-bottom: 0;
      color: var(--ink);
      transition: background-color 0.3s ease, color 0.3s ease;
  }

  [data-theme="dark"] .site-footer {
      background: #0b1320;
      border-top-color: rgba(255, 255, 255, 0.1);
      color: #f8fafc;
  }

  .site-footer-inner {
      padding-bottom: 56px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1.1fr 1.1fr 1.5fr;
      gap: 48px;
      align-items: flex-start;
  }

  /* Brand Column */
  .footer-col-brand .footer-logo {
      font-family: 'Archivo Black', sans-serif;
      font-size: 20px;
      font-weight: 900;
      color: var(--ink);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
  }

  .footer-logo-img {
      height: 76px;
      width: auto;
      max-width: 270px;
      object-fit: contain;
      display: block;
  }

  .footer-logo .dot {
      width: 10px;
      height: 10px;
      background: var(--amber);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 10px var(--amber);
  }

  .footer-tagline {
      font-size: 14px;
      line-height: 1.65;
      color: var(--steel);
      margin-bottom: 20px;
      max-width: 320px;
  }

  [data-theme="dark"] .footer-tagline {
      color: #cbd5e1;
  }

  .footer-badges {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--ink);
      font-weight: 600;
      background: rgba(0, 0, 0, 0.03);
      border: 1px solid var(--line);
      padding: 7px 12px;
      border-radius: 8px;
      width: fit-content;
      transition: background 0.2s ease, border-color 0.2s ease;
  }

  [data-theme="dark"] .footer-badge {
      background: rgba(255, 255, 255, 0.07) !important;
      border-color: rgba(255, 255, 255, 0.16) !important;
      color: #ffffff !important;
  }

  [data-theme="dark"] .footer-badge span,
  [data-theme="dark"] .footer-badge strong {
      color: #ffffff !important;
  }

  .footer-badge .fb-icon {
      font-size: 15px;
      flex-shrink: 0;
  }

  .footer-social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--line);
      color: var(--ink);
      transition: all 0.2s ease;
      text-decoration: none;
  }

  .footer-social-icon:hover {
      background: var(--amber);
      color: var(--navy);
      transform: translateY(-2px);
  }

  [data-theme="dark"] .footer-social-icon {
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
  }

  [data-theme="dark"] .footer-social-icon:hover {
      background: var(--amber);
      color: #0f172a;
  }

  /* Footer Headings & Navigation Columns */
  .footer-heading {
      font-family: 'Archivo Black', sans-serif;
      font-size: 14px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ink);
      margin-top: 0;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
  }

  [data-theme="dark"] .footer-heading {
      color: #ffffff;
  }

  .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 3px;
      background: var(--amber);
      border-radius: 2px;
  }

  .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 11px;
  }

  .footer-menu li a {
      font-size: 14px;
      color: var(--steel);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-block;
  }

  .footer-menu li a:hover {
      color: var(--amber);
      transform: translateX(3px);
  }

  [data-theme="dark"] .footer-menu li a {
      color: #cbd5e1;
  }

  [data-theme="dark"] .footer-menu li a:hover {
      color: var(--amber);
  }

  .footer-highlight-link {
      font-weight: 700 !important;
      color: var(--amber) !important;
  }

  /* Contact Column */
  .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      background: rgba(0, 0, 0, 0.02);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 10px 14px;
      transition: background 0.2s ease, border-color 0.2s ease;
  }

  [data-theme="dark"] .footer-contact-item {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.12);
  }

  .fci-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: rgba(220, 38, 38, 0.08);
      color: var(--route-red);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
  }

  [data-theme="dark"] .fci-icon {
      background: rgba(239, 68, 68, 0.15);
      color: #f87171;
  }

  .fci-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 700;
      color: var(--steel);
      margin-bottom: 2px;
  }

  [data-theme="dark"] .fci-label {
      color: #94a3b8;
  }

  .fci-value {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      line-height: 1.4;
  }

  [data-theme="dark"] .fci-value {
      color: #ffffff;
  }

  .fci-phone {
      font-size: 15px;
      font-weight: 800;
      color: var(--amber);
  }

  .fci-phone:hover {
      text-decoration: underline;
  }

  .footer-cta-box {
      margin-top: 18px;
  }

  .footer-quote-btn {
      width: 100%;
      justify-content: center;
      padding: 12px 18px;
      font-size: 13.5px;
  }

  /* Bottom Bar */
  .footer-bottom {
      background: rgba(0, 0, 0, 0.04);
      border-top: 1px solid var(--line);
      padding: 18px 0;
  }

  [data-theme="dark"] .footer-bottom {
      background: rgba(0, 0, 0, 0.3);
      border-top-color: rgba(255, 255, 255, 0.08);
  }

  .footer-bottom-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: var(--steel);
  }

  .footer-copy {
      display: inline-flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 10px;
      font-weight: 500;
      line-height: 1.5;
  }

  [data-theme="dark"] .footer-copy {
      color: #cbd5e1;
  }

  .footer-made-by {
      color: var(--steel);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
  }

  .footer-made-by a {
      color: #d97706;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease;
  }

  .footer-made-by a:hover {
      color: var(--amber);
  }

  [data-theme="dark"] .footer-made-by {
      color: #f8fafc !important;
      font-weight: 600;
  }

  [data-theme="dark"] .footer-made-by a {
      color: #ffb020 !important;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-shadow: 0 0 10px rgba(255, 176, 32, 0.35);
  }

  .footer-bottom-links {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      margin-left: auto;
  }

  [data-theme="dark"] .footer-bottom-links a {
      color: #cbd5e1;
  }

  [data-theme="dark"] .footer-bottom-links a:hover {
      color: var(--amber);
  }

  .footer-bottom-links a {
      color: var(--steel);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease;
  }

  .footer-bottom-links a:hover {
      color: var(--amber);
  }

  .footer-sep {
      opacity: 0.4;
      font-size: 10px;
  }

  .back-to-top-btn {
      background: var(--card-bg, #ffffff);
      color: var(--ink);
      border: 1px solid var(--line);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-left: 6px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .back-to-top-btn:hover {
      background: var(--amber);
      color: #12213A;
      border-color: var(--amber);
      transform: translateY(-2px);
      box-shadow: 0 3px 8px rgba(245, 158, 11, 0.25);
  }

  /* ─── Fully Responsive Footer Multi-Device Breakpoints ─── */
  @media (max-width: 1024px) {
      .footer-grid {
          grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
          gap: 32px 24px;
      }
  }

  @media (max-width: 900px) {
      .site-footer {
          padding-top: 48px;
      }
      .site-footer-inner {
          padding-bottom: 40px;
      }
      .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 36px 24px;
      }
      .footer-col-brand {
          grid-column: 1 / -1;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
      }
      .footer-col-brand .footer-logo {
          justify-content: center;
          margin-bottom: 12px;
      }
      .footer-tagline {
          max-width: 520px;
          text-align: center;
          margin: 0 auto 18px auto;
          font-size: 14.5px;
      }
      .footer-badges {
          flex-direction: row;
          justify-content: center;
          flex-wrap: wrap;
          gap: 8px;
          margin: 0 auto;
      }
      .footer-badge {
          width: auto;
      }
      .footer-col-services,
      .footer-col-resources {
          grid-column: span 1;
      }
      .footer-col-contact {
          grid-column: 1 / -1;
          display: flex;
          flex-direction: column;
          background: none;
          border: none;
          padding: 0;
          margin-top: 8px;
      }
      .footer-col-contact .footer-contact-item {
          margin-bottom: 12px;
      }
      .footer-col-contact .footer-cta-box {
          margin-top: 12px;
      }
      .footer-bottom-inner {
          flex-direction: column;
          text-align: center;
          gap: 14px;
      }
      .footer-bottom-links {
          justify-content: center;
          gap: 10px 14px;
      }
  }

  @media (max-width: 600px) {
      .site-footer {
          padding-top: 40px;
      }
      .site-footer-inner {
          padding-bottom: 32px;
      }
      .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 28px 18px;
      }
      .footer-col-brand {
          grid-column: 1 / -1;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
      }
      .footer-col-brand .footer-logo {
          justify-content: center;
          margin-bottom: 12px;
      }
      .footer-logo-img {
          height: 76px !important;
          max-width: 260px !important;
          margin: 0 auto;
      }
      .footer-tagline {
          font-size: 14.5px;
          line-height: 1.65;
          text-align: center;
          margin: 0 auto 18px auto;
          max-width: 100%;
      }
      .footer-badges {
          flex-direction: column;
          align-items: center;
          width: 100%;
          max-width: 360px;
          margin: 0 auto;
          gap: 8px;
      }
      .footer-badge {
          width: 100%;
          justify-content: center;
          text-align: center;
          box-sizing: border-box;
          padding: 9px 14px;
          font-size: 13.5px;
      }
      /* One row two cards for Services and Resources on mobile */
      .footer-col-services,
      .footer-col-resources {
          grid-column: span 1;
      }
      .footer-heading {
          font-size: 14px;
          margin-bottom: 14px;
      }
      .footer-menu li a {
          font-size: 13.5px;
          padding: 3px 0;
          line-height: 1.4;
      }
      .footer-col-contact {
          grid-column: 1 / -1;
          margin-top: 4px;
      }
      .footer-contact-item {
          padding: 12px 14px;
          margin-bottom: 10px;
      }
      .footer-quote-btn {
          padding: 13px;
          font-size: 14px;
      }
      .footer-bottom {
          padding: 22px 0 28px;
      }
      .footer-bottom-inner {
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 12px;
      }
      .footer-copy {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 4px;
          font-size: 12.5px;
          line-height: 1.5;
      }
      .footer-copy .footer-sep {
          display: none;
      }
      .footer-bottom-links {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
          gap: 8px 12px;
          font-size: 12.5px;
          margin-left: 0;
          width: 100%;
      }
      .footer-bottom-links .footer-sep {
          display: inline-block;
          opacity: 0.35;
      }
      .back-to-top-btn {
          margin-left: 4px;
          padding: 4px 10px;
      }
  }

  /* ===== SEAMLESS TRANSPARENT LIGHT / DARK LOGO SWITCHING ===== */
  .logo-dark {
      display: none !important;
  }
  .logo-light {
      display: block !important;
  }

  [data-theme="dark"] .logo-light {
      display: none !important;
  }
  [data-theme="dark"] .logo-dark {
      display: block !important;
  }

  /* ===== COMPREHENSIVE RESPONSIVE STYLES FOR ALL FRONTEND PAGES ===== */
  @media (max-width: 992px) {
      .wrap {
          padding: 0 20px;
      }

      .hero {
          padding: 16px 0 40px !important;
      }

      .hero-grid {
          grid-template-columns: 1fr !important;
          gap: 24px !important;
      }

      .hero-art {
          order: -1;
          margin-top: 0 !important;
      }

      .why-grid,
      .cta-grid,
      .service-grid,
      .journey-grid,
      .about-grid,
      .locations-grid {
          grid-template-columns: 1fr !important;
          gap: 32px !important;
      }

      .stats-grid {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 28px 16px !important;
      }

      .grid-4, .grid-3, .grid-2 {
          grid-template-columns: repeat(2, 1fr) !important;
      }
  }

  @media (max-width: 768px) {
      body {
          font-size: 14.5px;
      }

      .hero {
          padding: 10px 0 32px !important;
      }

      .hero-art {
          margin-top: 0 !important;
      }

      h1 {
          font-size: clamp(28px, 7vw, 40px) !important;
      }

      h2 {
          font-size: clamp(22px, 5.5vw, 32px) !important;
      }

      .grid-4, .grid-3, .grid-2 {
          grid-template-columns: 1fr !important;
      }

      .nav {
          padding: 10px 16px;
          gap: 10px;
      }

      .form-row {
          grid-template-columns: 1fr !important;
          gap: 12px !important;
      }

      .area-box {
          padding: 28px 18px !important;
      }

      .form-card {
          padding: 22px 18px !important;
      }

      .cta {
          padding: 50px 0 !important;
      }

      .hero-ctas {
          flex-direction: column !important;
          gap: 12px !important;
          width: 100%;
      }

      .hero-ctas .btn {
          width: 100% !important;
          justify-content: center !important;
          text-align: center !important;
      }

      .badges {
          flex-wrap: wrap !important;
          gap: 8px !important;
      }
  }

  @media (max-width: 768px) {
      .logo-img {
          height: 52px;
          max-width: 180px;
      }
      .footer-logo-img {
          height: 76px !important;
          max-width: 260px !important;
      }
  }

  @media (max-width: 480px) {
      .wrap {
          padding: 0 16px;
      }

      .hero {
          padding: 8px 0 28px !important;
      }

      .logo-img {
          height: 46px;
          max-width: 160px;
      }

      .footer-logo-img {
          height: 72px !important;
          max-width: 250px !important;
      }

      .logo {
          font-size: 16px;
      }

      .navphone {
          font-size: 12px;
      }

      .btn {
          padding: 10px 16px;
          font-size: 13.5px;
      }
  }

  @media (prefers-reduced-motion: reduce) {
      * {
          transition: none !important;
          scroll-behavior: auto !important;
      }
  }

  /* ===== BACK TO TOP BUTTON ===== */
  #back-to-top {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: var(--amber);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 18px rgba(255, 176, 32, 0.38);
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px) scale(0.85);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
      padding: 0;
  }

  #back-to-top.btt-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
  }

  #back-to-top:hover {
      background: var(--amber-deep);
      box-shadow: 0 6px 24px rgba(255, 176, 32, 0.55);
      transform: translateY(-2px) scale(1.07);
  }

  #back-to-top:active {
      transform: scale(0.95);
  }

  /* SVG progress ring — sits behind the arrow */
  .btt-progress {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg); /* start at top */
      pointer-events: none;
  }

  .btt-track {
      fill: none;
      stroke: rgba(0, 0, 0, 0.12);
      stroke-width: 3;
  }

  .btt-fill {
      fill: none;
      stroke: #0f172a;
      stroke-width: 3;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.1s linear;
  }

  [data-theme="dark"] .btt-fill {
      stroke: #0f172a;
  }

  /* Arrow icon on top */
  .btt-arrow {
      position: relative;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
  }

  @media (max-width: 480px) {
      #back-to-top {
          bottom: 18px;
          right: 18px;
          width: 42px;
          height: 42px;
      }
      .btt-arrow {
          width: 15px;
          height: 15px;
      }
  }

  /* ════════════════════════════════════════════════════════════════════
     PROOF & GOOGLE REVIEW DUAL BANNER SECTION (FLAWLESS RESPONSIVE)
     ════════════════════════════════════════════════════════════════════ */
  .proof-banner-section {
      padding: clamp(24px, 4vw, 36px) 0;
  }

  .proof-banner-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 22px;
      align-items: stretch;
  }

  /* ── Dark Card (Desktop) ── */
  .proof-card-dark {
      background: #0d1322;
      border-radius: 24px;
      padding: 26px 30px;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 24px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .proof-card-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  }

  .dark-card-left {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      flex: 1.1;
  }

  .truck-thumb-wrapper {
      flex-shrink: 0;
      width: 86px;
      height: 86px;
      border-radius: 18px;
      overflow: hidden;
      border: 2px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  .truck-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .proof-stat-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .proof-stat-item.stat-second {
      flex: 1;
  }

  .proof-stat-num {
      font-family: 'Archivo Black', sans-serif;
      font-size: 38px;
      line-height: 1;
      color: #ffffff;
      letter-spacing: -0.5px;
  }

  .proof-stat-desc {
      font-size: 13px;
      line-height: 1.35;
      color: #94a3b8;
      font-weight: 500;
  }

  .proof-pills-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
      flex-wrap: wrap;
  }

  .proof-pill {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #cbd5e1;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 13px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      letter-spacing: 0.2px;
      white-space: nowrap;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .proof-pill:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.35);
      color: #ffffff;
  }

  .avatar-stack {
      display: flex;
      align-items: center;
      margin-top: 6px;
  }

  .avatar-stack-item {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #0d1322;
      object-fit: cover;
      margin-left: -9px;
      flex-shrink: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }

  .avatar-stack-item:first-child {
      margin-left: 0;
  }

  .avatar-stack-plus {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #0d1322;
      background: #FFB020;
      color: #0d1322;
      font-size: 14px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: -9px;
      flex-shrink: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }

  /* ── Google Blue Grid Card ── */
  .proof-card-blue {
      background-color: #cde2ff;
      background-image: linear-gradient(rgba(59, 130, 246, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px);
      background-size: 22px 22px;
      border-radius: 24px;
      padding: 26px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(59, 130, 246, 0.18);
      box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .proof-card-blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 48px rgba(59, 130, 246, 0.2);
  }

  .google-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 12px;
  }

  .google-g-icon {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .btn-write-review {
      background: #ffffff;
      color: #1e293b;
      font-size: 13px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 50px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
  }

  .btn-write-review:hover {
      background: #f8fafc;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
      color: #0f172a;
  }

  .google-rating-main {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 18px;
      width: 100%;
      gap: 16px;
  }

  .google-score-box {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }

  .google-score-row {
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .google-score-num {
      font-family: 'Archivo Black', sans-serif;
      font-size: 42px;
      line-height: 1;
      color: #0f172a;
      letter-spacing: -0.5px;
  }

  .google-star-icon {
      width: 28px;
      height: 28px;
      fill: #FFB020;
      flex-shrink: 0;
  }

  .google-rating-text {
      font-size: 13px;
      color: #334155;
      font-weight: 600;
      line-height: 1.35;
      max-width: 210px;
      margin-top: 2px;
  }

  .google-avatar-stack {
      display: flex;
      align-items: center;
      flex-shrink: 0;
  }

  .google-avatar-item {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #cde2ff;
      object-fit: cover;
      margin-left: -9px;
      flex-shrink: 0;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .google-avatar-item:first-child {
      margin-left: 0;
  }

  /* ── RESPONSIVE BREAKPOINTS ── */

  /* Laptop (992px to 1199px) */
  @media (max-width: 1199px) {
      .proof-banner-grid {
          grid-template-columns: 1.15fr 1fr;
          gap: 18px;
      }
  }

  /* Tablet Stack (Max 992px) */
  @media (max-width: 992px) {
      .proof-banner-grid {
          grid-template-columns: 1fr;
          gap: 18px;
      }
  }

  /* Mobile Devices (Max 768px) */
  @media (max-width: 768px) {
      .proof-card-dark {
          flex-direction: column;
          align-items: stretch;
          gap: 16px;
          padding: 20px 18px;
          border-radius: 20px;
      }

      .dark-card-left {
          gap: 14px;
          width: 100%;
      }

      .truck-thumb-wrapper {
          width: 68px;
          height: 68px;
          border-radius: 14px;
      }

      .proof-stat-num {
          font-size: 32px;
      }

      .proof-stat-desc {
          font-size: 12px;
          min-height: auto;
      }

      .proof-stat-item.stat-second {
          border-top: 1px solid rgba(255, 255, 255, 0.12);
          padding-top: 14px;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          width: 100%;
      }

      .avatar-stack {
          margin-top: 0;
      }

      .proof-card-blue {
          padding: 20px 18px;
          border-radius: 20px;
          gap: 16px;
      }

      .google-score-num {
          font-size: 36px;
      }

      .google-rating-text {
          font-size: 12px;
          max-width: 170px;
      }
  }

  /* Small Mobile Devices (Max 420px) */
  @media (max-width: 420px) {
      .proof-stat-item.stat-second {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
      }

      .avatar-stack {
          align-self: flex-start;
      }

      .google-rating-main {
          flex-direction: column;
          align-items: flex-start;
          gap: 14px;
      }

      .google-avatar-stack {
          align-self: flex-start;
      }
  }

  /* ===== GLOBAL BLOG CARD COMPONENT STYLES ===== */
  .blog-card {
    background: var(--white, #ffffff);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line, #e2e8f0);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: var(--amber, #f59e0b);
  }

  .blog-card-img {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0f172a;
  }

  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-card-img img {
    transform: scale(1.05);
  }

  .card-cat-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    line-height: 1.4;
    white-space: nowrap;
  }

  .blog-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--steel, #64748b);
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .blog-meta-dot {
    opacity: 0.5;
  }

  .blog-card-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16.5px;
    line-height: 1.35;
    color: var(--ink, #0f172a);
    margin: 0 0 10px 0;
  }

  .blog-card-excerpt {
    font-size: 13.5px;
    color: var(--steel, #64748b);
    line-height: 1.55;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  [data-theme="dark"] .blog-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
  }
  [data-theme="dark"] .blog-card-title {
    color: #f8fafc;
  }
  [data-theme="dark"] .blog-card-excerpt,
  [data-theme="dark"] .blog-meta {
    color: #94a3b8;
  }




