    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      font-family: 'Barlow', sans-serif;
      background: #0a0a0a;
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
      /* Prevent ANY horizontal scroll at root level */
      max-width: 100vw;
      scroll-behavior: smooth;
    }

    .h1SEO {
      font-size: 1px;
      color: #0a0a0a;
    }

    section,
    main,
    .hero {
      scroll-margin-top: 100px;
      /* Offset for desktop nav height */
    }

    @media (max-width: 768px) {

      section,
      main,
      .hero {
        scroll-margin-top: 70px;
        /* Offset for mobile nav height */
      }
    }

    /* Custom Premium Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #0a0a0a;
    }

    ::-webkit-scrollbar-thumb {
      background: #ff8800;
      border-radius: 10px;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(0, 0, 0, 0.95);
      border-bottom: 1px solid rgba(245, 184, 67, 0.15);
      height: 90px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 60px;
      backdrop-filter: blur(12px);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo {
      width: 60px;
      height: 60px;
    }

    .nav-brand-name {
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      color: #f5b843;
      font-size: 1.6rem;
      font-weight: 800;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
    }

    .nav-brand-name-2 {
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      color: #f5b843;
      font-size: 0.6em;
      /* em = relative to .nav-brand-name, so Cab always scales with Mr Jolly */
      font-weight: 800;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      vertical-align: middle;
    }

    /* Cab superscript — used site-wide; em = always proportional to parent Mr Jolly text */
    .cab-sub {
      font-size: 0.8em;
      font-weight: inherit;
      letter-spacing: inherit;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #ffffff;
      font-size: 0.90rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: #f5b843;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #f5b843;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    @media (max-width: 1150px) {
      nav {
        padding: 0 30px;
      }

      .nav-links {
        position: static;
        transform: none;
        left: auto;
        margin: 0 auto;
      }
    }

    .btn-book {
      padding: 12px 28px;
      background: #f5b843;
      color: #000;
      font-family: 'Barlow', sans-serif;
      font-weight: 900;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(245, 184, 67, 0.2);
      transition: all 0.3s ease;
    }

    .btn-book:hover {
      background: #ffffff;
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245, 184, 67, 0.3);
    }

    /* ── ABOUT SECTION ── */
    .about-page-section {
      background: #ffffff;
      color: #111111;
    }

    /* HERO */
    .about-hero {
      position: relative;
      height: 400px;
      box-sizing: border-box;
      padding: 0 1.5rem;
      background-color: #0b0b0b;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-hero__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 1;
      filter: brightness(0.55) saturate(0.55) blur(5px);
      transform: scale(1.35);
      will-change: transform;
      pointer-events: none;
    }

    .about-hero__inner {
      position: relative;
      z-index: 2;
      width: fit-content;
      max-width: 100%;
      margin: 0 auto;
    }

    .about-hero__headline {
      margin: 0;
      font-family: 'Anton', 'Bebas Neue', 'League Gothic', sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      color: #ffffff;
    }

    .about-hero__headline .line { display: block; }

    .about-hero__headline .line-1,
    .about-hero__headline .line-2 {
      font-size: 110px;
      line-height: 0.95;
      letter-spacing: 2px;
    }

    .about-hero__headline .line-1 { color: #ffffff; }
    .about-hero__headline .line-2 { color: #ffd100; }

    /* STORY */
    .about-story {
      background: #ffffff;
      padding: 100px 1.5rem 90px;
    }

    .about-story__grid {
      display: grid;
      grid-template-columns: 600px minmax(480px, 540px);
      justify-content: center;
      gap: clamp(48px, 6vw, 110px);
      align-items: center;
      max-width: 1440px;
      margin: 0 auto;
    }

    .about-story__copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      min-width: 0;
    }

    .about-story__title {
      margin: 0;
      font-family: 'Anton', 'Bebas Neue', 'League Gothic', sans-serif;
      font-size: 72px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.92;
      letter-spacing: -1px;
      color: #111111;
    }

    .about-divider {
      width: 60px;
      height: 3px;
      border-radius: 2px;
      background: #2d7cff;
      margin: 18px 0 30px;
    }

    .about-story__copy p {
      margin: 0;
      font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.95;
      letter-spacing: 0.01em;
      color: #666666;
      max-width: 470px;
    }

    .about-story__copy p + p { margin-top: 28px; }

    .about-story__copy p strong,
    .about-story__copy p .text-accent {
      color: #111111;
      font-weight: 700;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 35px 60px;
      margin-top: 45px;
    }

    .about-stat {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .about-stat strong {
      font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      color: #2d7cff;
    }

    .about-stat span {
      font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #8b8b8b;
    }

    .about-story__portrait {
      position: relative;
      min-width: 0;
    }

    .portrait-card {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 24px;
      background: #111111;
      overflow: hidden;
      box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
      transition: transform 300ms ease;
    }

    .portrait-card img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transition: opacity 900ms ease;
    }

    .portrait-card img.is-active { opacity: 1; }

    .portrait-card:hover { transform: translateY(-6px); }

    /* FEATURES */
    .about-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
      max-width: 1440px;
      margin: 90px auto 0;
      border-top: 1px solid #ececec;
      padding-top: 55px;
    }

    .about-feature { min-width: 0; }

    .feature-number {
      display: block;
      font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
      font-size: 28px;
      font-weight: 300;
      line-height: 1;
      letter-spacing: 1px;
      color: #cfcfcf;
      margin-bottom: 18px;
    }

    .about-feature h3 {
      margin: 0 0 16px;
      font-family: 'Anton', 'Bebas Neue', 'League Gothic', sans-serif;
      font-size: 30px;
      font-weight: 900;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: 0;
      color: #111111;
    }

    .about-feature p {
      margin: 0;
      font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
      font-size: 16px;
      line-height: 1.9;
      letter-spacing: 0.01em;
      color: #666666;
      max-width: 330px;
      min-height: 152px;
    }

    @media (max-width: 1200px) {
      .about-hero__headline .line-1,
      .about-hero__headline .line-2 { font-size: 88px; }
    }

    @media (max-width: 1199px) {
      .about-story__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        justify-items: center;
        gap: 80px;
      }
      .about-story__portrait { margin-top: 0; }
      .portrait-card { max-width: 480px; }
    }

    @media (max-width: 768px) {
      .about-hero { height: auto; padding: 110px 1.5rem 90px; }
      .about-hero__headline .line-1,
      .about-hero__headline .line-2 { font-size: 58px; }
      .about-story { padding: 80px 1.5rem 80px; }
      .about-story__title { font-size: 58px; }
    }

    @media (max-width: 480px) {
      .about-hero__headline .line-1,
      .about-hero__headline .line-2 { font-size: 42px; letter-spacing: 1px; }
      .about-story { padding: 64px 1rem 64px; }
      .about-story__title { font-size: 42px; }
      .about-stats { gap: 30px 40px; }
      .about-features { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ── ABOUT ANIMATIONS ── */
    .about-page-section.js-about .about-anim {
      opacity: 0;
      transition: opacity 600ms ease-out, transform 600ms ease-out;
    }

    .about-page-section.js-about .about-anim-up { transform: translateY(24px); }
    .about-page-section.js-about .about-anim-card { transform: translateY(10px); }

    .about-page-section.js-about .about-anim.is-visible {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .about-page-section.js-about .about-anim {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }


    /* ── HERO ── */


    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      padding-top: 64px;
      display: flex;
      align-items: center;
      overflow: hidden;
      /* critical: clips widget overflow */
    }

    /* ── Hero background video ── */
    .hero-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 30% center;
      z-index: 0;
      transform: scale(1.12);
      transform-origin: right center;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      will-change: transform;
      /* GPU-composited layer — keeps playback buttery smooth */
      pointer-events: none;
    }

    .hero-bg-video.active {
      opacity: 0.6;
    }

    /* Dark overlay to keep text readable and maintain atmosphere */
    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      min-height: 100%;
      z-index: 1;
      background:
        linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.40) 60%, rgba(0, 0, 0, 0.25) 100%),
        radial-gradient(ellipse 45% 55% at 72% 42%, rgba(20, 80, 20, .18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(5, 30, 60, .18) 0%, transparent 70%);
      pointer-events: none;
    }



    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 48px;
      min-height: calc(100vh - 64px);
      box-sizing: border-box;
      /* ensure padding doesn't add width */
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      border: 1px solid #f5b843;
      padding: 6px 14px;
      border-radius: 3px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #f5b843;
      margin-bottom: 24px;
      width: fit-content;
    }

    .braintree {
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      font-size: 1.3rem;
      font-weight: 900;
      line-height: 0;
      color: white;
      margin-bottom: 20px;
    }

    .hero-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 400;
      line-height: 1.0;
      color: #3b9df8;
      margin-bottom: 20px;
      margin-left: -12.5rem;
        letter-spacing: px;
    }

    .hero-headline-br {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 900;
      line-height: 0.5;
      color: #ee9e26;
      margin-bottom: 0px;
      margin-left: -14rem;
    }

    .hero-sub {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, .6);
      line-height: 1.55;
      max-width: 420px;
    }

    .hero-checks {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .hero-check {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #3b9df8;
    }

    .check-icon {
      color: #f5b843;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    /* ══ WIDGET ══ */
    .widget {
      width: 100%;
      max-width: 480px;
      background: #1e1e1e;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .07);
      /* Ensure widget never stretches past its parent */
      min-width: 0;
      box-sizing: border-box;
    }

    .pages-clip {
      overflow: hidden;
      transition: height 0.35s cubic-bezier(.42, 0, .18, 1);
    }

    .pages {
      display: flex;
      width: 300%;
      align-items: flex-start;
      transition: transform .38s cubic-bezier(.42, 0, .18, 1);
    }

    .pages.slide-1 {
      transform: translateX(0);
    }

    .pages.slide-2 {
      transform: translateX(-33.333%);
    }

    .pages.slide-3 {
      transform: translateX(-66.666%);
    }

    .wpage {
      width: 33.333%;
      flex-shrink: 0;
    }

    /* Step bars */
    .w-top-bar {
      background: #111;
      border-top: 3px solid #1a6fd4;
      padding: 0 16px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .w-step {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
    }

    .w-step.amber {
      color: #f5b843;
    }

    .w-step.blue {
      color: #1a6fd4;
    }

    .w-step.dim {
      color: #444;
    }

    .w-step.active-green {
      color: #34c97a;
      border-bottom: 2px solid #34c97a;
    }

    .w-arrow {
      color: #444;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .w-arrow.lit {
      color: #1a6fd4;
    }

    .w-back {
      background: none;
      border: none;
      color: #f5b843;
      font-family: 'Barlow', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      letter-spacing: .5px;
      padding: 0;
      transition: opacity .15s;
      position: absolute;
      left: 16px;
    }

    .w-back:hover {
      opacity: .7;
    }

    .w-bar-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    /* Grey shell */
    .w-shell {
      background: #b0b0b0;
      margin: 13px 12px 12px;
      border-radius: 7px;
      padding: 15px 15px 13px;
    }

    .w-sec {
      font-size: 0.59rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #3a3a3a;
      margin-bottom: 10px;
    }

    .w-field-row {
      display: grid;
      grid-template-columns: 46px 1fr;
      align-items: center;
      gap: 9px;
      margin-bottom: 7px;
    }

    .w-lbl {
      font-size: 0.59rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #3a3a3a;
    }

    .w-inp {
      width: 100%;
      padding: 9px 12px;
      background: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      color: #222;
      outline: none;
      transition: box-shadow .18s;
    }

    .w-inp:focus {
      box-shadow: 0 0 0 2px #f5b843;
    }

    .w-inp::placeholder {
      color: #bbb;
      font-size: 0.79rem;
    }

    .w-add-stop {
      width: 100%;
      padding: 9px 12px;
      background: #222;
      border: 2px dashed rgba(245, 184, 67, .5);
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.79rem;
      font-weight: 700;
      color: #f5b843;
      cursor: pointer;
      text-align: center;
      transition: background .18s;
    }

    .w-add-stop:hover {
      background: #2e2e2e;
    }

    .w-via-wrap {
      display: none;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 12px;
    }

    .w-via-wrap.show {
      display: flex;
    }

    .w-via-row {
      display: grid;
      grid-template-columns: 46px 1fr 26px;
      align-items: center;
      gap: 9px;
    }

    .w-rm {
      background: none;
      border: none;
      color: #666;
      font-size: 1.2rem;
      cursor: pointer;
      line-height: 1;
    }

    .w-rm:hover {
      color: #d44;
    }

    .w-div {
      height: 1px;
      background: rgba(0, 0, 0, .2);
      margin: 11px 0;
    }

    .w-radio-row {
      display: flex;
      gap: 18px;
      margin-bottom: 7px;
    }

    .w-radio {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #1a1a1a;
      cursor: pointer;
    }

    .w-radio input {
      accent-color: #1a6fd4;
      width: 14px;
      height: 14px;
      cursor: pointer;
    }

    .w-check {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #1a1a1a;
      cursor: pointer;
      margin-bottom: 9px;
    }

    .w-check input {
      accent-color: #1a6fd4;
      width: 14px;
      height: 14px;
      cursor: pointer;
    }

    .w-time-pickers {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
      margin-bottom: 9px;
    }

    .w-time-pickers.show {
      display: grid;
    }

    .w-inp-sm {
      width: 100%;
      padding: 8px 10px;
      background: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.79rem;
      color: #222;
      outline: none;
      color-scheme: light;
    }

    .w-sel-full {
      width: 100%;
      padding: 9px 28px 9px 11px;
      background: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      color: #222;
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 9px center;
      margin-bottom: 9px;
      display: none;
      /* Tariff is autocalculated */
    }

    .w-bottom {
      display: grid;
      grid-template-columns: 80px 80px 1fr;
      align-items: end;
      gap: 10px;
    }

    .w-fg1 label {
      display: block;
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #3a3a3a;
      margin-bottom: 4px;
    }

    .w-fg2 label {
      display: block;
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #3a3a3a;
      margin-bottom: 4px;
    }

    .w-sel1 {
      width: 100%;
      padding: 9px 24px 9px 10px;
      background: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      color: #222;
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
    }

    .w-sel2 {
      width: 100%;
      padding: 9px 24px 9px 10px;
      background: #fff;
      border: none;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      color: #222;
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
    }

    .w-quote-btn {
      padding: 6px 10px;
      background: #111;
      color: #f5b843;
      font-family: 'Barlow', sans-serif;
      font-weight: 800;
      font-size: 0.68rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
      transition: background .18s, transform .1s;
      height: 34px;
    }

    .w-quote-btn:hover {
      background: #000;
    }

    .w-quote-btn:active {
      transform: scale(.97);
    }

    .w-quote-btn:disabled {
      opacity: .5;
      cursor: not-allowed;
      transform: none;
    }

    .w-spinner {
      display: none;
      width: 13px;
      height: 13px;
      border: 2px solid rgba(245, 184, 67, .3);
      border-top-color: #f5b843;
      border-radius: 50%;
      animation: wspin .65s linear infinite;
    }

    @keyframes wspin {
      to {
        transform: rotate(360deg);
      }
    }

    .w-error {
      display: none;
      background: rgba(180, 0, 0, .14);
      border: 1px solid rgba(248, 113, 113, .4);
      border-radius: 4px;
      padding: 7px 11px;
      font-size: 0.77rem;
      color: #fca5a5;
      margin-top: 9px;
    }

    .w-error.show {
      display: block;
    }

    /* ── Pickup type info tag ── */
    .pickup-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #1a1a1a;
      border: 1px solid rgba(245, 184, 67, .3);
      border-radius: 4px;
      padding: 5px 10px;
      font-size: 0.72rem;
      font-weight: 600;
      color: #f5b843;
      margin-bottom: 9px;
    }

    .pickup-tag .ptag-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #34c97a;
      flex-shrink: 0;
      animation: pulse 1.5s infinite;
    }

    .pickup-tag.later-tag .ptag-dot {
      background: #3b9df8;
      animation: none;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .4;
      }
    }

    /* Page 2 result */
    .w-result-bar {
      background: #111;
      border-top: 3px solid #1a6fd4;
      padding: 0 16px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .w-result-shell {
      background: #b0b0b0;
      margin: 13px 12px 12px;
      border-radius: 7px;
      padding: 13px 15px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .w-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px;
    }

    .w-stat {
      background: #111;
      border-radius: 5px;
      padding: 9px 11px 8px;
    }

    .w-stat-val {
      font-size: 1rem;
      font-weight: 800;
      color: #fff;
    }

    .w-stat-lbl {
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #888;
      margin-top: 2px;
    }

    .w-route {
      background: #fff;
      border-radius: 5px;
      padding: 10px 12px;
    }

    .w-rt {
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #777;
      margin-bottom: 7px;
    }

    .w-rrow {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      padding: 2px 0;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 4px;
    }

    .dot.p {
      background: #34c97a;
      box-shadow: 0 0 0 3px rgba(52, 201, 122, .2);
    }

    .dot.v {
      background: #6366f1;
      border-radius: 2px;
    }

    .dot.d {
      background: #f5b843;
      box-shadow: 0 0 0 3px rgba(245, 184, 67, .2);
    }

    .w-raddr {
      font-size: 0.77rem;
      color: #222;
      line-height: 1.4;
      word-break: break-word;
    }

    .w-rleg {
      font-size: 0.64rem;
      color: #999;
      margin-left: 15px;
      font-style: italic;
      padding: 1px 0 3px;
    }

    /* Pickup info box on quote page */
    .w-pickup-info {
      background: #1a1a1a;
      border: 1px solid rgba(59, 157, 248, .25);
      border-radius: 5px;
      padding: 9px 12px;
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .wpi-icon {
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .wpi-body {
      flex: 1;
    }

    .wpi-title {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #3b9df8;
      margin-bottom: 3px;
    }

    .wpi-detail {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.5;
    }

    .wpi-detail strong {
      color: #fff;
    }

    .w-fare {
      background: #111;
      border: 1px solid rgba(245, 184, 67, .28);
      border-radius: 7px;
      padding: 14px;
      text-align: center;
    }

    .w-fare-lbl {
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #f5b843;
      opacity: .85;
      margin-bottom: 20px;
    }

    .w-fare-amt {
      font-size: 2.3rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .w-fare-amt sup {
      font-size: 1rem;
      vertical-align: super;
      line-height: 0;
      color: #f5b843;
    }

    .w-fare-note {
      font-size: 1rem;
      color: white;
      margin-top: 4px;
    }

    .w-bk {
      background: #fff;
      border-radius: 5px;
      padding: 10px 12px;
    }

    .w-bk-title {
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #777;
      margin-bottom: 7px;
    }

    .w-bk-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.77rem;
      padding: 3px 0;
      color: #444;
    }

    .w-bk-row span:last-child {
      font-weight: 600;
      color: #111;
      white-space: nowrap;
      margin-left: 8px;
    }

    .w-bk-row.tot {
      border-top: 1px solid #e0e0e0;
      margin-top: 6px;
      padding-top: 8px;
      font-weight: 700;
      font-size: 0.82rem;
      color: #111;
    }

    .w-bk-sub {
      font-size: 0.62rem;
      color: #aaa;
      font-style: italic;
      margin-top: 2px;
    }

    .w-proceed-btn {
      width: 100%;
      padding: 12px;
      background: #f5b843;
      color: #1a1a1a;
      font-family: 'Barlow', sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background .18s, transform .1s;
    }

    .w-proceed-btn:hover {
      background: #e8a82a;
    }

    .w-proceed-btn:active {
      transform: scale(.98);
    }

    /* Page 3 booking */
    .w-booking-bar {
      background: #111;
      border-bottom: 3px solid #34c97a;
      padding: 0 16px;
      height: 50px;
      display: flex;
      align-items: center;
    }

    .w-booking-shell {
      background: #b0b0b0;
      margin: 13px 12px 12px;
      border-radius: 7px;
      padding: 15px 15px 13px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .booking-summary {
      background: #111;
      border-radius: 5px;
      padding: 10px 12px;
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .bs-route {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.5;
      flex: 1;
    }

    .bs-route strong {
      color: #fff;
      font-size: 0.77rem;
    }

    .bs-route .bs-pickup-when {
      font-size: 0.68rem;
      color: #3b9df8;
      margin-top: 2px;
    }

    .bs-fare {
      text-align: right;
      flex-shrink: 0;
      margin-left: 12px;
    }

    .bs-fare-amt {
      font-size: 1.4rem;
      font-weight: 800;
      color: #f5b843;
      line-height: 1;
    }

    .bs-fare-amt sup {
      font-size: 0.65rem;
      vertical-align: super;
      color: #f5b843;
    }

    .bs-fare-lbl {
      font-size: 0.56rem;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    .w-form-sec {
      font-size: 0.59rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #3a3a3a;
      margin-bottom: 9px;
      margin-top: 3px;
    }

    .w-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 8px;
    }

    .w-form-grid.full {
      grid-template-columns: 1fr;
    }

    .w-fgroup {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .w-fgroup label {
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #3a3a3a;
    }

    .w-finp {
      width: 100%;
      padding: 9px 11px;
      background: #fff;
      border: 2px solid transparent;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      color: #222;
      outline: none;
      transition: border-color .18s;
    }

    .w-finp:focus {
      border-color: #f5b843;
    }

    .w-finp::placeholder {
      color: #bbb;
    }

    .w-finp.invalid {
      border-color: #f87171;
    }

    .w-ftextarea {
      width: 100%;
      padding: 9px 11px;
      background: #fff;
      border: 2px solid transparent;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 0.82rem;
      color: #222;
      outline: none;
      resize: vertical;
      min-height: 62px;
      transition: border-color .18s;
    }

    .w-ftextarea:focus {
      border-color: #f5b843;
    }

    .w-ftextarea::placeholder {
      color: #bbb;
    }

    .w-form-div {
      height: 1px;
      background: rgba(0, 0, 0, .2);
      margin: 11px 0;
    }

    .w-submit-btn {
      width: 100%;
      padding: 12px;
      background: #34c97a;
      color: #062e18;
      font-family: 'Barlow', sans-serif;
      font-weight: 800;
      font-size: 0.87rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background .18s, transform .1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 10px;
    }

    .w-submit-btn:hover {
      background: #27b568;
    }

    .w-submit-btn:active {
      transform: scale(.98);
    }

    .w-submit-btn:disabled {
      opacity: .5;
      cursor: not-allowed;
      transform: none;
    }

    .w-submit-spinner {
      display: none;
      width: 14px;
      height: 14px;
      border: 2px solid rgba(6, 46, 24, .3);
      border-top-color: #062e18;
      border-radius: 50%;
      animation: wspin .65s linear infinite;
    }

    .w-form-error {
      display: none;
      background: rgba(180, 0, 0, .14);
      border: 1px solid rgba(248, 113, 113, .4);
      border-radius: 4px;
      padding: 7px 11px;
      font-size: 0.77rem;
      color: #fca5a5;
      margin-top: 8px;
    }

    .w-form-error.show {
      display: block;
    }

    /* Confirmation */
    .w-confirm {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center !important;
      padding: 60px 20px;
      gap: 16px;
      width: 100%;
      box-sizing: border-box;
    }

    .w-confirm.show {
      display: flex;
    }

    .w-confirm-icon {
      width: 62px;
      height: 62px;
      background: #34c97a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      flex-shrink: 0;
      margin: 0 auto 10px;
      /* Force center */
    }

    .w-confirm-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: #34c97a;
      letter-spacing: 0.5px;
      width: 100%;
      text-align: center;
    }

    .w-confirm-msg {
      font-size: 1rem;
      font-weight: bold;
      color: white;
      line-height: 1.6;
      max-width: 320px;
      margin: 0 auto;
    }

    .w-confirm-ref {
      font-size: 0.72rem;
      color: #888;
    }

    .w-confirm-ref strong {
      color: #f5b843;
    }

    .w-new-booking-btn {
      margin: 20px auto 0;
      /* Centered with top margin */
      padding: 10px 22px;
      background: #1e1e1e;
      border: 1px solid rgba(245, 184, 67, .35);
      color: #f5b843;
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border-radius: 4px;
      cursor: pointer;
      display: block;
      /* For margin: auto to work */
      transition: background .18s;
    }

    .w-new-booking-btn:hover {
      background: #2e2e2e;
    }

    /* ══════════════════════════════════
       HAMBURGER MENU
    ══════════════════════════════════ */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      margin-left: auto;
      z-index: 250;
      /* Ensure it stays above everything */
      flex-shrink: 0;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #f5b843;
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.98);
      z-index: 300;
      /* Higher than nav and hamburger */
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      padding: 80px 24px 40px;
      animation: fadeIn .22s ease;
    }

    .mobile-menu.open {
      display: flex !important;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-menu a {
      text-decoration: none;
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      padding: 12px 0;
      border-bottom: 1px solid rgba(245, 184, 67, 0.1);
      width: 100%;
      text-align: center;
    }

    .mobile-menu a:hover {
      color: #f5b843;
      background: rgba(245, 184, 67, 0.05);
    }

    .mobile-menu .m-btn-book {
      margin-top: 20px;
      padding: 16px 36px;
      background: #f5b843;
      color: #000;
      font-family: 'Barlow', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu .m-btn-close {
      position: absolute;
      top: 18px;
      right: 20px;
      background: none;
      border: none;
      color: #888;
      font-size: 1.6rem;
      cursor: pointer;
      padding: 6px;
    }

    .mobile-logo {
      width: 200px;
      height: 200px;
      margin-bottom: 0px;
    }


    /* ══════════════════════════════════
       SCROLLABLE WIDGET SHELLS
    ══════════════════════════════════ */
    .w-shell,
    .w-result-shell,
    .w-booking-shell {
      max-height: calc(100dvh - 64px - 80px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(245, 184, 67, .3) transparent;
    }

    .w-shell::-webkit-scrollbar,
    .w-result-shell::-webkit-scrollbar,
    .w-booking-shell::-webkit-scrollbar {
      width: 4px;
    }

    .w-shell::-webkit-scrollbar-thumb,
    .w-result-shell::-webkit-scrollbar-thumb,
    .w-booking-shell::-webkit-scrollbar-thumb {
      background: rgba(245, 184, 67, .3);
      border-radius: 4px;
    }


    /* ══════════════════════════════════
       LARGE DESKTOP (≥1440px)
    ══════════════════════════════════ */
    @media (min-width: 1440px) {
      .hero-inner {
        max-width: 1440px;
        gap: 80px;
      }

      .braintree {
        margin-left: -33.5rem;
      }

      .hero-headline {
        font-size: 5.5rem;
        margin-left: -14rem;

      }

      .hero-headline-br {
        margin-left: -2.5rem;

      }

      .hero-car {
        width: 100px;
        height: 100px;
        margin-left: -10rem;
      }


      .widget {
        max-width: 520px;
      }
    }

    /* ══════════════════════════════════
       LARGE DESKTOP (≥1440px)
    ══════════════════════════════════ */
    @media (max-width: 1439px) {


      .braintree {
        margin-left: -29.5rem;
      }

      .hero-car {
        width: 200px;
        height: 200px;
      }

      .hero-headline-br {
        margin-left: -2.5rem;

      }




    }


    /* ══════════════════════════════════
       LARGE DESKTOP (≥1440px)
    ══════════════════════════════════ */
    @media (max-width: 1310px) {


      .braintree {
        margin-left: -25rem;
      }



    }

    @media (max-width: 1024px) {
      .hero-inner {
        max-width: 1440px;
        gap: 80px;
      }

      .braintree {
        margin-left: -33.5rem;
      }

      .hero-headline {
        font-size: 5rem;
        margin-left: -13.5rem;

      }

      .hero-headline-br {
        margin-left: -13.5rem;
        font-size: 3.5rem;
      }


      .widget {
        max-width: 520px;
      }

      .hero-car {
        width: 100px;
        height: 100px;
        margin-left: -10rem;
      }

    }

    /* ══════════════════════════════════
       TABLETS (≤1024px)
    ══════════════════════════════════ */
    @media (max-width: 1024px) {
      nav {
        padding: 0 24px;
        gap: 20px;
      }

      .hero-inner {
        gap: 36px;
        padding: 50px 32px;
      }

      .hero-headline {
        font-size: clamp(2.6rem, 5vw, 4rem);
      }

      .braintree {
        margin-left: -22rem;
      }

      .hero-headline-br {
        font-size: clamp(2rem, 9vw, 3.2rem);
        align-items: center;
        margin-left: -4.5rem;
      }

      .hero-car {
        width: 100px;
        height: 100px;

      }
    }

    /* ══════════════════════════════════
       TABLETS (≤960px)
    ══════════════════════════════════ */
    @media (max-width: 960px) {
      nav {
        padding: 0 24px;
        gap: 20px;
      }

      .hero-inner {
        gap: 36px;
        padding: 50px 32px;
      }

      .hero-headline {
        font-size: clamp(2.6rem, 5vw, 4rem);
      }

      .braintree {
        margin-left: -22rem;
      }

      .hero-headline-br {
        font-size: clamp(2rem, 9vw, 3.2rem);
        align-items: center;
        margin-left: -4rem;
      }

      .hero-car {
        width: 10px;
        height: 10px;
      }
    }

    /* ══════════════════════════════════
       TABLETS (≤960px)
    ══════════════════════════════════ */
    @media (max-width: 960px) {

      .braintree {
        margin-left: -20.5rem;
      }

    }

    /* ══════════════════════════════════
       TABLETS SQUEEZE (900px - 1180px)
       Fix overlapping steps when widget is constrained in 2-column layout
    ══════════════════════════════════ */
    @media (max-width: 1180px) and (min-width: 900px) {
      .w-bar-wrap {
        justify-content: flex-end;
      }

      .w-back {
        left: 5px;
      }
    }


    /* ══════════════════════════════════
       MOBILE / TABLET HAMBURGER (≤900px)
    ══════════════════════════════════ */
    @media (max-width: 900px) {

      .w-bottom {
        grid-template-columns: 80px 1fr auto;
        gap: 8px;
      }

      .w-fg1 label,
      .w-fg2 label {
        font-size: 0.52rem;
        letter-spacing: 1px;
      }

      .w-quote-btn {
        width: auto;
        justify-content: center;
        padding: 6px 10px;
        font-size: 0.65rem;
        height: 34px;
      }


      .hamburger {
        display: flex !important;
      }

      .nav-links {
        display: none;
      }

      .nav-actions {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 16px 40px;
        align-items: flex-start;
        min-height: calc(100dvh - 64px);
      }

      .hero-right {
        align-items: stretch;
      }

      .widget {
        max-width: 100%;
      }

      .braintree {
        margin-right: -29rem;
      }

      .hero-headline {
        font-size: clamp(2.4rem, 8vw, 3.8rem);
        margin-left: -5rem;
        align-items: center;
      }

      .hero-headline-br {
        font-size: clamp(2rem, 9vw, 3.2rem);
        align-items: center;
        margin-left: -5rem;
      }

      .braintree {
        margin-left: -33.5rem;
      }

      .hero-sub {
        max-width: 100%;
      }

      /* Step bar: reduce spacing to prevent overflow */
      .w-step {
        font-size: 0.64rem;
        letter-spacing: 1px;
        padding: 4px 8px;
      }

      .w-arrow {
        font-size: 0.75rem;
      }

      .w-top-bar {
        gap: 4px;
        padding: 0 10px;
      }

      .w-result-bar,
      .w-booking-bar {
        padding: 0 10px;
      }

      /* Bottom widget row: stack pax/luggage on tablet */
      /* Handled by w-bottom override above */

      .w-quote-btn {
        height: 34px;
        font-size: 0.65rem;
        justify-content: center;
      }

      .w-form-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════════
       LARGE PHONES (≤768px)
    ══════════════════════════════════ */
    @media (max-width: 768px) {
      nav {
        height: 58px;
      }

      .hero {
        padding-top: 58px;
        overflow: hidden;
        /* Keep video clipped within the hero section */
      }


      .hero-badge {
        font-size: 0.6rem;
        padding: 5px 11px;
      }

      .braintree {
        margin-right: -35rem;
      }

      .hero-headline {
        font-size: clamp(2rem, 9vw, 3.2rem);
        align-items: center;
        margin-left: 1rem;
      }

      .hero-headline-br {
        font-size: clamp(2rem, 9vw, 3.2rem);
        align-items: center;
        margin-left: 1rem;
      }

      .braintree {
        margin-left: -33.5rem;
        font-size: 1rem;
      }

      .hero-sub {
        font-size: 0.88rem;
        max-width: 100%;
      }

      .hero-check {
        font-size: 0.83rem;
      }

      .hero-checks {
        gap: 12px;
      }

      .widget {
        border-radius: 10px;
      }

      .w-result-shell,
      .w-booking-shell {
        margin: 8px;
        padding: 12px 12px 11px;
      }

      .w-inp,
      .w-finp,
      .w-sel-full,
      .w-inp-sm {
        font-size: 0.88rem;
      }

      .w-quote-btn {
        height: 46px;
      }

      .w-bottom {
        grid-template-columns: 75px 1fr auto;
        gap: 6px;
      }

      .w-fg1 label,
      .w-fg2 label {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        margin-bottom: 2px;
      }

      .w-sel2 {
        width: 80px;
      }

      .w-quote-btn {
        width: 100%;
        justify-content: center;
        height: clamp(32px, 12vw, 44px);
        font-size: clamp(0.65rem, 3vw, 0.85rem);
        padding: 5px 14px;
      }


      .hero-car {
        width: 600px;
        height: 600px;
        margin-left: 0rem;
      }

    }

    /* ══════════════════════════════════
       SMALL PHONES (≤480px)
    ══════════════════════════════════ */
    @media (max-width: 480px) {
      .nav-logo {
        width: 32px;
        height: 32px;
        font-size: 15px;
      }

      .nav-brand-name {
        font-size: 1rem;
        letter-spacing: 1px;
      }

      /* .nav-brand-name-2 already uses 0.6em so no override needed — it scales with parent */

      .btn-book {
        padding: 7px 12px;
        font-size: 0.72rem;
        letter-spacing: 1px;
      }

      .hero-inner {
        padding: 22px 12px 30px;
        min-height: auto;
        /* Allow hero to grow with widget content */
      }

      .hero {
        overflow: hidden;
        /* Keep video clipped within the hero section */
      }

      .hero-headline {
        font-size: clamp(1.9rem, 10vw, 2.8rem);
      }

      .hero-headline-br {
        font-size: clamp(1.5rem, 7vw, 2.3rem);
        align-items: center;
      }

      .braintree {
        margin-left: -33.5rem;
        font-size: 1rem;
      }

      .hero-sub {
        font-size: 0.85rem;
      }

      .hero-checks {
        gap: 10px;
      }

      .hero-check {
        font-size: 0.82rem;
      }

      .w-shell,
      .w-result-shell,
      .w-booking-shell {
        margin: 8px;
        padding: 12px 10px 11px;
      }

      .w-field-row {
        grid-template-columns: 38px 1fr;
        gap: 7px;
      }

      .w-via-row {
        grid-template-columns: 38px 1fr 22px;
        gap: 7px;
      }

      .w-lbl {
        font-size: 0.54rem;
      }

      .w-bottom {
        grid-template-columns: 70px 1fr auto;
        gap: 4px;
      }

      .w-fg1 label,
      .w-fg2 label {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        margin-bottom: 2px;
      }

      .w-sel2 {
        width: 80px;
      }

      .w-quote-btn {
        width: 100%;
        justify-content: center;
        height: clamp(30px, 11vw, 40px);
        font-size: clamp(0.62rem, 3vw, 0.8rem);
        padding: 5px 14px;
      }

      .w-quote-btn img {
        width: 24px !important;
        height: 24px !important;
      }

      .w-step {
        font-size: 0.6rem;
        letter-spacing: 1.2px;
        padding: 4px 6px;
      }

      .w-back {
        font-size: 0.65rem;
      }

      .pickup-tag {
        font-size: 0.67rem;
        padding: 5px 8px;
      }

      .w-fare-amt {
        font-size: 2rem;
      }

      .w-proceed-btn,
      .w-submit-btn {
        padding: 13px;
        font-size: 0.82rem;
      }

      .w-form-grid {
        grid-template-columns: 1fr;
      }

      .w-finp,
      .w-ftextarea {
        font-size: 0.88rem;
        padding: 10px 11px;
      }

      /* Touch-friendly 44px minimum tap targets */
      .w-inp,
      .w-finp,
      .w-sel,
      .w-sel-full,
      .w-inp-sm,
      .w-quote-btn,
      .w-proceed-btn,
      .w-submit-btn,
      .w-add-stop,
      .w-back,
      .w-rm {
        min-height: 44px;
      }

      .w-radio input,
      .w-check input {
        width: 18px;
        height: 18px;
      }

      .w-bar-wrap {
        justify-content: flex-end;
      }

      .w-back {
        left: 5px;
      }

      .hero-car {
        margin-top: -3rem;
        position: absolute;
        width: 5rem;
        height: 5rem;
        margin-left: 0rem;
      }
    }

    /* ══════════════════════════════════
       VERY SMALL PHONES (≤360px)
    ══════════════════════════════════ */
    @media (max-width: 360px) {
      .hero-headline {
        font-size: 1.85rem;
      }

      .w-step {
        font-size: 0.54rem;
        padding: 3px 5px;
      }

      .w-arrow {
        font-size: 0.68rem;
      }

      .braintree {
        margin-left: -33.5rem;
      }

      .w-shell,
      .w-result-shell,
      .w-booking-shell {
        margin: 6px;
        padding: 10px 9px;
      }

      .btn-book {
        display: none;
      }

      .w-fg1 label,
      .w-fg2 label {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        margin-bottom: 2px;
      }

      .w-sel2 {
        width: 80px;
      }

      .w-quote-btn {
        width: 100%;
        justify-content: center;
        height: clamp(28px, 10vw, 38px);
        font-size: clamp(0.6rem, 3vw, 0.75rem);
        padding: 5px 10px;
      }
    }

    /* ══════════════════════════════════
       LANDSCAPE PHONES
    ══════════════════════════════════ */
    @media (max-height: 500px) and (orientation: landscape) {
      .hero {
        min-height: auto;
        padding-bottom: 28px;
      }

      .hero-inner {
        min-height: auto;
        padding-top: 66px;
        grid-template-columns: 1fr;
        justify-items: center;
      }

      .hero-left {
        display: none;
      }

      .widget {
        max-width: 400px;
      }

      .braintree {
        margin-left: -33.5rem;
      }

      .w-shell,
      .w-result-shell,
      .w-booking-shell {
        max-height: calc(100dvh - 100px);
      }
    }

    .pac-container {
      z-index: 9999 !important;
    }

    /* CSS Variables for Colors */
    :root {
      --primary-color: #137fec;
      --background-light: #f6f7f8;
      --background-dark: #101922;
      --text-dark: #111418;
      --text-light: #ffffff;
      --text-muted: #617589;
      --border-light: rgba(209, 213, 219, 0.5);
      --border-dark: rgba(55, 65, 81, 0.5);
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-300: #d1d5db;
      --gray-400: #9ca3af;
      --gray-500: #6b7280;
      --gray-700: #374151;
      --gray-800: #1f2937;
      --gray-900: #111827;
    }

    /* How It Works Section */
    .how-it-works-section {
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 50px;
      background: #0a1628;
      padding: 40px 20px;
      cursor: context-menu;
    }

    .steps-wrapper {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 167px;
    }

    .container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      justify-content: center;
      font-family: "Varela Round", sans-serif;
      line-height: 1.5em;
    }

    .item {
      --color: #eb904b;
      width: 185px;
      background-color: var(--color);
      border-radius: 10px;
      padding: 10px 5px;
      box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
      position: relative;
      cursor: pointer;
    }

    .item::after {
      content: "";
      position: absolute;
      top: 8px;
      left: 0;
      z-index: 2;
      height: 80%;
      box-sizing: border-box;
      border-style: solid;
      border-color: transparent transparent transparent var(--color);
      border-width: 40px 40px 40px 40px;
      filter: drop-shadow(5px 0 4px rgba(0, 0, 0, 0.58));
      transition: filter .5s;
    }

    .container:nth-child(2) .item {
      --color: #813085;
    }

    .container:nth-child(3) .item {
      --color: #119630;
    }

    .layer {
      background-color: #f2f2f2;
      border: 1px solid #fff;
      border-radius: inherit;
      padding: 20px;
      box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px,
        rgba(0, 0, 0, 0.07) 0px 2px 4px,
        rgba(0, 0, 0, 0.07) 0px 4px 8px,
        rgba(0, 0, 0, 0.07) 0px 8px 16px,
        rgba(0, 0, 0, 0.07) 0px 16px 32px,
        rgba(0, 0, 0, 0.07) 0px 32px 64px;
      position: relative;
      left: 10px;
      transition: left 1s;
    }

    .service-icon {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 1.5rem;

    }

    h1 {
      color: #fff;
      font-family: "Varela Round", sans-serif;
      font-size: 36px;
      text-align: center;
      margin: 0;
      cursor: context-menu;
    }

    h3 {
      font-weight: 700;
      text-align: center;
      color: var(--color);
      margin: 0;
      font-size: 18px;
      cursor: context-menu;
    }

    .h41 {
      color: #eb904b;
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      margin: 0;
      padding: 0;
      cursor: context-menu;
    }

    .h42 {
      color: #813085;
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      margin: 0;
      padding: 0;
      cursor: context-menu;
    }

    .h43 {
      color: #119630;
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      margin: 0;
      padding: 0;
      cursor: context-menu;
    }

    p {
      color: #555;
      font-size: 14px;
      margin: 10px 0;
      cursor: context-menu;
    }

    span .material-symbols-outlined {
      width: 40px;
      height: 40px;
      color: #fff;
      background-color: var(--color);
      border-radius: 50%;
      display: grid;
      place-content: center;
      box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px,
        rgba(0, 0, 0, 0.07) 0px 2px 4px,
        rgba(0, 0, 0, 0.07) 0px 4px 8px,
        rgba(0, 0, 0, 0.07) 0px 8px 16px,
        rgba(0, 0, 0, 0.07) 0px 8px 16px,
        rgba(0, 0, 0, 0.07) 0px 32px 64px;
      font-size: 18px;
      position: absolute;
      right: 5px;
      bottom: 5px;
      cursor: context-menu;
    }

    .item:hover::after {
      filter: drop-shadow(5px 0 4px rgba(0, 0, 0, 0.1));
    }

    .item:hover .layer {
      left: 50px;
    }

    /* Contact & About Section */
    .contact-about-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      padding: 7rem 1.25rem 5rem;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 15% 20%, rgba(247, 171, 75, 0.18), transparent 28%),
        linear-gradient(180deg, #fdfbf8 0%, #f7f2eb 100%);
      color: #181818;
      isolation: isolate;
    }

    .luxury-glow {
      position: absolute;
      inset: 8% 12% auto auto;
      width: 34rem;
      height: 34rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 191, 95, 0.22), transparent 68%);
      filter: blur(40px);
      pointer-events: none;
      z-index: 0;
    }

    .luxury-road-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(34, 34, 34, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(34, 34, 34, 0.03) 1px, transparent 1px);
      background-size: 180px 180px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }

    .contact-about-shell {
      position: relative;
      z-index: 2;
      width: min(100%, 1240px);
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .luxury-heading {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
      animation: luxuryFadeUp 900ms cubic-bezier(.2, .8, .2, 1) both;
    }

    .luxury-eyebrow {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: #b8731c;
      margin: 0;
    }

    .luxury-heading h2 {
      font-family: 'Anton', sans-serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      line-height: 0.95;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin: 0;
      color: #151515;
    }

    .luxury-showcase {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      align-items: center;
      min-height: 560px;
    }

    .luxury-stage {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1800px;
      overflow: visible;
      padding: 2rem 0;
    }

    .luxury-track {
      position: relative;
      width: 100%;
      height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform-style: preserve-3d;
      transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
      cursor: grab;
    }

    .luxury-track:active {
      cursor: grabbing;
    }

    .luxury-card {
      position: absolute;
      inset: 0 auto auto 50%;
      width: min(320px, 68vw);
      height: 360px;
      margin-left: -160px;
      border-radius: 30px;
      overflow: hidden;
      background: #f4efe8;
      box-shadow: 0 24px 60px rgba(20, 20, 20, 0.16);
      border: 1px solid rgba(184, 115, 28, 0.18);
      transition: transform 650ms cubic-bezier(.2, .8, .2, 1), opacity 650ms ease, box-shadow 650ms ease;
      will-change: transform, opacity;
      transform-style: preserve-3d;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
      color: #fff;
      background-size: cover;
      background-position: center;
      isolation: isolate;
    }

    .luxury-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 8, 8, 0.06) 0%, rgba(8, 8, 8, 0.58) 70%, rgba(8, 8, 8, 0.78) 100%);
      z-index: 0;
      border-radius: inherit;
    }

    .luxury-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255, 191, 95, 0.28);
      border-radius: inherit;
      pointer-events: none;
      z-index: 2;
    }

    .luxury-card.is-active {
      box-shadow: 0 34px 90px rgba(20, 20, 20, 0.22);
    }

    .luxury-card-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .luxury-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #ffcf7f;
      margin: 0;
    }

    .luxury-card-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.92);
      max-width: 16rem;
      margin: 0;
    }

    .luxury-story {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      animation: luxuryFadeUp 1000ms cubic-bezier(.2, .8, .2, 1) 180ms both;
    }

    .luxury-story-copy {
      min-height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.7rem;
      padding: 1.4rem 0;
      border-top: 1px solid rgba(20, 20, 20, 0.12);
      border-bottom: 1px solid rgba(20, 20, 20, 0.12);
    }

    .luxury-story-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin: 0;
      color: #161616;
      letter-spacing: 0.02em;
    }

    .luxury-story-text {
      font-size: 1rem;
      line-height: 1.75;
      color: #4d4d4d;
      margin: 0;
      max-width: 34rem;
    }

    .luxury-dots {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .luxury-dot {
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 999px;
      background: rgba(20, 20, 20, 0.2);
      transition: transform 280ms ease, background 280ms ease;
    }

    .luxury-dot.is-active {
      transform: scale(1.25);
      background: #b8731c;
    }

    .luxury-capsules {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 0 0;
      margin-top: 0.5rem;
    }

    .luxury-capsule {
      position: relative;
      border: 0;
      background: rgba(255, 255, 255, 0.72);
      color: #242424;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
      transition: transform 280ms ease, box-shadow 280ms ease, color 280ms ease;
      cursor: pointer;
    }

    .luxury-capsule:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(20, 20, 20, 0.12);
      color: #b8731c;
    }

    .luxury-capsule.active {
      color: #b8731c;
      box-shadow: 0 12px 34px rgba(184, 115, 28, 0.16);
    }

    .luxury-connector {
      position: absolute;
      top: 0;
      left: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #b8731c 50%, transparent);
      transform-origin: left center;
      opacity: 0;
      transition: opacity 350ms ease;
      pointer-events: none;
    }

    .luxury-connector.is-visible {
      opacity: 1;
    }

    .luxury-trust-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.3rem 0 0;
      border-top: 1px solid rgba(20, 20, 20, 0.12);
      margin-top: 0.5rem;
    }

    .luxury-socials {
      display: flex;
      gap: 0.9rem;
      align-items: center;
    }

    .luxury-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.4rem;
      height: 2.4rem;
      color: #292929;
      transition: transform 260ms ease, color 260ms ease;
    }

    .luxury-socials a:hover {
      transform: translateY(-3px) rotate(5deg);
      color: #b8731c;
    }

    .luxury-socials svg {
      width: 1.15rem;
      height: 1.15rem;
    }

    .luxury-divider {
      width: 1px;
      height: 70px;
      background: rgba(20, 20, 20, 0.13);
      position: relative;
      overflow: hidden;
    }

    .luxury-divider::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, #b8731c, transparent);
      transform: translateY(-100%);
      transition: transform 450ms ease;
    }

    .luxury-trust-strip:hover .luxury-divider::after {
      transform: translateY(100%);
    }

    .luxury-rating {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex: 1;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .luxury-stars {
      font-size: 1.25rem;
      letter-spacing: 0.15em;
      color: #c18b2c;
      text-shadow: 0 0 18px rgba(193, 139, 44, 0.16);
      animation: shimmer 2.4s ease-in-out infinite;
    }

    .luxury-score {
      font-family: 'Anton', sans-serif;
      font-size: 2rem;
      line-height: 1;
      color: #161616;
    }

    .luxury-rating-meta {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      min-width: 240px;
    }

    .luxury-rating-meta strong {
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: #161616;
    }

    .luxury-rating-meta span {
      font-size: 0.95rem;
      color: #6c6c6c;
    }

    @media (max-width: 900px) {
      .luxury-showcase {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        min-height: auto;
      }

      .luxury-stage {
        min-height: 340px;
      }

      .luxury-trust-strip {
        flex-direction: column;
        align-items: flex-start;
      }

      .luxury-divider {
        display: none;
      }

      .luxury-rating {
        justify-content: flex-start;
      }
    }

    @media (max-width: 600px) {
      .luxury-heading h2 {
        font-size: 2.2rem;
      }

      .luxury-capsules {
        justify-content: flex-start;
      }

      .luxury-capsule {
        font-size: 0.7rem;
        padding: 0.62rem 0.84rem;
        letter-spacing: 0.2em;
      }

      .luxury-card {
        width: min(280px, 78vw);
        height: 320px;
      }

      .luxury-score {
        font-size: 1.7rem;
      }

      .luxury-rating-meta {
        min-width: 0;
      }
    }

    @keyframes luxuryFadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes shimmer {
      0%,
      100% {
        filter: brightness(1);
      }

      50% {
        filter: brightness(1.15);
      }
    }

    /* Footer */
    .footer {
      border-top: 3px solid #0a0a0a;
      margin-top: 0rem;
      position: relative;
      z-index: 10;
      cursor: context-menu;
      background: #fbc02d;
    }

    .footer-content {
      padding: 1.5rem 1rem 1rem;
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
    }

    .footer-brand {
      color: #000000;
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .footer-tagline {
      color: #000000;
      font-size: 0.875rem;
    }

    .footer-heading {
      color: #000000;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      color: #000000;
      font-size: 0.875rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #0668ca;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-icon {
      color: #000000;
      transition: color 0.3s ease;
    }

    .social-icon:hover {
      color: #0668ca;
    }

    .social-icon svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 2px solid black;
      text-align: center;
    }

    .footer-bottom p {
      color: #000000;
      font-size: 0.875rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive Styles */
    @media (max-width: 900px) {
      .contact-about-container {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        max-width: 700px;
      }

      .contact-box,
      .about-box {
        max-width: 100%;
        min-height: auto;
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 85px;
      }

      section {
        scroll-margin-top: 85px;
      }

      #contact {
        scroll-margin-top: 5vh;
      }

      #about {
        scroll-margin-top: 10vh;
      }

      .contact-about-section {
        padding: 5.5rem 1.25rem 4rem;
      }

      .contact-about-container {
        gap: 1.75rem;
      }

      .contact-box,
      .about-box {
        width: 100%;
      }

      .contact-box {
        padding: 1.75rem 1.25rem 0;
      }

      .about-box {
        margin-top: 0;
        padding: 2rem 1rem;
      }

      #booking {
        scroll-margin-top: -3vh;
      }

      .content-container {
        padding: 0 1.5rem;
      }

      .logo {
        width: 45px;
        height: 45px;
      }

      .brand-name {
        font-size: 1.5rem;
      }

      .hero-title {
        font-size: 3rem;
      }

      .hero-subtitle {
        font-size: 1.5rem;
      }

      .hero-text p {
        font-size: 1.125rem;
      }

      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }

      .btn {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 2.5rem;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-car-container {
        width: 140px;
        bottom: -7px;
      }

      .backcar {
        width: 100px;
        right: -4px;
        bottom: -4px;
      }
    }

    @media (min-width: 768px) {
      html {
        scroll-padding-top: 90px;
      }

      section {
        scroll-margin-top: 90px;
      }

      #contact {
        scroll-margin-top: 90px;
      }

      .content-container {
        padding: 0 2rem;
      }

      .header {
        padding: 1rem 2rem;
      }

      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }

      .logo {
        width: 50px;
        height: 50px;
      }

      .brand-name {
        font-size: 1.5rem;
      }

      .desktop-nav {
        display: flex;
      }

      .desktop-book-btn {
        display: block;
      }

      .mobile-menu-toggle {
        display: none;
      }

      .mobile-menu {
        display: none !important;
      }

      .hero-title {
        font-size: 4rem;
      }

      .hero-subtitle {
        font-size: 1.825rem;
      }
    }

    @media (min-width: 1024px) {
      .desktop-nav {
        gap: 3rem;
      }

      .nav-link {
        font-size: 1.1rem;
      }

      .hero-section {
        padding: 150px 2rem 4rem;
      }

      .section-title {
        font-size: 3rem;
      }

      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1280px) {
      .content-container {
        padding: 0 3rem;
      }

      .desktop-nav {
        gap: 4rem;
      }
    }

    @media (max-width: 480px) {
      .hero-car-container {
        width: 70px;
      }

      .backcar {
        width: 80px;
      }
    }

    @media (max-width: 530px) {
      .hero-car-container {
        width: 90px;
        bottom: -7px;
      }

      .backcar {
        width: 100px;
        right: -4px;
        bottom: -4px;
      }
    }

    @media (max-width: 435px) {
      .hero-car-container {
        width: 70px;
        bottom: -7px;
      }

      .backcar {
        width: 80px;
        right: -4px;
        bottom: -4px;
      }
    }

    @media (max-width: 397px) {
      .hero-car-container {
        width: 60px;
        bottom: -7px;
      }

      .backcar {
        width: 75px;
        right: -4px;
        bottom: -4px;
      }
    }

    @media (max-width: 1205px) {

      .backcar {
        bottom: -0.7%;
        right: -0.35%;
      }
    }

    @media (max-width: 1035px) {

      .backcar {
        bottom: -0.5%;
        right: -0.45%;
      }
    }

    @media (max-width: 813px) {

      .backcar {
        bottom: -0.65%;
        right: -0.55%;
      }
    }

    @media (max-width: 675px) {
      .backcar {
        bottom: -0.65%;
        right: -0.65%;
      }
    }

    @media (max-width: 577px) {
      .backcar {
        bottom: -0.65%;
        right: -0.75%;
      }
    }

    @media (max-width: 497px) {
      .backcar {
        bottom: -0.65%;
        right: -0.85%;
      }
    }

    @media (max-width: 439px) {
      .backcar {
        bottom: -0.65%;
        right: -0.95%;
      }
    }

    @media (max-width: 403px) {
      .backcar {
        bottom: -0.65%;
        right: -1.05%;
      }
    }

    @media (max-width: 365px) {
      .backcar {
        bottom: -0.65%;
        right: -1.15%;
      }
    }

    @media (max-width: 319px) {
      .backcar {
        bottom: -0.65%;
        right: -1.25%;
      }
    }

    @media (max-width: 1039px) {
      .backcar {
        bottom: -0.65%;
        right: -0.4%;
      }
    }

    @media (max-width: 914px) {
      .backcar {
        bottom: -0.65%;
        right: -0.5%;
      }
    }

    @media (max-width: 886px) {
      .backcar {
        bottom: -0.75%;
        right: -0.5%;
      }
    }

    @media (max-width: 739px) {
      .backcar {
        bottom: -0.75%;
        right: -0.56%;
      }
    }

    @media (max-width: 664px) {
      .backcar {
        bottom: -0.75%;
        right: -0.58%;
      }
    }

    @media (max-width: 643px) {
      .backcar {
        bottom: -0.75%;
        right: -0.59%;
      }
    }

    @media (max-width: 633px) {
      .backcar {
        bottom: -0.75%;
        right: -0.6%;
      }
    }

    @media (max-width: 604px) {
      .backcar {
        bottom: -0.75%;
        right: -0.64%;
      }
    }

    @media (max-width: 586px) {
      .backcar {
        bottom: -0.75%;
        right: -0.67%;
      }
    }

    @media (max-width: 562px) {
      .backcar {
        bottom: -0.75%;
        right: -0.69%;
      }
    }

    @media (max-width: 547px) {
      .backcar {
        bottom: -0.75%;
        right: -0.71%;
      }
    }

    @media (max-width: 547px) {
      .backcar {
        bottom: -0.75%;
        right: -0.73%;
      }
    }

    @media (max-width: 519px) {
      .backcar {
        bottom: -0.75%;
        right: -0.76%;
      }
    }

    @media (max-width: 499px) {
      .backcar {
        bottom: -0.75%;
        right: -0.78%;
      }
    }

    @media (max-width: 488px) {
      .backcar {
        bottom: -0.75%;
        right: -0.79%;
      }
    }

    @media (max-width: 477px) {
      .backcar {
        bottom: -0.75%;
        right: -0.95%;
      }
    }

    @media (max-width: 477px) {
      .hero-car-container {
        width: 40px;
        bottom: -7px;
      }

      .backcar {
        width: 45px;
        right: -4px;
        bottom: -4px;
      }
    }

    /* Main Content */
    section {
      flex-grow: 1;
    }

    .content-wrapper {
      position: relative;
      z-index: 2;
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2rem);
    }

    @media (min-width: 640px) {
      .content-wrapper {
        padding: 2rem clamp(1rem, 3vw, 2rem);
      }
    }

    .content-grid {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
      gap: clamp(1rem, 2.2vw, 3rem);
      align-items: center;
    }

    @media (max-width: 1023px) {
      .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .support-copy,
      .form-section {
        justify-self: stretch;
        margin: 0;
        max-width: none;
        width: 100%;
      }
    }

    /* Form Section */

    .booking-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .booking-section .content-wrapper {
      position: relative;
      z-index: 2;
    }

    .form-section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.98);
      padding: 1rem;
      padding-top: 120px;
      border-radius: 1rem;
      box-shadow: 0 10px 20px 20px rgba(28, 168, 6, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
      color: #000000;
      width: 100%;
      max-width: 560px;
      height: 100%;
      position: relative;
      align-self: center;
      justify-self: end;
      margin-left: auto;
      margin-right: -0.25rem;
    }

    .support-copy {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: clamp(2rem, 4vw, 3rem);
      border-radius: 1.75rem;
      background: rgba(0, 0, 0, 0.46);
      color: #ffffff;
      min-height: 100%;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
      align-self: center;
      justify-self: start;
      max-width: 500px;
      width: 100%;
      margin-right: auto;
      margin-left: -0.5rem;
    }

    .support-copy .page-heading h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      margin: 0;
      color: #ffffff;
    }

    .support-copy .page-heading p {
      color: rgba(255, 255, 255, 0.88);
      max-width: 34rem;
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .booking-section .contact-kicker {
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.14);
    }

    @media (min-width: 640px) {
      .form-section {
        padding: 2rem;
        padding-top: 120px;
      }
    }

    .page-heading {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .page-heading h1 {
      font-size: 1.75rem;
      font-weight: 900;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #000000;
      /* Restored to white */
    }



    .page-heading p {
      color: rgb(0, 0, 0);
      /* Restored to light gray */
      font-size: 1rem;
    }

    body.dark .page-heading p {
      color: var(--gray-400);
    }

    /* Form Styles */
    form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .form-group label {
      font-size: 0.875rem;
      font-weight: 600;
      padding-bottom: 0.375rem;
      color: #000000;
      /* Restored to white */
    }

    body.dark .form-group label {
      color: var(--gray-200);
    }

    .form-input,
    .form-textarea {
      display: flex;
      width: 100%;
      border-radius: 0.5rem;
      border: 1px solid var(--gray-300);
      background-color: #f5f5f5;
      /* Restored to white input */
      padding: 0.75rem;
      font-size: 0.875rem;
      outline: none;
      transition: all 0.2s;
      color: var(--text-dark);
    }

    .form-input {
      height: 2.75rem;
    }

    .form-textarea {
      min-height: 6rem;
      resize: none;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(19, 127, 236, 0.5);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--gray-400);
    }

    body.dark .form-input,
    body.dark .form-textarea {
      border-color: var(--gray-700);
      background-color: var(--gray-800);
      color: white;
    }

    /* Select Dropdown Styles */
    select.form-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      padding-right: 2.5rem;
    }

    body.dark select.form-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ccc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    }

    /* Autocomplete Styles */
    .autocomplete-wrapper {
      position: relative;
      width: 100%;
    }

    .autocomplete-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: white;
      border: 1px solid var(--gray-300);
      border-top: none;
      border-radius: 0 0 0.5rem 0.5rem;
      max-height: 250px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    body.dark .autocomplete-suggestions {
      background-color: var(--gray-800);
      border-color: var(--gray-700);
    }

    .autocomplete-suggestions.active {
      display: block;
    }

    .autocomplete-suggestion-item {
      padding: 0.75rem;
      cursor: pointer;
      border-bottom: 1px solid var(--gray-200);
      transition: background-color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    body.dark .autocomplete-suggestion-item {
      border-bottom-color: var(--gray-700);
    }

    .autocomplete-suggestion-item:last-child {
      border-bottom: none;
    }

    .autocomplete-suggestion-item:hover,
    .autocomplete-suggestion-item.selected {
      background-color: var(--gray-100);
    }

    body.dark .autocomplete-suggestion-item:hover,
    body.dark .autocomplete-suggestion-item.selected {
      background-color: var(--gray-700);
    }

    .autocomplete-suggestion-item i {
      color: var(--primary-color);
      font-size: 0.875rem;
    }

    .autocomplete-suggestion-text {
      flex: 1;
      font-size: 0.875rem;
    }

    .autocomplete-suggestion-main {
      font-weight: 500;
      color: var(--text-dark);
    }

    body.dark .autocomplete-suggestion-main {
      color: var(--text-light);
    }

    .autocomplete-suggestion-secondary {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.125rem;
    }

    body.dark .autocomplete-suggestion-secondary {
      color: var(--gray-400);
    }


    .btn-submit {
      display: flex;
      width: 50%;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      align-self: center;
      border-radius: 1rem;
      height: 2.75rem;
      padding: 0 1.5rem;
      background-color: #0085de;
      color: white;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      transition: background-color 0.2s;
    }

    .btn-submit:hover {
      background-color: #ffc107;
      color: #000;
    }

    /* Utility Classes */
    .truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Status Message Styles */
    .status-message {
      display: none;
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-align: center;
    }

    .status-message.success {
      display: block;
      background-color: #d1fae5;
      color: #065f46;
      border: 1px solid #34d399;
    }

    body.dark .status-message.success {
      background-color: rgba(16, 185, 129, 0.2);
      color: #6ee7b7;
      border-color: #059669;
    }

    .status-message.error {
      display: block;
      background-color: #fee2e2;
      color: #991b1b;
      border: 1px solid #f87171;
    }

    body.dark .status-message.error {
      background-color: rgba(239, 68, 68, 0.2);
      color: #fca5a5;
      border-color: #dc2626;
    }

    .status-message.loading {
      display: block;
      background-color: #dbeafe;
      color: #1e40af;
      border: 1px solid #60a5fa;
    }

    body.dark .status-message.loading {
      background-color: rgba(59, 130, 246, 0.2);
      color: #93c5fd;
      border-color: #2563eb;
    }

    .status-message i {
      margin-right: 0.5rem;
    }

    /* Contact Form Responsive Overrides */
    .content-grid {
      display: grid;
      width: 100%;
    }

    @media (min-width: 1024px) {
      .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .booking-section {
      min-height: auto;
      padding: clamp(3rem, 6vw, 4.5rem) 1rem;
      align-items: flex-start;
      margin-top: clamp(5rem, 10vw, 13rem);
    }

    .form-section {
      border-radius: 1.5rem;
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
      max-width: 760px;
      margin: 0 auto;
      padding: 0;
    }

    .contact-pages-clip {
      border-radius: inherit;
    }

    .contact-wpage {
      padding: clamp(5rem, 10vw, 6.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
      gap: 1.25rem;
    }

    @media (min-width: 640px) {
      .contact-wpage {
        padding: clamp(5.5rem, 9vw, 7rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 4vw, 2.75rem);
      }
    }

    .contact-form-page {
      gap: 1.5rem;
    }

    .page-heading {
      gap: 0.85rem;
    }

    .page-heading h1 {
      font-size: clamp(1.9rem, 4vw, 2.5rem);
      margin: 0;
    }

    .page-heading p {
      color: #334155;
      line-height: 1.7;
      margin: 0;
      max-width: 38rem;
    }

    .contact-kicker {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(0, 133, 222, 0.1);
      color: #006cb5;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-form-intro {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.85rem;
    }

    @media (min-width: 540px) {
      .contact-form-intro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .contact-highlight {
      padding: 1rem 1.1rem;
      border-radius: 1rem;
      background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
      border: 1px solid rgba(0, 133, 222, 0.16);
    }

    .contact-highlight-label {
      display: block;
      margin-bottom: 0.35rem;
      color: #0085de;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-highlight strong {
      display: block;
      color: #0f172a;
      font-size: 0.96rem;
      line-height: 1.5;
    }

    #taxiForm {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 700px) {
      .form-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group label {
      font-size: 0.95rem;
      font-weight: 700;
      padding-bottom: 0.5rem;
    }

    .optional-label {
      color: #64748b;
      font-size: 0.85em;
      font-weight: 600;
      margin-left: 0.25rem;
    }

    .form-group-full {
      grid-column: 1 / -1;
    }

    .form-input,
    .form-textarea {
      border-radius: 0.9rem;
      border: 1px solid #d7e1eb;
      background-color: #ffffff;
      padding: 0.9rem 1rem;
      font-size: 1rem;
      line-height: 1.5;
      box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .form-input {
      min-height: 3.15rem;
      height: auto;
    }

    .form-textarea {
      min-height: 8.5rem;
      resize: vertical;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: #0085de;
      box-shadow: 0 0 0 4px rgba(0, 133, 222, 0.14);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #94a3b8;
    }

    .contact-form-footer {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
      margin-top: 0.25rem;
    }

    .contact-form-help {
      margin: 0;
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .contact-form-help a {
      color: #006cb5;
      font-weight: 800;
      text-decoration: none;
    }

    .contact-form-help a:hover {
      text-decoration: underline;
    }

    @media (min-width: 700px) {
      .contact-form-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .contact-form-help {
        max-width: 24rem;
      }
    }

    .btn-submit {
      width: 100%;
      align-self: stretch;
      border-radius: 999px;
      min-height: 3.25rem;
      padding: 0 1.75rem;
      box-shadow: 0 14px 30px rgba(0, 133, 222, 0.24);
      transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    @media (min-width: 700px) {
      .btn-submit {
        width: auto;
        min-width: 13rem;
        align-self: flex-start;
      }
    }

    .btn-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 32px rgba(255, 193, 7, 0.22);
    }

    .status-message {
      margin-top: 0.25rem;
      padding: 0.95rem 1rem;
      border-radius: 1rem;
      font-size: 0.95rem;
      font-weight: 600;
      width: 100%;
    }

    .contact-confirm-page {
      justify-content: center;
      align-items: center;
      min-height: 100%;
    }

    .contact-confirm-page .w-confirm {
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      border: 1px solid rgba(0, 133, 222, 0.16);
      border-radius: 1.35rem;
      padding: clamp(1.75rem, 5vw, 2.5rem);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
      gap: 1rem;
      max-width: 32rem;
      margin: 0 auto;
    }

    .contact-confirm-page .w-confirm-icon {
      background: #0085de;
      color: transparent;
      position: relative;
      margin: 0 auto;
    }

    .contact-confirm-page .w-confirm-icon::before {
      content: "\2713";
      color: #ffffff;
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-confirm-page .w-confirm-title {
      color: #0f172a;
      font-size: clamp(1.8rem, 4vw, 2.25rem);
    }

    .contact-confirm-page .w-confirm-msg {
      color: #334155;
      max-width: 30rem;
      font-weight: 600;
    }

    .contact-confirm-page .w-confirm-msg span {
      display: block;
      margin-top: 0.35rem;
      color: #0085de;
    }

    .contact-confirm-page .w-new-booking-btn {
      width: 100%;
      max-width: 18rem;
      min-height: 3rem;
      margin-top: 0.5rem;
      border-radius: 999px;
      border: none;
      background: #0085de;
      color: #ffffff;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
    }

    .contact-confirm-page .w-new-booking-btn:hover {
      background: #006cb5;
    }






    @media (min-width: 1024px) {
      .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    /* Form Section */
    .booking-section {
      position: relative;
      background: url("support-bg.png") center/cover no-repeat;
      min-height: auto;
      padding: clamp(3rem, 6vw, 5rem) 1rem 4rem;
      margin-bottom: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0;
      overflow: hidden;
    }

    .booking-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .booking-section .content-wrapper {
      position: relative;
      z-index: 2;
    }

    .form-section {
      display: flex;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.98);
      border-radius: 1rem;
      box-shadow: 0 10px 20px 20px rgba(28, 168, 6, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
      color: #000000;
      width: 100%;
      position: relative;
      overflow: visible;
      padding: 0;
    }

    .contact-pages-clip {
      overflow: hidden;
      transition: height 0.35s cubic-bezier(.42, 0, .18, 1);
      width: 100%;
    }

    .contact-pages {
      display: flex;
      width: 200%;
      align-items: flex-start;
      transition: transform .38s cubic-bezier(.42, 0, .18, 1);
    }

    .contact-pages.slide-1 {
      transform: translateX(0);
    }

    .contact-pages.slide-2 {
      transform: translateX(-50%);
    }

    .contact-wpage {
      width: 50%;
      flex-shrink: 0;
      padding: 80px 1.5rem 1.5rem;
      /* Reduced top padding as panda is higher */
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .contact-wpage {
        padding: 90px 2rem 2rem;
      }
    }

    @media (min-width: 640px) {
      .form-section {
        padding: 2rem;
        padding-top: 120px;
      }
    }

    .page-heading {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .page-heading h1 {
      font-size: 1.75rem;
      font-weight: 900;
      letter-spacing: -0.025em;
      line-height: 1.2;
      color: #000000;
      /* Restored to white */
    }



    .page-heading p {
      color: rgb(0, 0, 0);
      /* Restored to light gray */
      font-size: 1rem;
    }

    body.dark .page-heading p {
      color: var(--gray-400);
    }

    /* Form Styles */
    form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .form-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .form-group label {
      font-size: 0.875rem;
      font-weight: 600;
      padding-bottom: 0.375rem;
      color: #000000;
      /* Restored to white */
    }

    body.dark .form-group label {
      color: var(--gray-200);
    }

    .form-input,
    .form-textarea {
      display: flex;
      width: 100%;
      border-radius: 0.5rem;
      border: 1px solid var(--gray-300);
      background-color: #f5f5f5;
      /* Restored to white input */
      padding: 0.75rem;
      font-size: 0.875rem;
      outline: none;
      transition: all 0.2s;
      color: var(--text-dark);
    }

    .form-input {
      height: 2.75rem;
    }

    .form-textarea {
      min-height: 6rem;
      resize: none;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(19, 127, 236, 0.5);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--gray-400);
    }

    body.dark .form-input,
    body.dark .form-textarea {
      border-color: var(--gray-700);
      background-color: var(--gray-800);
      color: white;
    }

    /* Select Dropdown Styles */
    select.form-input {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      padding-right: 2.5rem;
    }

    body.dark select.form-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ccc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    }

    /* Autocomplete Styles */
    .autocomplete-wrapper {
      position: relative;
      width: 100%;
    }

    .autocomplete-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: white;
      border: 1px solid var(--gray-300);
      border-top: none;
      border-radius: 0 0 0.5rem 0.5rem;
      max-height: 250px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    body.dark .autocomplete-suggestions {
      background-color: var(--gray-800);
      border-color: var(--gray-700);
    }

    .autocomplete-suggestions.active {
      display: block;
    }

    .autocomplete-suggestion-item {
      padding: 0.75rem;
      cursor: pointer;
      border-bottom: 1px solid var(--gray-200);
      transition: background-color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    body.dark .autocomplete-suggestion-item {
      border-bottom-color: var(--gray-700);
    }

    .autocomplete-suggestion-item:last-child {
      border-bottom: none;
    }

    .autocomplete-suggestion-item:hover,
    .autocomplete-suggestion-item.selected {
      background-color: var(--gray-100);
    }

    body.dark .autocomplete-suggestion-item:hover,
    body.dark .autocomplete-suggestion-item.selected {
      background-color: var(--gray-700);
    }

    .autocomplete-suggestion-item i {
      color: var(--primary-color);
      font-size: 0.875rem;
    }

    .autocomplete-suggestion-text {
      flex: 1;
      font-size: 0.875rem;
    }

    .autocomplete-suggestion-main {
      font-weight: 500;
      color: var(--text-dark);
    }

    body.dark .autocomplete-suggestion-main {
      color: var(--text-light);
    }

    .autocomplete-suggestion-secondary {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.125rem;
    }

    body.dark .autocomplete-suggestion-secondary {
      color: var(--gray-400);
    }


    .btn-submit {
      display: flex;
      width: 100%;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      align-self: center;
      border-radius: 1rem;
      height: 2.75rem;
      padding: 0 1.5rem;
      background-color: #0085de;
      color: white;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      transition: background-color 0.2s;
    }

    @media (min-width: 640px) {
      .btn-submit {
        width: 50%;
      }
    }

    .btn-submit:hover {
      background-color: #ffc107;
      color: #000;
    }

    /* Utility Classes */
    .truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Status Message Styles */
    .status-message {
      display: none;
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-align: center;
    }

    .status-message.success {
      display: block;
      background-color: #d1fae5;
      color: #065f46;
      border: 1px solid #34d399;
    }

    body.dark .status-message.success {
      background-color: rgba(16, 185, 129, 0.2);
      color: #6ee7b7;
      border-color: #059669;
    }

    .status-message.error {
      display: block;
      background-color: #fee2e2;
      color: #991b1b;
      border: 1px solid #f87171;
    }

    body.dark .status-message.error {
      background-color: rgba(239, 68, 68, 0.2);
      color: #fca5a5;
      border-color: #dc2626;
    }

    .status-message.loading {
      display: block;
      background-color: #dbeafe;
      color: #1e40af;
      border: 1px solid #60a5fa;
    }

    body.dark .status-message.loading {
      background-color: rgba(59, 130, 246, 0.2);
      color: #93c5fd;
      border-color: #2563eb;
    }

    .status-message i {
      margin-right: 0.5rem;
    }


    /* Panda Animation Styles */
    .panda-container {
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 160px;
      height: 160px;
      z-index: 5;
    }

    .panda-face {
      position: relative;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .ear {
      position: absolute;
      width: 50px;
      height: 50px;
      background: black;
      border-radius: 50%;
      top: 10px;
    }

    .ear.left {
      left: 10px;
    }

    .ear.right {
      right: 10px;
    }

    .eye {
      position: absolute;
      width: 45px;
      height: 55px;
      background: black;
      border-radius: 50%;
      top: 50px;
    }

    .eye.left {
      left: 35px;
      transform: rotate(-10deg);
    }

    .eye.right {
      right: 35px;
      transform: rotate(10deg);
    }

    .eyeball {
      position: absolute;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.1s ease;
    }

    .pupil {
      position: absolute;
      width: 10px;
      height: 10px;
      background: black;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .nose {
      position: absolute;
      width: 15px;
      height: 12px;
      background: black;
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      bottom: 45px;
      left: 50%;
      transform: translateX(-50%);
    }

    .mouth {
      position: absolute;
      width: 40px;
      height: 20px;
      border: 3px solid black;
      border-top: none;
      border-radius: 0 0 40px 40px;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
    }

    .panda-hand {
      position: absolute;
      width: 60px;
      height: 60px;
      background: black;
      border-radius: 50%;
      bottom: -20px;
      transition: all 0.3s ease;
    }

    .panda-hand.left {
      left: -30px;
    }

    .panda-hand.right {
      right: -30px;
    }

    .panda-hand.cover {
      bottom: 40px;
      z-index: 10;
    }

    .panda-container {
      top: clamp(-80px, -8vw, -64px);
      width: 160px;
      height: 160px;
      transform: translateX(-50%) scale(1);
      transform-origin: top center;
    }

    @media (max-width: 560px) {
      .panda-container {
        top: -60px;
        transform: translateX(-50%) scale(0.82);
      }
    }

    @media (max-width: 480px) {
      .contact-pages-clip {
        border-radius: 1.25rem;
      }

      .contact-highlight {
        padding: 0.9rem 1rem;
      }

      .contact-confirm-page .w-confirm {
        padding: 1.5rem 1.1rem;
      }

      .panda-container {
        top: -52px;
        transform: translateX(-50%) scale(0.72);
      }
    }

    @media (max-width: 360px) {
      .panda-container {
        top: -46px;
        transform: translateX(-50%) scale(0.66);
      }
    }

    /* Final Contact Form Overrides */
    .content-grid {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    .booking-section {
      position: relative;
      background: url("support-bg.png") center/cover no-repeat;
      min-height: auto;
      padding: clamp(3rem, 6vw, 5rem) 1rem 4rem;
      align-items: flex-start;
      justify-content: center;
      margin-top: 0;
      overflow: hidden;
    }

    .booking-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .booking-section .content-wrapper {
      position: relative;
      z-index: 2;
    }

    .form-section {
      border-radius: 1.5rem;
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
      max-width: 760px;
      margin: 0 auto;
      padding: 0;
      background: rgba(255, 255, 255, 0.98);
      width: 100%;
      overflow: visible;
    }

    .contact-pages-clip {
      border-radius: inherit;
    }

    .contact-wpage {
      padding: clamp(5rem, 10vw, 6.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
      gap: 1.25rem;
    }

    @media (min-width: 640px) {
      .contact-wpage {
        padding: clamp(5.5rem, 9vw, 7rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 4vw, 2.75rem);
      }
    }

    .contact-form-page {
      gap: 1.5rem;
    }

    .page-heading {
      gap: 0.85rem;
    }

    .page-heading h1 {
      font-size: clamp(1.9rem, 4vw, 2.5rem);
      margin: 0;
    }

    .page-heading p {
      color: #334155;
      line-height: 1.7;
      margin: 0;
      max-width: 38rem;
    }

    .contact-kicker {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(0, 133, 222, 0.1);
      color: #006cb5;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-form-intro {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.85rem;
    }

    @media (min-width: 540px) {
      .contact-form-intro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .contact-highlight {
      padding: 1rem 1.1rem;
      border-radius: 1rem;
      background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
      border: 1px solid rgba(0, 133, 222, 0.16);
    }

    .contact-highlight-label {
      display: block;
      margin-bottom: 0.35rem;
      color: #0085de;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-highlight strong {
      display: block;
      color: #0f172a;
      font-size: 0.96rem;
      line-height: 1.5;
    }

    #taxiForm {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 700px) {
      .form-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group label {
      font-size: 0.95rem;
      font-weight: 700;
      padding-bottom: 0.5rem;
    }

    .optional-label {
      color: #64748b;
      font-size: 0.85em;
      font-weight: 600;
      margin-left: 0.25rem;
    }

    .form-group-full {
      grid-column: 1 / -1;
    }

    .form-input,
    .form-textarea {
      border-radius: 0.9rem;
      border: 1px solid #d7e1eb;
      background-color: #ffffff;
      padding: 0.9rem 1rem;
      font-size: 1rem;
      line-height: 1.5;
      box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .form-input {
      min-height: 3.15rem;
      height: auto;
    }

    .form-textarea {
      min-height: 8.5rem;
      resize: vertical;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: #0085de;
      box-shadow: 0 0 0 4px rgba(0, 133, 222, 0.14);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #94a3b8;
    }

    .contact-form-footer {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: stretch;
      margin-top: 0.25rem;
    }

    .contact-form-help {
      margin: 0;
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .contact-form-help a {
      color: #006cb5;
      font-weight: 800;
      text-decoration: none;
    }

    .contact-form-help a:hover {
      text-decoration: underline;
    }

    @media (min-width: 700px) {
      .contact-form-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .contact-form-help {
        max-width: 24rem;
      }
    }

    .btn-submit {
      width: 100%;
      align-self: stretch;
      border-radius: 999px;
      min-height: 3.25rem;
      padding: 0 1.75rem;
      box-shadow: 0 14px 30px rgba(0, 133, 222, 0.24);
      transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    @media (min-width: 700px) {
      .btn-submit {
        width: auto;
        min-width: 13rem;
        align-self: flex-start;
      }
    }

    .btn-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 32px rgba(255, 193, 7, 0.22);
    }

    .status-message {
      margin-top: 0.25rem;
      padding: 0.95rem 1rem;
      border-radius: 1rem;
      font-size: 0.95rem;
      font-weight: 600;
      width: 100%;
    }

    .contact-confirm-page {
      justify-content: center;
      align-items: center;
      min-height: 100%;
    }

    .contact-confirm-page .w-confirm {
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      border: 1px solid rgba(0, 133, 222, 0.16);
      border-radius: 1.35rem;
      padding: clamp(1.75rem, 5vw, 2.5rem);
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
      gap: 1rem;
      max-width: 32rem;
      margin: 0 auto;
    }

    .contact-confirm-page .w-confirm-icon {
      background: #0085de;
      color: transparent;
      position: relative;
      margin: 0 auto;
    }

    .contact-confirm-page .w-confirm-icon::before {
      content: "\2713";
      color: #ffffff;
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-confirm-page .w-confirm-title {
      color: #0f172a;
      font-size: clamp(1.8rem, 4vw, 2.25rem);
    }

    .contact-confirm-page .w-confirm-msg {
      color: #334155;
      max-width: 30rem;
      font-weight: 600;
    }

    .contact-confirm-page .w-confirm-msg span {
      display: block;
      margin-top: 0.35rem;
      color: #0085de;
    }

    .contact-confirm-page .w-new-booking-btn {
      width: 100%;
      max-width: 18rem;
      min-height: 3rem;
      margin-top: 0.5rem;
      border-radius: 999px;
      border: none;
      background: #0085de;
      color: #ffffff;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
    }

    .contact-confirm-page .w-new-booking-btn:hover {
      background: #006cb5;
    }

    .panda-container {
      top: clamp(-80px, -8vw, -64px);
      width: 160px;
      height: 160px;
      transform: translateX(-50%) scale(1);
      transform-origin: top center;
    }

    @media (max-width: 640px) {
      .panda-container {
        top: -46px;
        transform: translateX(-50%) scale(0.66);
      }
    }

    @media (max-width: 560px) {
      .panda-container {
        top: -46px;
        transform: translateX(-50%) scale(0.66);
      }
    }

    @media (max-width: 480px) {
      .contact-pages-clip {
        border-radius: 1.25rem;
      }

      .contact-highlight {
        padding: 0.9rem 1rem;
      }

      .contact-confirm-page .w-confirm {
        padding: 1.5rem 1.1rem;
      }

      .panda-container {
        top: -46px;
        transform: translateX(-50%) scale(0.66);
      }
    }

    @media (max-width: 360px) {
      .panda-container {
        top: -46px;
        transform: translateX(-50%) scale(0.66);
      }
    }

    /* -- PWA Install Banner -- */
    .pwa-install-banner {
      position: fixed;
      bottom: -250px;
      /* Moved further down */
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      background: rgba(18, 18, 18, 0.95);
      /* Premium dark background */
      backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
      z-index: 10000;
      transition: bottom 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
      border: 1px solid #ffd900;
      opacity: 0;
      pointer-events: none;
    }

    .pwa-install-banner.show {
      bottom: 25px;
      opacity: 1;
      pointer-events: auto;
    }

    .pwa-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pwa-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      object-fit: contain;
      background: black;
      padding: 0px;
      border: 1px solid #ffd900;
    }

    .pwa-text h4 {
      margin: 0;
      font-size: 1rem;
      color: #ffd900;
      /* Gold text */
    }

    .pwa-text p {
      margin: 2px 0 0;
      font-size: 0.8rem;
      color: #ccc;
      /* Lighter text for dark bg */
    }

    .pwa-actions {
      display: flex;
      gap: 8px;
    }

    .pwa-btn-install {
      background: #f5b843;
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 0.9rem;
    }

    .pwa-btn-install:hover {
      background: #e0a83a;
    }

    .pwa-btn-close {
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      font-size: 1.2rem;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── MOBILE-ONLY HERO DESIGN ── */
    @keyframes mobileBounce {

      0%,
      20%,
      50%,
      80%,
      100% {
        transform: translateY(0);
      }

      40% {
        transform: translateY(-8px);
      }

      60% {
        transform: translateY(-4px);
      }
    }

    @keyframes formImpact {
      0% {
        opacity: 0;
        transform: translateY(-40px) scale(1.05);
      }

      60% {
        opacity: 1;
        transform: translateY(5px) scale(0.98);
      }

      80% {
        transform: translateY(-2px) scale(1.01);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (max-width: 768px) {

      /* Hide desktop-specific hero elements */
      .hero-badge,
      .braintree,
      .hero-sub,
      .hero-checks {
        display: none !important;
      }

      /* Full-screen hero, positioned for mobile layout */
      .hero {
        min-height: 100vh;
        padding: 40px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
      }

      /* Center video properly */
      .hero-bg-video {
        object-position: center !important;
      }

      /* Enhance dark overlay for readability */
      .hero-bg-overlay {
        background: rgba(0, 0, 0, 0.7) !important;
      }

      /* Inner container fills screen */
      .hero-inner {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      /* Title View Container */
      .hero-left {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Typography adjustments for mobile */
      .hero-headline {
        font-size: 3.5rem;
        margin-left: 0;
        margin-bottom: 0;
        line-height: 1;
        text-align: center;
      }

      .hero-headline-br {
        font-size: 2.0rem;
        margin-left: 0;
        margin-bottom: 0;
        line-height: 1;
        margin-top: 5px;
        text-align: center;
      }

      /* Smaller titles for very small phones */
      @media (max-width: 400px) {
        .hero-headline {
          font-size: 2.8rem;
        }

        .hero-headline-br {
          font-size: 1.6rem;
        }
      }

      /* Premium Mobile CTA Button */
      .mobile-cta-btn {
        display: block;
        width: 100%;
        height: 42px;
        max-width: 210px;
        margin-top: 60px;
        padding: 8px 20px;
        font-family: 'Oswald', sans-serif;
        font-size: 0.7rem;
        font-weight: 900;
        letter-spacing: 3px;
        text-align: center;
        color: white;
        background: #013a61;
        background-size: 200% 200%;
        border: none;
        border-radius: 50px;
        z-index: 10;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 225, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.5);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .mobile-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
        transform: skewX(-25deg);
        animation: shine 3s infinite;
      }

      .mobile-cta-btn:active {
        transform: scale(0.92);
        box-shadow: 0 5px 15px rgba(5, 199, 224, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.5);
      }

      .mobile-cta-btn.fade-out {
        display: none;
      }

      /* Form Container */
      .hero-right {
        position: relative;
        width: 100%;
        max-width: 480px;
        z-index: 10;
        display: none;
        /* Hidden by default */
        justify-content: center;
      }

      .hero-right.modal-open {
        display: flex;
        animation: formImpact 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
      }

      .widget {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 12px;
        padding-bottom: 20px;
      }
    }

    /* Hide mobile-specific elements on desktop */
    @media (min-width: 769px) {

      .mobile-cta-btn,
      .mobile-scroll-indicator,
      .mobile-booking-overlay {
        display: none !important;
      }
    }

    /* ── INTERACTIVE CARD SLIDER (SERVICES) ── */
    .services-slider-section {
      background-color: #fbc02d; /* Or #ffd400 based on exact match */
      width: 100%;
      padding: 60px 0;
      position: relative;
      display: flex;
      justify-content: center;
      overflow: hidden;
    }

    .services-slider-container {
      max-width: 1400px;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 0 40px;
    }

    .services-slider-left {
      flex: 0 0 350px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .services-title {
      font-size: 5rem;
      font-weight: 900;
      line-height: 0.9;
      color: #0a0a0a;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .services-divider {
      height: 4px;
      width: 60px;
      background-color: #0a0a0a;
      margin-bottom: 20px;
    }

    .services-subtitle {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0a0a0a;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 40px;
    }

    .services-nav-buttons {
      display: flex;
      gap: 15px;
    }

    .nav-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background-color: #0a0a0a;
      color: #fbc02d;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .nav-btn:hover {
      background-color: #333;
      transform: scale(1.05);
    }
    
    .nav-btn:active {
      transform: scale(0.95);
    }

    .services-slider-right {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .cards-wrapper {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 20px; /* Space for scrollbar if any */
      
      /* Hide scrollbar for webkit */
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }

    .cards-wrapper::-webkit-scrollbar {
      display: none;
    }

    .service-card {
      flex: 0 0 300px;
      height: 450px;
      border-radius: 16px;
      background-size: cover;
      background-position: center;
      position: relative;
      scroll-snap-align: start;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }

    .card-number {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fbc02d;
      font-family: 'Barlow Condensed', sans-serif;
    }

    .card-content {
      position: relative;
      z-index: 2;
    }

    .card-content h3 {
      font-size: 2.2rem;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
      font-family: 'Barlow Condensed', sans-serif;
    }

    .card-content p {
      font-size: 1rem;
      color: #ddd;
      line-height: 1.4;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }

    @media (max-width: 1024px) {
      .services-slider-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0 20px;
      }
      .services-slider-left {
        flex: none;
        width: 100%;
      }
      .services-slider-right {
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .services-title {
        font-size: 3.5rem;
      }
      .service-card {
        flex: 0 0 260px;
        height: 400px;
      }
    }
/* -- TESTIMONIALS SECTION -- */
.testimonials-section {
  background:
    radial-gradient(700px 460px at 8% 18%, rgba(255, 209, 0, 0.16), rgba(255, 209, 0, 0) 70%),
    radial-gradient(700px 460px at 92% 30%, rgba(45, 124, 255, 0.13), rgba(45, 124, 255, 0) 70%),
    radial-gradient(600px 400px at 50% 110%, rgba(255, 209, 0, 0.10), rgba(255, 209, 0, 0) 70%),
    #000000;
  padding: 110px 1.5rem 120px;
}

.testimonials-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.ts-kicker {
  display: inline-block;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.ts-heading {
  margin: 0 0 14px;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.ts-sub {
  margin: 0 auto 50px;
  max-width: 480px;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.ts-marquee {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.ts-marquee::before,
.ts-marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 3;
  pointer-events: none;
}

.ts-marquee::before {
  top: 0;
  background: linear-gradient(to bottom, #000000, rgba(0, 0, 0, 0));
}

.ts-marquee::after {
  bottom: 0;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
}

.ts-col {
  height: 580px;
  overflow: hidden;
}

.ts-track {
  display: flex;
  flex-direction: column;
  animation: ts-scroll var(--speed, 15s) linear infinite;
}

.ts-col:nth-child(1) .ts-track { margin-top: -48px; }
.ts-col:nth-child(2) .ts-track { margin-top: 0; }
.ts-col:nth-child(3) .ts-track { margin-top: 40px; }

.ts-col:hover .ts-track { animation-play-state: paused; }

@keyframes ts-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.ts-card {
  flex: 0 0 auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.ts-card:last-child { margin-bottom: 0; }

.ts-stars {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f5b843;
  margin-bottom: 10px;
}

.ts-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ts-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-name {
  margin: 0;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.ts-review {
  margin: 0;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  .ts-marquee { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 640px; gap: 24px; }
  .ts-col:nth-child(3) { display: none; }
  .ts-col { height: 560px; }
}

@media (max-width: 640px) {
  .ts-marquee { grid-template-columns: 1fr; max-width: calc(100vw - 40px); }
  .ts-col:nth-child(2) { display: none; }
  .ts-col { height: 540px; }
  .ts-heading { font-size: 32px; }
  .ts-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .ts-track { animation: none; }
}

/* ── SUPPORT SPLIT-SCREEN LIGHT THEME ── */
.booking-section {
  height: calc(100vh - 90px);
  max-height: calc(100vh - 90px);
  min-height: calc(100vh - 90px);
  padding: 0;
  margin-top: 0;
  background:
    radial-gradient(760px 620px at 6% 32%, rgba(255, 209, 0, 0.32), rgba(255, 209, 0, 0) 70%),
    radial-gradient(760px 620px at 12% 78%, rgba(45, 124, 255, 0.26), rgba(45, 124, 255, 0) 70%),
    #ffffff;
  display: block;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.booking-section::before { display: none; }

.booking-section .content-wrapper {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  font-family: inherit;
  line-height: inherit;
}

.booking-section .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  height: 100%;
  width: 100%;
  max-width: none;
  margin: 0;
}

.booking-section .form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 72px);
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  gap: 0;
  overflow-y: auto;
}

.booking-section .contact-pages-clip {
  width: 100%;
  max-width: 520px;
  border-radius: 0;
}

.booking-section .contact-wpage {
  padding: 0;
  gap: 0;
}

.booking-section .contact-form-page { gap: 0; }

.booking-section .contact-form-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
}

.booking-section .contact-kicker {
  display: inline-block;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  color: #71717a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.booking-section .contact-form-header h1 {
  margin: 0;
  font-family: 'Anton', 'Bebas Neue', 'League Gothic', sans-serif;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #09090b;
}

.booking-section .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 18px;
}

.booking-section .form-group label {
  display: block;
  padding: 0;
  margin: 0 0 6px;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #27272a;
}

.booking-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-section .form-input,
.booking-section .form-textarea {
  width: 100%;
  height: 52px;
  box-sizing: border-box;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  background-color: #fafafa;
  color: #18181b;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-section .form-textarea {
  height: 140px;
  padding: 14px 16px;
  line-height: 1.6;
  resize: none;
  border-radius: 12px;
}

.booking-section .form-input::placeholder,
.booking-section .form-textarea::placeholder { color: #a1a1aa; }

.booking-section .form-input:hover,
.booking-section .form-textarea:hover { border-color: #d4d4d8; }

.booking-section .form-input:focus,
.booking-section .form-textarea:focus {
  border-color: #18181b;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #18181b;
}

.booking-section .contact-form-footer {
  display: block;
  margin-top: 4px;
}

.booking-section .btn-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-section .btn-submit:hover {
  background-color: #27272a;
  box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.15);
}
.booking-section .btn-submit:active { transform: scale(0.99); }
.booking-section .btn-submit:disabled { opacity: 0.55; cursor: default; }

.booking-section .status-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border: none;
}

.booking-section .status-message.success { color: #15803d; background: #f0fdf4; }
.booking-section .status-message.error { color: #b91c1c; background: #fef2f2; }
.booking-section .status-message.loading { color: #09090b; background: #f4f4f5; }

.booking-section .panda-container { display: none !important; }

.booking-section .contact-confirm-page {
  padding: 0;
  min-height: 520px;
}

.booking-section .contact-confirm-page .w-confirm {
  min-height: 520px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.booking-section .w-confirm-title { color: #09090b; }
.booking-section .w-confirm-msg { color: #52525b; }

.booking-section .contact-confirm-page .w-new-booking-btn {
  width: 100%;
  max-width: none;
  min-height: 54px;
  margin-top: 8px;
  border-radius: 12px;
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter', 'Manrope', 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.booking-section .contact-confirm-page .w-new-booking-btn:hover { background-color: #27272a; }

.booking-section .support-video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #18181b;
}

.booking-section .support-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .booking-section { height: auto; max-height: none; min-height: 0; overflow: visible; }
  .booking-section .content-grid { grid-template-columns: 1fr; }
  .booking-section .form-section { height: auto; padding: 56px 24px 40px; overflow: visible; }
  .booking-section .support-video { height: 320px; min-height: 320px; }
  .booking-section .support-video video { position: absolute; height: 100%; }
}
/* ── HERO WIDGET APPLE / UBER REDESIGN ── */
.widget {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #0f172a;
}

.widget * { font-family: inherit; }

/* ── Stepper (all 3 pages) ── */
.widget .w-top-bar,
.widget .w-result-bar,
.widget .w-booking-bar {
  background: #ffffff;
  border-top: none;
  border-bottom: 1px solid #f1f5f9;
  height: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.widget .w-bar-wrap { display: flex; align-items: center; gap: 8px; margin: 0 auto; }

.widget .w-step {
  background: transparent;
  color: #9ca3af;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
}

.widget .w-arrow { color: #cbd5e1; font-size: 0.75rem; font-weight: 500; }

.widget .w-top-bar .w-step:first-child,
.widget .w-result-bar .w-step:nth-child(4),
.widget .w-booking-bar .w-step:last-child {
  color: #0f172a;
  font-weight: 700;
}

.widget .w-back {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  left: auto;
  transition: border-color 0.2s, color 0.2s;
}

.widget .w-back:hover { border-color: #0f172a; color: #0f172a; }

/* ── Page 1 shell ── */
.widget .w-shell {
  background: #ffffff;
  margin: 0;
  padding: 24px;
  border-radius: 0;
}

.widget .w-sec {
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.widget .w-lbl {
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget .w-field-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.widget .w-inp,
.widget .w-inp-sm,
.widget .w-sel-full,
.widget .w-sel1,
.widget .w-sel2 {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #111827;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.widget .w-inp:focus,
.widget .w-inp-sm:focus,
.widget .w-sel-full:focus,
.widget .w-sel1:focus,
.widget .w-sel2:focus {
  background: #f9fafb;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.widget .w-inp::placeholder,
.widget .w-inp-sm::placeholder { color: #9ca3af; }

.widget .w-via-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.widget .w-via-row .w-inp { flex: 1; height: 46px; }

.widget .w-via-row .w-lbl { color: #6b7280 !important; flex: 0 0 auto; }

.widget .w-via-row .w-rm {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.3rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  min-height: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}

.widget .w-via-row .w-rm:hover { background: #f3f4f6; color: #ef4444; }

.widget .w-add-stop {
  width: 100%;
  padding: 12px 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.2s;
}

.widget .w-add-stop:hover { background: #e5e7eb; }

.widget .w-div { background: #f1f5f9; margin: 18px 0; }

/* ── Segmented controls (Pick-Up + Services) ── */
.widget .w-radio-row {
  display: flex;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 14px;
}

.widget .w-radio {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.widget .w-radio input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.widget .w-seg-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: 9px;
  z-index: 0;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.widget .w-radio input:checked ~ .w-seg-bg {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12), 0 1px 2px rgba(15, 23, 42, 0.08);
}

.widget .w-seg-text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  padding: 10px 0;
  text-align: center;
  transition: color 0.2s;
}

.widget .w-radio input:checked ~ .w-seg-text { color: #0f172a; font-weight: 600; }
.widget .w-radio:hover .w-seg-text { color: #111827; }

/* ── Time pickers ── */
.widget .w-time-pickers {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.widget .w-time-pickers.show { display: grid; }

/* ── Return trip toggle ── */
.widget .w-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 14px;
}

.widget .w-check-text { font-size: 0.9rem; font-weight: 500; color: #1f2937; }

.widget .w-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.widget .w-switch {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: background-color 0.25s;
}

.widget .w-switch-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s;
}

.widget .w-check input:checked ~ .w-switch { background: #0f172a; }
.widget .w-check input:checked ~ .w-switch .w-switch-knob { transform: translateX(20px); }

/* ── Tariff select + badge ── */
.widget .w-sel-full {
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  margin-bottom: 14px;
}

.widget .pickup-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f2937;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #ffffff;
  margin: 2px 0 14px;
}

.widget .ptag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.widget .pickup-tag.later-tag .ptag-dot { background: #f59e0b; }

/* ── Bottom row + submit ── */
.widget .w-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.widget .w-fg1,
.widget .w-fg2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.widget .w-fg1 label,
.widget .w-fg2 label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget .w-select-wrap { position: relative; }

.widget .w-sel1,
.widget .w-sel2 { appearance: none; padding-right: 36px; }

.widget .w-chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
}

.widget .w-quote-btn {
  grid-column: 1 / -1;
  width: 100%;
  height: 54px;
  margin-top: 4px;
  padding: 0 24px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s, transform 0.2s;
}

.widget .w-quote-btn:hover { background: #1f2937; }
.widget .w-quote-btn:active { transform: scale(0.99); }
.widget .w-quote-btn:disabled { background: #4b5563; cursor: default; }

.widget .w-car-icon { width: 20px; height: 20px; }

.widget #btn-text { text-transform: uppercase; letter-spacing: 0.1em; }

.widget .w-spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
}

.widget .w-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #dc2626;
  margin-top: 12px;
}

.widget .w-error.show { display: block; }

/* ── Page 2: Your Quote ── */
.widget .w-result-shell { padding: 24px; background: #ffffff; }

.widget .w-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.widget .w-stat {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px;
}

.widget .w-stat-val { font-size: 1.4rem; font-weight: 700; color: #0f172a; line-height: 1.2; }

.widget .w-stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.widget .w-pickup-info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.widget .wpi-icon { font-size: 1.1rem; line-height: 1; }
.widget .wpi-title { font-size: 0.85rem; font-weight: 600; color: #111827; }
.widget .wpi-detail { font-size: 0.78rem; color: #6b7280; }

.widget .w-route {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.widget .w-rt {
  font-size: 0.68rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.widget .w-rrow { display: flex; align-items: center; gap: 10px; padding: 4px 0; }

.widget .w-rrow .dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px; }
.widget .w-rrow .dot.p { background: #f59e0b; }
.widget .w-rrow .dot.d { background: #ef4444; }

.widget .w-raddr { font-size: 0.85rem; color: #1f2937; }

.widget .w-fare {
  background: #0f172a;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.widget .w-fare-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.widget .w-fare-amt { font-size: 2.6rem; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; line-height: 1; }
.widget .w-fare-amt sup { font-size: 1.2rem; color: #9ca3af; top: -0.6em; }
.widget .w-fare-note { font-size: 0.72rem; color: #9ca3af; }

.widget .w-bk {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.widget .w-bk-title { font-size: 0.75rem; font-weight: 700; color: #111827; margin-bottom: 10px; }

.widget .w-bk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #4b5563;
  padding: 6px 0;
}

.widget .w-bk-sub { font-size: 0.7rem; color: #9ca3af; }

.widget .w-bk-row.tot {
  border-top: 1px solid #e5e7eb;
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
}

.widget .w-proceed-btn {
  width: 100%;
  height: 54px;
  padding: 0 24px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.widget .w-proceed-btn:hover { background: #1f2937; }

/* ── Page 3: Booking ── */
.widget .w-booking-shell { padding: 24px; background: #ffffff; }

.widget .booking-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.widget .bs-route { font-size: 0.85rem; color: #1f2937; line-height: 1.5; }
.widget .bs-route strong { color: #0f172a; font-weight: 700; }
.widget .bs-pickup-when { font-size: 0.72rem; color: #6b7280; }

.widget #bsum-return-wrap { border-top-color: #e5e7eb !important; }
.widget #bsum-return-when { color: #111827 !important; }

.widget .bs-fare { text-align: right; }
.widget .bs-fare-amt { font-size: 1.5rem; font-weight: 800; color: #0f172a; letter-spacing: -0.02em; }
.widget .bs-fare-amt sup { font-size: 0.8rem; color: #6b7280; top: -0.5em; }
.widget .bs-fare-lbl { font-size: 0.68rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; }

.widget .w-form-sec {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.widget .w-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.widget .w-form-grid.full { grid-template-columns: 1fr; }

.widget .w-fgroup { display: flex; flex-direction: column; gap: 6px; min-width: 0; }

.widget .w-fgroup label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget .w-finp,
.widget .w-ftextarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.widget .w-finp { height: 48px; padding: 0 14px; }

.widget .w-ftextarea { padding: 12px 14px; min-height: 90px; resize: vertical; }

.widget .w-finp:focus,
.widget .w-ftextarea:focus {
  background: #f9fafb;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.widget .w-finp::placeholder,
.widget .w-ftextarea::placeholder { color: #9ca3af; }

.widget .w-form-div { height: 1px; background: #f1f5f9; margin: 16px 0; }

.widget .w-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #dc2626;
  margin-bottom: 12px;
}

.widget .w-submit-btn {
  width: 100%;
  height: 54px;
  padding: 0 24px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.widget .w-submit-btn:hover { background: #1f2937; }

.widget .w-submit-spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
}

/* ── Page 3: Confirmation ── */
.widget .w-confirm {
  display: none;
  background: #ffffff;
  border-radius: 0;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.widget .w-confirm.show {
  display: flex;
}

.widget .w-confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.widget .w-confirm-title { font-size: 1.4rem; font-weight: 800; color: #0f172a; }
.widget .w-confirm-msg { font-size: 0.85rem; color: #4b5563; line-height: 1.6; }
.widget .w-confirm-msg span { color: #0f172a !important; }
.widget .w-confirm-ref { font-size: 0.8rem; color: #6b7280; margin-top: 4px; }
.widget .w-confirm-ref strong { color: #111827; }

.widget .w-new-booking-btn {
  height: 46px;
  padding: 0 22px;
  margin-top: 14px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.widget .w-new-booking-btn:hover { background: #1f2937; }

/* ── Responsive re-statements ── */
@media (max-width: 900px) {
  .widget .w-quote-btn { height: 48px; }
}

@media (max-width: 480px) {
  .widget { border-radius: 18px; }
  .widget .w-shell,
  .widget .w-result-shell,
  .widget .w-booking-shell { padding: 18px 16px; }
  .widget .w-inp,
  .widget .w-inp-sm,
  .widget .w-sel-full,
  .widget .w-sel1,
  .widget .w-sel2 { height: 44px; }
  .widget .w-finp { height: 44px; }
  .widget .w-quote-btn,
  .widget .w-proceed-btn,
  .widget .w-submit-btn { height: 48px; font-size: 0.82rem; }
  .widget .w-step { font-size: 0.62rem; letter-spacing: 0.05em; }
  .widget .w-arrow { font-size: 0.68rem; }
  .widget .w-fg1 label,
  .widget .w-fg2 label { font-size: 0.62rem; }
  .widget .w-fare-amt { font-size: 2.2rem; }
}


/* ══ COMPACT DENSITY OVERRIDE (Apple/Uber sidebar widget) ══ */

.widget {
  max-width: 440px;
}

/* ── Stepper ── */
.widget .w-top-bar,
.widget .w-result-bar,
.widget .w-booking-bar {
  padding: 10px 16px;
}

.widget .w-step { font-size: 0.66rem; }

.widget .w-back {
  padding: 5px 10px;
  font-size: 0.7rem;
  border-radius: 7px;
}

.widget .w-bar-wrap { gap: 6px; }

.widget .w-result-bar .w-arrow,
.widget .w-booking-bar .w-arrow { margin: 0 4px !important; }

/* ── Shell ── */
.widget .w-shell,
.widget .w-result-shell,
.widget .w-booking-shell { padding: 20px; }

/* ── Labels: force left alignment everywhere ── */
.widget .w-sec,
.widget .w-lbl,
.widget .w-fg1 label,
.widget .w-fg2 label,
.widget .w-fgroup label {
  display: block;
  width: 100%;
  text-align: left !important;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.widget .w-sec { margin-bottom: 8px; }
.widget .w-field-row { gap: 4px; margin-bottom: 12px; }

.widget .w-div { margin: 14px 0; }

/* ── Inputs: compact h-11 (44px) ── */
.widget .w-inp,
.widget .w-inp-sm,
.widget .w-sel-full,
.widget .w-sel1,
.widget .w-sel2 {
  height: 44px;
  border-radius: 10px;
  font-size: 0.85rem;
  padding: 0 14px;
}

.widget .w-inp-sm { height: 40px; font-size: 0.8rem; }

/* ── Add stop: small inline pill ── */
.widget .w-add-stop {
  width: auto;
  align-self: flex-start;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
}

.widget .w-add-stop:hover { background: #e5e7eb; }

/* ── Segmented controls: h-10 (40px) ── */
.widget .w-radio-row {
  height: 40px;
  padding: 3px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.widget .w-seg-bg { border-radius: 8px; }

.widget .w-seg-text {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 0;
}

/* ── Dynamic pickers: 2-col, compact, smooth reveal ── */
.widget .w-time-pickers {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

@keyframes w-picker-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.widget .w-time-pickers.show,
.widget #return-time-pickers[style*="grid"] {
  animation: w-picker-in 0.18s ease;
}

.widget #return-time-pickers > div {
  font-size: 0.62rem !important;
  color: #6b7280 !important;
  letter-spacing: 0.1em !important;
  text-align: left !important;
  margin-bottom: 4px !important;
}

/* ── Return trip toggle: compact row + small iOS switch ── */
.widget .w-check {
  margin-bottom: 12px;
  padding: 2px 0;
  gap: 10px;
}

.widget .w-check-text { font-size: 0.78rem; font-weight: 600; }

.widget .w-switch { width: 36px; height: 20px; }
.widget .w-switch-knob { width: 16px; height: 16px; top: 2px; left: 2px; }
.widget .w-check input:checked ~ .w-switch .w-switch-knob { transform: translateX(16px); }

/* ── Service badge + tariff select ── */
.widget .pickup-tag {
  padding: 4px 10px;
  font-size: 0.62rem;
  margin: 0 0 12px;
}

.widget .ptag-dot { width: 6px; height: 6px; }

.widget .w-sel-full { margin-bottom: 12px; }

/* ── Bottom grid + submit ── */
.widget .w-bottom {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.widget .w-fg1,
.widget .w-fg2 { gap: 4px; }

.widget .w-chev { width: 15px; height: 15px; right: 12px; }

.widget .w-quote-btn {
  height: 48px;
  margin-top: 2px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  gap: 8px;
}

.widget .w-car-icon { width: 18px; height: 18px; }

.widget .w-error { padding: 8px 12px; font-size: 0.75rem; margin-top: 10px; }

/* ── Page 2: result density ── */
.widget .w-stats { gap: 10px; margin-bottom: 14px; }
.widget .w-stat { padding: 12px; }
.widget .w-stat-val { font-size: 1.25rem; }
.widget .w-stat-lbl { font-size: 0.62rem; }
.widget .w-pickup-info,
.widget .w-route,
.widget .w-bk { padding: 12px; margin-bottom: 14px; }
.widget .w-fare { padding: 16px; margin-bottom: 14px; }
.widget .w-fare-amt { font-size: 2.3rem; }
.widget .w-proceed-btn { height: 48px; font-size: 0.8rem; border-radius: 12px; }

/* ── Page 3: booking density ── */
.widget .booking-summary { padding: 12px; margin-bottom: 16px; }
.widget .w-form-sec { margin-bottom: 10px; }
.widget .w-form-grid { gap: 10px; margin-bottom: 10px; }
.widget .w-fgroup { gap: 4px; }
.widget .w-finp { height: 44px; border-radius: 10px; font-size: 0.85rem; padding: 0 14px; }
.widget .w-ftextarea { font-size: 0.85rem; min-height: 76px; }
.widget .w-form-div { margin: 14px 0; }
.widget .w-submit-btn { height: 48px; font-size: 0.8rem; border-radius: 12px; }
.widget .w-confirm { padding: 32px 20px; }

/* ── Responsive re-statements ── */
@media (max-width: 480px) {
  .widget .w-shell,
  .widget .w-result-shell,
  .widget .w-booking-shell { padding: 16px 14px; }
  .widget .w-inp,
  .widget .w-inp-sm,
  .widget .w-sel-full,
  .widget .w-sel1,
  .widget .w-sel2 { height: 40px; font-size: 0.8rem; }
  .widget .w-finp { height: 40px; font-size: 0.8rem; }
  .widget .w-radio-row { height: 38px; }
  .widget .w-seg-text { font-size: 0.74rem; padding: 7px 0; }
  .widget .w-quote-btn,
  .widget .w-proceed-btn,
  .widget .w-submit-btn { height: 46px; font-size: 0.76rem; }
  .widget .w-step { font-size: 0.6rem; }
  .widget .w-fare-amt { font-size: 2rem; }
}

/* ══ SINGLE-COLUMN APPLE/UBER FLOATING CARD ══ */
.widget {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

/* ── Stepper ── */
.widget .w-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid #f3f4f6;
}

.widget .w-top-bar .w-step { color: #d1d5db; font-weight: 600; }
.widget .w-top-bar .w-step:first-child { color: #0f172a; font-weight: 800; }
.widget .w-arrow { color: #d1d5db; }

/* ── Shell ── */
.widget .w-shell { padding: 18px; }
.widget .w-shell > * { margin: 0; }

/* ── Route block (grouped gray card) ── */
.widget .w-route-box {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 10px;
}

.widget .w-route-box > * + * { margin-top: 8px; }
.widget .w-route-box .w-field-row { gap: 4px; margin-bottom: 0; }

.widget .w-route-box .w-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.widget .w-route-box .w-inp {
  height: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
}

.widget .w-route-box .w-inp:focus {
  background: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.widget .w-add-stop {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 4px 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  text-align: left;
  cursor: pointer;
}

.widget .w-add-stop:hover { color: #0f172a; background: transparent; }

.widget #via-inputs { display: none; }
.widget #via-inputs:not(:empty) { display: block; }

.widget .w-via-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.widget .w-via-row .w-lbl { font-size: 0.6rem; color: #9ca3af; flex: 0 0 auto; }

.widget .w-via-row .w-inp {
  flex: 1;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.78rem;
}

.widget .w-via-row .w-rm {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
}

.widget .w-via-row .w-rm:hover { background: #f3f4f6; color: #ef4444; }

/* ── Options grid (Pick-Up | Services) ── */
.widget .w-opts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.widget .w-opt-cell { display: flex; flex-direction: column; min-width: 0; }

.widget .w-sec {
  font-size: 0.62rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.widget .w-radio-row {
  height: 40px;
  padding: 4px;
  background: #f3f4f6;
  border-radius: 12px;
  margin-bottom: 0;
}

.widget .w-seg-bg { border-radius: 9px; }

.widget .w-seg-text {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
}

.widget .w-radio input:checked ~ .w-seg-bg {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.14);
}

.widget .w-radio input:checked ~ .w-seg-text { color: #0f172a; }
.widget .w-radio:hover .w-seg-text { color: #6b7280; }

/* ── Status badge ── */
.widget .pickup-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 3px 10px;
  background: #111827;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 500;
  color: #ffffff;
}

.widget .ptag-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; }
.widget .pickup-tag.later-tag .ptag-dot { background: #f59e0b; }

/* ── Dynamic pickers ── */
.widget .w-time-pickers {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.widget .w-time-pickers.show { display: grid; }

.widget .w-inp-sm {
  height: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.76rem;
}

.widget #return-time-pickers > div {
  font-size: 0.6rem !important;
  color: #9ca3af !important;
  letter-spacing: 0.1em !important;
  text-align: left !important;
}

/* ── Return trip row ── */
.widget .w-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  margin: 14px 0 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.widget .w-check-text { font-size: 0.74rem; font-weight: 600; color: #374151; }

.widget .w-switch {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #e5e7eb;
}

.widget .w-switch-knob {
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.widget .w-check input:checked ~ .w-switch { background: #0f172a; }
.widget .w-check input:checked ~ .w-switch .w-switch-knob { transform: translateX(16px); }

/* ── Tariff select ── */
.widget .w-sel-full {
  height: 40px;
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ── Capacity ── */
.widget .w-bottom { gap: 12px; margin-top: 14px; }

.widget .w-sel1,
.widget .w-sel2 { height: 40px; border-radius: 12px; font-size: 0.76rem; }

/* ── Submit ── */
.widget .w-quote-btn {
  height: 48px;
  margin-top: 8px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.widget .w-quote-btn:hover { background: #1f2937; }
.widget .w-quote-btn:active { transform: scale(0.99); }

/* ── Error ── */
.widget .w-error {
  padding: 8px 12px;
  margin-top: 12px;
  text-align: center;
  font-size: 0.7rem;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .widget .w-shell { padding: 14px; }
  .widget .w-opts-grid { gap: 10px; }
}


/* -- INTERACTIVE REVIEW FIXES -- */
.widget {
  max-width: 560px;
}

.widget .w-shell,
.widget .w-result-shell,
.widget .w-booking-shell {
  max-height: none;
  overflow-y: visible;
}

.widget .w-via-row .w-lbl { color: #9ca3af !important; }

.widget .w-shell { padding: 16px; }
.widget .w-opts-grid { margin-top: 12px; }
.widget .w-check { padding: 10px 2px; margin-top: 12px; }
.widget .w-sel-full { margin-top: 10px; }
.widget .w-bottom { margin-top: 12px; }
.widget .w-quote-btn { margin-top: 6px; }

/* ══════════════════════════════════════════════════════════
   BUG FIXES — contrast, via-input overflow, stepper layout
   Append-only; no JS or backend logic touched.
   ══════════════════════════════════════════════════════════ */

/* ── Bug 1: white text on light backgrounds ── */
/* Quote page: "Estimated pickup: Wed 5 Aug…" uses <strong> inside .wpi-detail */
.widget .wpi-detail strong { color: #374151; font-weight: 600; }

/* ── Bug 2: Via / Add-Stop input overflow & missing borders ── */
.widget .w-route-box { overflow: hidden; min-width: 0; }
.widget #via-inputs { display: none; min-width: 0; }
.widget #via-inputs:not(:empty) { display: block; }
.widget .w-via-row { display: flex; align-items: center; gap: 6px; margin-top: 8px; min-width: 0; width: 100%; }
.widget .w-via-row .w-inp {
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  height: 40px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #111827;
  outline: none;
  box-sizing: border-box;
}
.widget .w-via-row .w-inp:focus { border-color: #111827; box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1); }
.widget .w-via-row .w-lbl { font-size: 0.6rem; color: #6b7280 !important; flex: 0 0 auto; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }
.widget .w-via-row .w-rm { background: none; border: none; color: #9ca3af; font-size: 1.2rem; line-height: 1; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; flex: 0 0 auto; }
.widget .w-via-row .w-rm:hover { background: #f3f4f6; color: #ef4444; }

/* ── Bug 3: Stepper header — clean breadcrumb + separate back button ── */
.widget .w-top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid #f3f4f6;
  background: transparent;
}
.widget .w-result-bar, .widget .w-booking-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f3f4f6;
  background: transparent;
}
.widget .w-back {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: background 0.15s;
  position: static;
  transform: none;
}
.widget .w-back:hover { background: #e5e7eb; }
.widget .w-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.widget .w-step {
  font-size: 0.66rem;
  font-weight: 500;
  color: #9ca3af;
  white-space: nowrap;
  background: none;
}
.widget .w-step.current { color: #0f172a; font-weight: 700; }
.widget .w-arrow { color: #d1d5db; font-size: 0.7rem; font-weight: 500; margin: 0; }


/* ── Bug 1 follow-up: pickup-time detail readable on light bg ── */
.widget .wpi-detail { color: #374151; font-weight: 500; }
.widget .wpi-detail strong { color: #111827; font-weight: 600; }

/* ── Bug 4 follow-up: confirm shown centered when .show added ── */
.widget .w-confirm.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Booking form fields: dark text + visible borders on white bg ── */
.widget .w-fgroup label { color: #374151; }
.widget .w-finp,
.widget .w-ftextarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.widget .w-finp { height: 48px; padding: 0 14px; }
.widget .w-ftextarea { padding: 12px 14px; min-height: 76px; resize: vertical; }
.widget .w-finp:focus,
.widget .w-ftextarea:focus {
  background: #f9fafb;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}
.widget .w-finp::placeholder,
.widget .w-ftextarea::placeholder { color: #9ca3af; }
.widget .w-finp.invalid { border-color: #dc2626; }

/* ── Booking summary strip: readable on the white widget ── */
.widget .booking-summary {
  background: #f9fafb;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}
.widget .bs-route { color: #374151; }
.widget .bs-route strong { color: #111827; }
.widget .bs-pickup-when { color: #6b7280; }
.widget .bs-fare-amt { color: #111827; }
.widget .bs-fare-amt sup { color: #6b7280; }
.widget .bs-fare-lbl { color: #6b7280; }


/* ══════════════════════════════════════════════════════════
   VIA STOPS — rendering, + icon button, delete positioning
   Pure visual fix; addVia / rmVia JS logic left untouched.
   ══════════════════════════════════════════════════════════ */

/* ── Container: show when rows exist, clip overflow ── */
.widget #via-inputs:empty { display: none; }
.widget #via-inputs:not(:empty) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* ── Each via row: flex, full width, no overflow ── */
.widget .w-via-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  width: 100%;
}

/* ── Via label ("Via") ── */
.widget .w-via-row .w-lbl {
  flex: 0 0 auto;
  font-size: 0.6rem;
  font-weight: 700;
  color: #6b7280 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Via input: visible, bordered, fills remaining width ── */
.widget .w-via-row .w-inp {
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  height: 40px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #111827;
  outline: none;
  box-sizing: border-box;
}
.widget .w-via-row .w-inp::placeholder { color: #9ca3af; }
.widget .w-via-row .w-inp:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
}

/* ── Delete (×) button: locked right, never overflows ── */
.widget .w-via-row .w-rm {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.widget .w-via-row .w-rm:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* ── Add-Stop button: minimal + icon (hide JS text via font-size:0) ── */
.widget .w-add-stop {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  color: #111827;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  flex: 0 0 auto;
}
.widget .w-add-stop::before {
  content: "+";
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.widget .w-add-stop:hover { background: #e5e7eb; }

/* ── Row that holds the + button: center it, don't stretch ── */
.widget #via-btn-row {
  display: flex;
  align-items: center;
  margin-top: 8px;
  width: auto;
}


/* ══════════════════════════════════════════════════════════
   UBER-STYLE ROUTE: tight FROM/TO, floating + pill, compact VIA
   Visual only; addVia / rmVia / toggleVia logic untouched.
   ══════════════════════════════════════════════════════════ */

/* Route card is the positioning context for the pill */
.widget .w-route-box { position: relative; }

/* Keep typed text clear of the floating pill (From/To only) */
.widget .w-route-box > .w-field-row .w-inp {
  padding-right: 36px;
  width: 100%;
  box-sizing: border-box;
}

/* FROM/TO sit tightly together; only real rows take vertical space */
.widget .w-route-box > * + * { margin-top: 8px; }

/* ── + pill rail: zero height, sits right before the To row ──
   Because it has height:0 + margin:0 it reserves NO layout space;
   the pill itself floats centered on the divider line. */
.widget #via-btn-row {
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  width: 100%;
  position: relative;
  overflow: visible;
  pointer-events: none;
}

/* ── Uber-style floating + pill (w-7 h-7) ── */
.widget .w-add-stop {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #111827;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.widget .w-add-stop::before {
  content: "+";
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.widget .w-add-stop:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* ── VIA rows: compact, immediately visible (my-1.5) ── */
.widget .w-via-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin: 6px 0;
}

.widget .w-via-row .w-lbl {
  flex: 0 0 auto;
  font-size: 0.6rem;
  font-weight: 700;
  color: #6b7280 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* VIA input: h-9 px-3 rounded-lg text-xs */
.widget .w-via-row .w-inp {
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  height: 36px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #111827;
  outline: none;
  box-sizing: border-box;
}
.widget .w-via-row .w-inp::placeholder { color: #9ca3af; }
.widget .w-via-row .w-inp:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

/* VIA delete: w-7 h-7, right-aligned, flex-shrink-0 */
.widget .w-via-row .w-rm {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 6px;
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.widget .w-via-row .w-rm:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* ════════════════════════════════════════════════════════════
   LUXURY DARK THEME — high-end private hire / chauffeur
   Visual-only. No JS, state, or backend logic touched.
   ════════════════════════════════════════════════════════════ */

:root {
  --lux-bg: #0B0B0C;
  --lux-surface: #18181A;
  --lux-surface-2: #1C1C1E;
  --lux-input: #222226;
  --lux-border: #2D2D32;
  --lux-border-2: #333338;
  --lux-accent: #FFC700;
  --lux-text: #FFFFFF;
  --lux-muted: #9CA3AF;
}

/* ── Global canvas ── */
html, body {
  background: #0B0B0C;
}
::-webkit-scrollbar-thumb { background: #FFC700; }
::-webkit-scrollbar-track { background: #0B0B0C; }

/* ════════════════════════════════════════════════════════════
   1. TOP NAVIGATION — glassmorphism + electric yellow CTA
   ════════════════════════════════════════════════════════════ */
nav {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 199, 0, 0.18);
}

.nav-brand-name { color: #FFFFFF; }
.nav-brand-name-2 { color: #FFC700; }

.nav-links a { color: #FFFFFF; }
.nav-links a:hover { color: #FFC700; }
.nav-links a::after { background: #FFC700; }

.btn-book {
  background: #FFC700;
  color: #000000;
  border-radius: 999px;
  padding: 12px 30px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 199, 0, 0.35);
}
.btn-book:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   2. HERO — condensed display type, dark cinematic overlay
   ════════════════════════════════════════════════════════════ */
.hero-bg-overlay {
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.0) 60%);
}

.hero-headline {
  font-family: 'Bebas Neue', 'Anton', 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-left: 0;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  margin-bottom: 4px;
}

.hero-headline-br {
  font-family: 'Bebas Neue', 'Anton', 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #FFC700;
  margin-left: 0;
  font-size: clamp(3.0rem, 6.5vw, 5.6rem);
  margin-bottom: 0;
}

/* Yellow accent divider beneath title */
.hero-divider {
  height: 3px;
  width: 90px;
  background: #FFC700;
  margin: 26px 0 22px;
  border-radius: 999px;
}

/* Hero subtext */
.hero-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 30px;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  background: #FFC700;
  color: #000000;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 38px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(255, 199, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 199, 0, 0.45);
  background: #FFD21E;
  color: #000000;
}
.hero-cta-arrow {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  transition: transform 0.2s;
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

/* Trust / Review pill */
.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 32px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.review-stars {
  color: #FFC700;
  font-size: 0.82rem;
  letter-spacing: 3px;
  font-weight: 700;
}
.review-score {
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}
.review-label {
  color: #9CA3AF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 12px;
}

/* Mobile CTA */
.mobile-cta-btn {
  background: #FFC700;
  color: #000000;
  box-shadow: 0 10px 30px rgba(255, 199, 0, 0.35);
}
.mobile-cta-btn:active { box-shadow: 0 5px 15px rgba(255, 199, 0, 0.35); }

/* ════════════════════════════════════════════════════════════
   3. QUOTE FORM WIDGET — dark floating luxury card
   ════════════════════════════════════════════════════════════ */
.widget {
  background: #18181A;
  border: 1px solid #2D2D32;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  color-scheme: dark;
}

/* ── "GET A QUOTE" header ── */
.widget-head {
  padding: 22px 24px 6px;
  background: transparent;
}
.widget-title {
  font-family: 'Bebas Neue', 'Anton', 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

/* ── Stepper (all 3 pages) ── */
.widget .w-top-bar,
.widget .w-result-bar,
.widget .w-booking-bar {
  background: transparent;
  border-bottom: 1px solid #2D2D32;
}
.widget .w-step { color: #6B7280; }
.widget .w-top-bar .w-step:first-child,
.widget .w-result-bar .w-step:nth-child(4),
.widget .w-booking-bar .w-step:last-child {
  color: #FFC700;
  font-weight: 800;
}
.widget .w-arrow { color: #4B5563; }
.widget .w-back {
  background: #222226;
  border: 1px solid #333338;
  color: #9CA3AF;
}
.widget .w-back:hover { border-color: #FFC700; color: #FFC700; }

/* ── Shells ── */
.widget .w-shell,
.widget .w-result-shell,
.widget .w-booking-shell {
  background: transparent;
}

/* ── Route card ── */
.widget .w-route-box {
  background: #1C1C1E;
  border: 1px solid #2D2D32;
  border-radius: 16px;
}

/* ── Labels ── */
.widget .w-lbl,
.widget .w-sec,
.widget .w-fg1 label,
.widget .w-fg2 label,
.widget .w-form-sec,
.widget .w-fgroup label,
.widget .w-stat-lbl,
.widget .w-rt,
.widget .w-fare-lbl,
.widget .w-bk-title,
.widget .bs-fare-lbl {
  color: #9CA3AF;
}

/* ── Inputs / selects / textarea ── */
.widget .w-inp,
.widget .w-inp-sm,
.widget .w-sel-full,
.widget .w-sel1,
.widget .w-sel2 {
  background: #222226;
  border: 1px solid #333338;
  color: #FFFFFF;
  border-radius: 12px;
}
.widget .w-finp,
.widget .w-ftextarea {
  background: #222226;
  border: 1px solid #333338;
  color: #FFFFFF;
  border-radius: 12px;
}
.widget .w-inp:focus,
.widget .w-inp-sm:focus,
.widget .w-sel-full:focus,
.widget .w-sel1:focus,
.widget .w-sel2:focus,
.widget .w-finp:focus,
.widget .w-ftextarea:focus {
  background: #222226;
  border-color: #FFC700;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.18);
}
.widget .w-inp::placeholder,
.widget .w-inp-sm::placeholder,
.widget .w-finp::placeholder,
.widget .w-ftextarea::placeholder { color: #6B7280; }
.widget select option { background: #222226; color: #FFFFFF; }

/* readonly date/time display fields */
.widget .w-finp[readonly] {
  background: #1C1C1E !important;
  color: #9CA3AF !important;
  border-color: #2D2D32 !important;
}

/* ── Segmented controls ── */
.widget .w-radio-row {
  background: #1C1C1E;
  border: 1px solid #2D2D32;
}
.widget .w-seg-text { color: #9CA3AF; }
.widget .w-radio input:checked ~ .w-seg-bg {
  background: #FFC700;
  box-shadow: 0 2px 8px rgba(255, 199, 0, 0.35);
}
.widget .w-radio input:checked ~ .w-seg-text { color: #000000; font-weight: 800; }
.widget .w-radio:hover .w-seg-text { color: #FFFFFF; }

/* ── Return trip toggle ── */
.widget .w-check-text { color: #FFFFFF; }
.widget .w-check { border-top-color: #2D2D32; border-bottom-color: #2D2D32; }
.widget .w-switch { background: #3A3A3F; }
.widget .w-switch-knob { background: #FFFFFF; }
.widget .w-check input:checked ~ .w-switch { background: #FFC700; }
.widget .w-check input:checked ~ .w-switch .w-switch-knob { background: #000000; }

/* ── Tariff select chevron & pickup tag ── */
.widget .w-sel-full { background-color: #222226; }
.widget .w-sel1,
.widget .w-sel2 { background-color: #222226; }
.widget .w-chev { color: #9CA3AF; }
.widget .pickup-tag {
  background: #2A2A2E;
  border: 1px solid #333338;
  color: #D1D5DB;
}
.widget .ptag-dot { background: #22C55E; }
.widget .pickup-tag.later-tag .ptag-dot { background: #FFC700; }

/* ── Submit (Get Quote) ── */
.widget .w-quote-btn {
  background: #FFC700;
  color: #000000;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35);
}
.widget .w-quote-btn:hover { background: #FFD700; color: #000000; }
.widget .w-quote-btn:disabled { background: #3A3A3F; color: #6B7280; }
.widget .w-spinner {
  border-color: rgba(0, 0, 0, 0.25);
  border-top-color: #000000;
}

/* ── Errors ── */
.widget .w-error,
.widget .w-form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
}

/* ── Page 2: stats / pickup info / route / fare / breakdown ── */
.widget .w-stat,
.widget .w-pickup-info,
.widget .w-route,
.widget .w-bk,
.widget .booking-summary {
  background: #1C1C1E;
  border: 1px solid #2D2D32;
}
.widget .w-stat-val { color: #FFFFFF; }
.widget .wpi-title { color: #FFFFFF; }
.widget .wpi-detail { color: #9CA3AF; }
.widget .wpi-detail strong { color: #FFFFFF; }
.widget .w-raddr { color: #E5E7EB; }
.widget .w-rt { color: #9CA3AF; }

.widget .w-fare {
  background: #1C1C1E;
  border: 1px solid #2D2D32;
}
.widget .w-fare-amt { color: #FFC700; }
.widget .w-fare-amt sup { color: #9CA3AF; }
.widget .w-fare-note { color: #9CA3AF; }

.widget .w-bk-row { color: #9CA3AF; }
.widget .w-bk-row.tot {
  color: #FFFFFF;
  border-top-color: #2D2D32;
}

.widget .w-proceed-btn {
  background: #FFC700;
  color: #000000;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35);
}
.widget .w-proceed-btn:hover { background: #FFD700; color: #000000; }

/* ── Page 3: booking summary + form + submit ── */
.widget .bs-route { color: #D1D5DB; }
.widget .bs-route strong { color: #FFFFFF; }
.widget .bs-pickup-when { color: #9CA3AF; }
.widget .bs-fare-amt { color: #FFC700; }
.widget .bs-fare-amt sup { color: #9CA3AF; }
.widget #bsum-return-wrap { border-top-color: rgba(255, 255, 255, 0.18) !important; }
.widget #bsum-return-when { color: #FFC700 !important; }

.widget .w-form-div { background: #2D2D32; }

.widget .w-submit-btn {
  background: #FFC700;
  color: #000000;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35);
}
.widget .w-submit-btn:hover { background: #FFD700; color: #000000; }
.widget .w-submit-spinner {
  border-color: rgba(0, 0, 0, 0.25);
  border-top-color: #000000;
}

/* ── Page 3: confirmation ── */
.widget .w-confirm {
  background: transparent;
  color: #FFFFFF;
}
.widget .w-confirm-icon {
  background: #FFC700;
  color: #000000;
}
.widget .w-confirm-title { color: #FFFFFF; }
.widget .w-confirm-msg { color: #9CA3AF; }
.widget .w-confirm-msg span { color: #FFC700 !important; }
.widget .w-confirm-ref { color: #9CA3AF; }
.widget .w-confirm-ref strong { color: #FFFFFF; }
.widget .w-new-booking-btn {
  background: #FFC700;
  color: #000000;
  font-weight: 800;
}
.widget .w-new-booking-btn:hover { background: #FFD700; color: #000000; }

/* ── VIA stops (dark consistent) ── */
.widget .w-via-row .w-inp {
  background: #222226;
  border: 1px solid #333338;
  color: #FFFFFF;
}
.widget .w-via-row .w-inp::placeholder { color: #6B7280; }
.widget .w-via-row .w-inp:focus { border-color: #FFC700; box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.18); }
.widget .w-via-row .w-lbl { color: #9CA3AF !important; }
.widget .w-via-row .w-rm { color: #9CA3AF; }
.widget .w-via-row .w-rm:hover { color: #F87171; background: rgba(239, 68, 68, 0.15); }
.widget .w-add-stop {
  background: #1C1C1E;
  border: 1px solid #333338;
  color: #FFFFFF;
}
.widget .w-add-stop:hover { background: #222226; border-color: #FFC700; }

/* ── Return journey dashed divider ── */
.widget #jr-return-route-container { border-top-color: rgba(255, 255, 255, 0.18) !important; }

/* ════════════════════════════════════════════════════════════
   SERVICES band — keep dark, yelow accent kept minimal
   ════════════════════════════════════════════════════════════ */
.services-slider-section {
  background-color: #121212;
}
.services-title { color: #FFC700; }
.services-divider { background-color: #FFC700; }
.services-subtitle { color: #D1D5DB; }
.services-nav-buttons .nav-btn { color: #FFFFFF; }

/* ════════════════════════════════════════════════════════════
   CONTACT / SUPPORT section + footer — match dark luxury
   ════════════════════════════════════════════════════════════ */
.form-section {
  background: #18181A;
  border: 1px solid #2D2D32;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}
.page-heading h1 { color: #FFFFFF; }
.page-heading p { color: #9CA3AF; }

.form-input,
.form-textarea {
  background: #222226;
  border: 1px solid #333338;
  color: #FFFFFF;
  border-radius: 12px;
}
.form-input:focus,
.form-textarea:focus {
  background: #222226;
  border-color: #FFC700;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.18);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #6B7280; }
.form-group label { color: #FFFFFF; }

.btn-submit {
  background: #FFC700;
  color: #000000;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255, 199, 0, 0.35);
}
.btn-submit:hover { background: #FFD700; color: #000000; }

/* Footer */
.footer {
  background: #0B0B0C;
  border-top: 1px solid #2D2D32;
}
.footer-brand { color: #FFFFFF; }
.footer-tagline { color: #9CA3AF; }
.footer-heading { color: #FFFFFF; }
.footer-links a { color: #9CA3AF; }
.footer-links a:hover { color: #FFC700; }
.social-icon { color: #9CA3AF; }
.social-icon:hover { color: #FFC700; }
.footer-bottom { border-top-color: #2D2D32; }
.footer-bottom p { color: #9CA3AF; }
/* ════════════════════════════════════════════════════════════
   WIDGET VISUAL REFINEMENT — dark luxury spec v2
   Visual-only. Logic, handlers, fields, and values untouched.
   ════════════════════════════════════════════════════════════ */

/* ── 1. Main card: heavy ambient elevation ── */
.widget {
  background: #18181A;
  border: 1px solid #2D2D32;
  border-radius: 22px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ── 2. Header + step indicator ── */
.widget-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px 8px;
}

.widget-step {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8E8E93;
  line-height: 1;
}

/* Step number is driven by the page slide state via :has()
   (pure CSS — no JS touched). Falls back to 1 on old browsers. */
.widget-step em {
  font-style: normal;
  color: #FFC700;
  font-size: 0;
}
.widget-step em::before {
  content: "1";
  font-size: 0.62rem;
  font-weight: 700;
}
.widget:has(.pages.slide-2) .widget-step em::before { content: "2"; }
.widget:has(.pages.slide-3) .widget-step em::before { content: "3"; }

.widget-title {
  font-family: 'Bebas Neue', 'Anton', 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.1;
}

/* ── Pickup notice: uppercase tracking + yellow pin ── */
.widget .pickup-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D1D5DB;
}
.widget .pickup-tag .ptag-dot {
  background: #FFC700;
  box-shadow: 0 0 8px rgba(255, 199, 0, 0.6);
}
.widget .pickup-tag.later-tag .ptag-dot {
  background: #FFC700;
  box-shadow: 0 0 8px rgba(255, 199, 0, 0.6);
}

/* ── 3. Inputs & selects: dark matte, 10px radius, yellow focus ── */
.widget .w-lbl,
.widget .w-sec,
.widget .w-fg1 label,
.widget .w-fg2 label,
.widget .w-form-sec,
.widget .w-fgroup label {
  color: #8E8E93;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.widget .w-inp,
.widget .w-inp-sm,
.widget .w-sel-full,
.widget .w-sel1,
.widget .w-sel2,
.widget .w-finp,
.widget .w-ftextarea {
  background: #242428;
  border: 1px solid #33333A;
  border-radius: 10px;
  color: #FFFFFF;
}
.widget .w-inp::placeholder,
.widget .w-inp-sm::placeholder,
.widget .w-finp::placeholder,
.widget .w-ftextarea::placeholder { color: #66666E; }

.widget .w-inp:focus,
.widget .w-inp-sm:focus,
.widget .w-sel-full:focus,
.widget .w-sel1:focus,
.widget .w-sel2:focus,
.widget .w-finp:focus,
.widget .w-ftextarea:focus {
  background: #242428;
  border-color: #FFC700;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.18);
}

.widget .w-via-row .w-inp { border-radius: 10px; }
.widget .w-route-box .w-inp { border-radius: 10px; }
.widget .w-finp[readonly] {
  background: #1E1E22 !important;
  border-color: #2D2D32 !important;
  color: #8E8E93 !important;
}

.widget .w-chev { color: #8E8E93; }
.widget .w-sel-full { background-color: #242428; }

/* ── 4. Fare estimate: deep matte navy + cyan totals ── */
.widget .w-fare {
  background: #16222F;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 14px;
}
.widget .w-fare-lbl {
  color: #7C8DA8;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.widget .w-fare-amt { color: #60A5FA; }
.widget .w-fare-amt sup { color: #7C8DA8; }
.widget .w-fare-note { color: #7C8DA8; }

/* ── 5. Submit CTA: yellow pill, lift + brightness + arrow ── */
.widget .w-quote-btn,
.widget .w-proceed-btn,
.widget .w-submit-btn {
  background: #FFC700;
  color: #000000;
  border-radius: 9999px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255, 199, 0, 0.35);
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s, background-color 0.18s;
}
.widget .w-quote-btn:hover,
.widget .w-proceed-btn:hover,
.widget .w-submit-btn:hover {
  background: #FFD700;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 199, 0, 0.45);
}
.widget .w-quote-btn:active,
.widget .w-proceed-btn:active,
.widget .w-submit-btn:active {
  transform: translateY(0) scale(0.99);
}

/* trailing arrow on the yellow CTAs (visual only).
   .w-proceed-btn already contains "→" in its label, so skip it. */
.widget .w-quote-btn::after,
.widget .w-submit-btn::after {
  content: "→";
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  margin-left: 2px;
  transition: transform 0.18s;
}
.widget .w-quote-btn:hover::after,
.widget .w-submit-btn:hover::after {
  transform: translateX(3px);
}

/* keep spinner centered with the arrow present */
.widget .w-quote-btn .w-spinner { margin-left: 8px; }
.widget .w-submit-btn .w-submit-spinner { margin-left: 8px; }
/* ══ PIXEL-PERFECT REFERENCE REFINEMENT ══ */

/* Global vignette over the dark luxury backdrop */
.hero {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%) !important;
}

/* ── Navigation ── */
.top-nav {
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
}
.nav-links a {
  letter-spacing: 0.16em;
  font-weight: 500;
}
.nav-brand-name {
  font-family: "Bebas Neue", "Arial Narrow", "Impact", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  color: #ffffff !important;
}
.nav-brand-name-2 {
  font-family: "Bebas Neue", "Arial Narrow", "Impact", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  color: #ffc700 !important;
}
a.btn-book,
.m-btn-book {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ── Hero title block ── */
.hero-headline {
  color: #ffffff;
}
.hero-headline-br {
  color: #ffc700;
}
.hero-divider {
  width: 48px !important;
  height: 3px !important;
  background: #ffc700 !important;
}
.hero-sub {
  color: #c9c9cf;
}
.hero-cta {
  background: #ffc700;
  color: #000000 !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 12px;
}

/* ── Trust badge ── */
.review-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.review-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8a8e;
}
.review-stars {
  color: #ffc700 !important;
  font-size: 16px;
  line-height: 1;
}
.review-score {
  color: #ffffff !important;
  font-weight: 800;
}
.review-label {
  font-size: 12px;
  color: #8a8a8e;
}

/* ── Booking card container ── */
.widget {
  background: #1b1b1e !important;
  border: 1px solid #2c2c30 !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
}

/* ── Card header: title left, step right ── */
.widget-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.widget-title {
  color: #ffffff;
  font-weight: 800;
}
.widget-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #60a5fa !important;
  white-space: nowrap;
}
.widget-step::before {
  content: "STEP ";
  font-size: inherit;
}
.widget-step em {
  font-size: 0;
  font-style: normal;
  text-transform: uppercase;
}
.widget-step em::before {
  content: "1";
  font-size: 11px;
  color: #60a5fa;
}
.widget:has(.pages.slide-2) .widget-step em::before {
  content: "2";
}
.widget:has(.pages.slide-3) .widget-step em::before {
  content: "3";
}

/* ── Pickup notice ── */
.pickup-tag {
  color: #ffc700 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
}
.ptag-dot {
  background: #ffc700 !important;
  box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.18) !important;
}

/* ── Field labels ── */
.w-lbl {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  color: #8a8a8e !important;
}

/* ── Inputs ── */
.widget .w-inp,
.widget select.w-inp,
.widget select,
.widget input[type="text"],
.widget input[type="tel"],
.widget input[type="datetime-local"],
.widget input[readonly] {
  background: #121214 !important;
  border: 1px solid #2a2a2e !important;
  border-radius: 10px !important;
  color: #ffffff !important;
}
.widget .w-inp::placeholder,
.widget input::placeholder {
  color: #66666e !important;
}
.widget .w-inp:focus,
.widget select.w-inp:focus,
.widget input:focus {
  border-color: #ffc700 !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.18) !important;
}

/* ── Return journey checkbox area ── */
.widget .w-opt input[type="checkbox"] {
  accent-color: #ffc700;
}
.widget .w-opt label,
.widget label {
  color: #ffffff !important;
}

/* ── Estimated fare box ── */
.w-fare {
  background: #15202b !important;
  border: 1px solid #233242 !important;
  border-radius: 14px !important;
}
.w-fare-lbl {
  color: #60a5fa !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em;
}
.w-fare-amount {
  color: #60a5fa !important;
}
.w-fare sup,
.w-fare .w-fare-note,
.w-fare-note {
  color: #7c8da8 !important;
}

/* ── Submit / CTA buttons ── */
.widget button.w-quote-btn,
.widget button.w-proceed-btn,
.widget button.w-submit-btn {
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px !important;
  color: #000000 !important;
  background: #ffc700 !important;
}
/* ══ VISUAL & TYPOGRAPHY REFACTOR (reference match) ══ */

/* ── Headline: heavy condensed stacked display ── */
.hero-headline,
.hero-headline-br {
  font-family: 'Anton', 'Bebas Neue', 'Impact', sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 0.88 !important;
}
.hero-headline {
  color: #ffffff !important;
}
.hero-headline-br {
  color: #ffc700 !important;
  margin-top: 4px !important;
}

/* ── Widget header: heavy condensed uppercase title ── */
.widget-title {
  font-family: 'Anton', 'Bebas Neue', 'Impact', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  letter-spacing: 0.02em !important;
}

/* ── Card container border token ── */
.widget {
  border-color: #2d2d32 !important;
}

/* ── Pill toggles: solid yellow active, black uppercase text ── */
.widget .w-radio-row {
  background: #121214 !important;
  border: 1px solid #2a2a2e !important;
  border-radius: 12px !important;
}
.widget .w-seg-text {
  color: #8a8a8e !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}
.widget .w-radio input:checked ~ .w-seg-bg {
  background: #ffc700 !important;
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.35) !important;
}
.widget .w-radio input:checked ~ .w-seg-text {
  color: #000000 !important;
  font-weight: 800 !important;
}
.widget .w-radio:hover .w-seg-text {
  color: #c0c0c6 !important;
}
.widget .w-radio input:checked:hover ~ .w-seg-text {
  color: #000000 !important;
}

/* ── Return trip toggle: dark switch, white label ── */
.widget .w-check-text {
  color: #ffffff !important;
  font-weight: 600 !important;
}
.widget .w-check .w-switch {
  background: #121214 !important;
  border: 1px solid #2a2a2e !important;
}
.widget .w-check input:checked ~ .w-switch {
  background: #ffc700 !important;
  border-color: #ffc700 !important;
}
.widget .w-check input:checked ~ .w-switch .w-switch-knob {
  background: #000000 !important;
}
.widget .w-check .w-switch-knob {
  background: #8a8a8e !important;
}
/* ══ UX/UI ALIGNMENT FIX & VIA BUTTON POLISH ══ */

/* ── Left hero: unified left-aligned stack, uniform 20px rhythm ── */
.hero-left {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 20px !important;
}
.hero-left > * {
  margin: 0 !important;
}

/* ── Headline: consistent clamp size + tight line-height, no offsets ── */
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  line-height: 0.95 !important;
}
.hero-headline-br {
  font-size: clamp(2rem, 4vw, 3.6rem) !important;
  line-height: 0.95 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Hero CTA + trust badge keep left alignment ── */
.hero-cta {
  align-self: flex-start !important;
}
.hero-sub {
  text-align: left !important;
}
.review-pill {
  align-self: flex-start !important;
  margin-top: 4px !important;
}

/* ── VIA + button: interactive, yellow hover/focus, bigger target ── */
.widget .w-add-stop {
  width: 32px !important;
  height: 32px !important;
  cursor: pointer !important;
  border-radius: 9999px !important;
  background: #1c1c1e !important;
  border: 1px solid #333338 !important;
  color: #ffffff !important;
}
.widget .w-add-stop::before {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.widget .w-add-stop:hover {
  background: #2a2a2e !important;
  border-color: #ffc700 !important;
  color: #ffc700 !important;
  box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.15) !important;
}
.widget .w-add-stop:focus,
.widget .w-add-stop:focus-visible {
  outline: none !important;
  border-color: #ffc700 !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.25) !important;
}
.widget .w-add-stop:active {
  background: #ffc700 !important;
  color: #000000 !important;
  border-color: #ffc700 !important;
}

/* ── Inputs: generous padding + 44px touch height ── */
.widget .w-inp,
.widget .w-inp-sm {
  min-height: 44px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
}
.widget #jr-pickup,
.widget #jr-dropoff {
  padding-right: 44px !important;
}
.widget select.w-inp,
.widget select {
  padding-right: 36px !important;
  cursor: pointer;
}

/* ── Pill toggles: instant visual switch (no sluggish transition) ── */
.widget .w-seg-bg {
  transition: background-color 0.1s ease, box-shadow 0.1s ease !important;
}

/* -- Headline letter-spacing fix: restore breathing room -- */
.hero-headline,
.hero-headline-br {
  letter-spacing: 0.03em !important;
}
.hero-headline-br {
  word-spacing: 0.08em !important;
}

/* -- Headline letter-spacing: strong fix -- */
.hero-headline {
  letter-spacing: 0.045em !important;
  line-height: 1.02 !important;
}
.hero-headline-br {
  letter-spacing: 0.05em !important;
  word-spacing: 0.12em !important;
  line-height: 1.02 !important;
  margin-top: 6px !important;
}
/* ════════════════════════════════════════════════════════════
   SERVICES RESTORE + ALL-DEVICE RESPONSIVENESS (final pass)
   ════════════════════════════════════════════════════════════ */

/* ── Restored "Our Services" section (original design) ── */
.how-it-works-section {
  gap: clamp(28px, 5vw, 50px);
  padding: clamp(48px, 9vw, 96px) 20px;
  scroll-margin-top: 80px;
}
.how-it-works-section #services-heading {
  font-family: 'Varela Round', 'Barlow', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.how-it-works-section .container {
  font-family: 'Varela Round', 'Barlow', sans-serif;
  gap: 16px;
}
.how-it-works-section .item {
  width: clamp(180px, 22vw, 230px);
}
.how-it-works-section .layer {
  padding: clamp(14px, 2.4vw, 22px);
}
.how-it-works-section h3 {
  font-size: clamp(16px, 1.6vw, 18px);
}
.how-it-works-section p {
  font-size: clamp(13px, 1.2vw, 14px);
}
.steps-wrapper {
  gap: clamp(36px, 8vw, 120px);
}

/* ── Global device-safety rules ── */
img {
  max-width: 100%;
}
section,
main,
footer,
.hero {
  overflow-x: clip;
}
button,
.btn-book,
.hero-cta {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── Tablets and below ── */
@media (max-width: 1024px) {
  .steps-wrapper {
    gap: 48px;
  }
  .how-it-works-section .item {
    width: 200px;
  }
}

/* ── Phones ── */
@media (max-width: 768px) {
  /* Prevent iOS auto-zoom on any form field */
  .widget input,
  .widget select,
  .widget .w-inp,
  .widget .w-inp-sm,
  .form-input,
  .form-textarea,
  input,
  select,
  textarea {
    font-size: 16px;
  }
  /* Service cards stack vertically, full tap friendly width */
  .steps-wrapper {
    flex-direction: column;
    gap: 44px;
  }
  .how-it-works-section .item {
    width: min(300px, 84vw);
  }
  .how-it-works-section {
    min-height: auto;
  }
  /* Comfortable touch targets */
  .widget .w-quote-btn,
  .widget .w-proceed-btn,
  .widget .w-submit-btn,
  .hero-cta,
  .mobile-cta-btn,
  .btn-book,
  .m-btn-book {
    min-height: 48px;
  }
  .widget {
    border-radius: 20px;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .hero-inner {
    padding: 20px 12px 28px;
  }
  .widget-head {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .widget-step {
    font-size: 10px;
  }
  .widget .w-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .contact-about-section,
  .booking-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ── Tiny screens ── */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-headline-br {
    font-size: 2rem;
  }
}
/* ════════════════════════════════════════════════════════════
   SERVICES SLIDER — RESTORED YELLOW THEME + AUTO-SLIDE POLISH
   ════════════════════════════════════════════════════════════ */

.services-slider-section {
  background: #fbc02d !important;
}
.services-title {
  color: #0a0a0a !important;
}
.services-divider {
  background-color: #0a0a0a !important;
}
.services-subtitle {
  color: #0a0a0a !important;
}
.services-nav-buttons .nav-btn {
  color: #fbc02d !important;
  background-color: #0a0a0a !important;
  border: 2px solid #0a0a0a !important;
}
.nav-btn:hover {
  background-color: #333 !important;
  color: #fbc02d !important;
}
.card-number {
  color: #fbc02d !important;
}

/* Auto-slide affordance: subtle scroll progress hint at bottom */
.cards-wrapper {
  scrollbar-width: thin !important;
  scrollbar-color: rgba(10, 10, 10, 0.35) transparent !important;
}
.cards-wrapper::-webkit-scrollbar {
  display: block !important;
  height: 4px !important;
}
.cards-wrapper::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 10, 0.35) !important;
  border-radius: 999px !important;
}
.cards-wrapper::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Phones */
@media (max-width: 768px) {
  .services-slider-container {
    padding: 0 14px !important;
  }
  .services-slider-right {
    overflow-x: hidden !important;
  }
  .service-card {
    flex: 0 0 240px !important;
    height: 380px !important;
  }
  .services-title {
    font-size: 3rem !important;
  }
  .services-subtitle {
    margin-bottom: 24px !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .service-card {
    flex: 0 0 78vw !important;
    height: 360px !important;
  }
  .cards-wrapper {
    margin-right: -14px;
    padding-right: 14px;
  }
}
/* ════════════════════════════════════════════════════════════
   PAGES REFACTOR — VIDEO SHOWCASE, RESPONSIVE FORM & MOBILE LAYOUTS
   UI/visual only. No logic or fields changed.
   ════════════════════════════════════════════════════════════ */

/* ── 1. Homepage Video Showcase section ── */
.video-showcase {
  background: #121212;
  padding: clamp(48px, 8vw, 96px) 20px;
  scroll-margin-top: 100px;
}

.video-showcase__inner {
  max-width: 1230px;
  margin: 0 auto;
}
.video-showcase__title {
  font-family: 'Anton', 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffc700;
  text-align: center;
  margin: 0 0 8px;
}

.video-showcase__sub {
  color: #9ca3af;
  text-align: center;
  font-size: 1rem;
  margin: 0 0 32px;
}
.video-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #2d2d32;
  background: #000;
  min-width: 0;
}
.video-card--feature {
  grid-row: span 2;
}
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 199, 0, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── 2. Support video: ratio-aware on narrow screens ── */
video {
  max-width: 100%;
}
.booking-section .support-video video {
  object-fit: cover;
}

/* ── 3. Quote form: touch targets + stacking grids ── */
.widget .w-inp,
.widget .w-inp-sm {
  min-height: 48px !important;
}
.widget .w-radio-row {
  height: 48px;
}
.widget .w-check {
  min-height: 48px;
  align-items: center;
}
.widget,
.hero-right {
  max-width: 100%;
}

/* ── 4. About mobile: vertical story stack + prominent carousel ── */
.about-story__grid {
  min-width: 0;
}

/* ── Responsive sweep ── */
@media (max-width: 768px) {
  .video-showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }
  .video-card,
  .video-card--feature {
    grid-row: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

/* Phones */
@media (max-width: 640px) {
  /* Support page: single-column vertical stack */
  .booking-section .content-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .booking-section .support-video {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
  }
  .booking-section .support-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .booking-section .form-row {
    grid-template-columns: 1fr !important;
  }

  /* About: creative vertical layout */
  .about-story__grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    justify-items: stretch !important;
    gap: 1.5rem !important;
  }
  .about-story__portrait {
    order: -1 !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .portrait-card {
    max-width: none !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 18px !important;
    overflow: hidden;
  }
  .portrait-card__img {
    border-radius: inherit;
  }
  .about-hero__headline .line-1,
  .about-hero__headline .line-2 {
    font-size: clamp(40px, 13vw, 62px) !important;
    letter-spacing: 1px !important;
  }
  .about-stats {
    gap: 12px !important;
  }
  .about-stat {
    background: #1b1b1e;
    border: 1px solid #2d2d32;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
  }
}

/* Tiny: stack quote-form grid into a single column */
@media (max-width: 480px) {
  .widget .w-opts-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ════════════════════════════════════════════════════════════
   WIDGET LIGHT REBRAND — Uber × Apple design language
   White, crisp, professional. UI only — no logic touched.
   ════════════════════════════════════════════════════════════ */

/* ── Card: clean white surface, soft elevation ── */
.widget {
  background: #ffffff !important;
  border: 1px solid #e8e8ea !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1), 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  color: #111827 !important;
  color-scheme: light;
}

/* ── Header ── */
.widget-head {
  padding: 20px 22px 10px;
}
.widget-title {
  font-family: 'Barlow Condensed', 'Anton', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.55rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #111827 !important;
}
.widget-step {
  color: #9ca3af !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.2em !important;
}
.widget-step em::before {
  color: #9ca3af !important;
  font-size: 0.64rem !important;
}

/* ── Stepper bar ── */
.widget .w-top-bar,
.widget .w-result-bar,
.widget .w-booking-bar {
  background: #ffffff !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.widget .w-step {
  color: #9ca3af !important;
}
.widget .w-top-bar .w-step:first-child,
.widget .w-result-bar .w-step:nth-child(4),
.widget .w-booking-bar .w-step:last-child {
  color: #111827 !important;
}
.widget .w-arrow {
  color: #cbd5e1 !important;
}
.widget .w-back {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #4b5563 !important;
}
.widget .w-back:hover {
  border-color: #111827 !important;
  color: #111827 !important;
}

/* ── Labels: Apple-style muted group captions ── */
.widget .w-lbl,
.widget .w-sec,
.widget .w-fg1 label,
.widget .w-fg2 label,
.widget .w-form-sec,
.widget .w-fgroup label {
  color: #6b7280 !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}

/* ── Pickup notice: dark text, yellow pin ── */
.widget .pickup-tag {
  color: #374151 !important;
}
.widget .pickup-tag .ptag-dot,
.widget .pickup-tag.later-tag .ptag-dot {
  background: #ffc700 !important;
  box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.25) !important;
}

/* ── Inputs & selects: white fill, hairline borders ── */
.widget .w-inp,
.widget .w-inp-sm,
.widget .w-sel-full,
.widget .w-sel1,
.widget .w-sel2,
.widget .w-finp,
.widget .w-ftextarea,
.widget select,
.widget select.w-inp,
.widget input[type="text"],
.widget input[type="tel"],
.widget input[type="datetime-local"] {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  color: #111827 !important;
  min-height: 48px !important;
  padding-left: 16px;
  padding-right: 16px;
}
.widget input[readonly] {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  color: #6b7280 !important;
}
.widget .w-finp[readonly] {
  background: #f9fafb !important;
  border-color: #e5e7eb !important;
  color: #6b7280 !important;
}
.widget .w-inp::placeholder,
.widget .w-inp-sm::placeholder,
.widget .w-finp::placeholder,
.widget .w-ftextarea::placeholder,
.widget input::placeholder {
  color: #9ca3af !important;
}
.widget .w-inp:focus,
.widget .w-inp-sm:focus,
.widget .w-sel-full:focus,
.widget .w-sel1:focus,
.widget .w-sel2:focus,
.widget .w-finp:focus,
.widget .w-ftextarea:focus,
.widget select:focus,
.widget input:focus {
  background: #ffffff !important;
  border-color: #111827 !important;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1) !important;
}
.widget .w-chev {
  color: #9ca3af !important;
}

/* ── Segmented controls: iOS grouped track, black active pill ── */
.widget .w-radio-row {
  background: #f3f4f6 !important;
  border: 1px solid #ececee !important;
  border-radius: 12px !important;
}
.widget .w-seg-text {
  color: #6b7280 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}
.widget .w-radio input:checked ~ .w-seg-bg {
  background: #111111 !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.25) !important;
}
.widget .w-radio input:checked ~ .w-seg-text {
  color: #ffffff !important;
  font-weight: 800 !important;
}
.widget .w-radio:hover .w-seg-text {
  color: #111827 !important;
}
.widget .w-radio input:checked:hover ~ .w-seg-text {
  color: #ffffff !important;
}

/* ── Return trip: iOS-style switch, yellow when on ── */
.widget .w-check-text {
  color: #111827 !important;
  font-weight: 600 !important;
}
.widget .w-check .w-switch {
  background: #e5e7eb !important;
  border: 1px solid #d7d9dd !important;
}
.widget .w-check .w-switch-knob {
  background: #ffffff !important;
}
.widget .w-check input:checked ~ .w-switch {
  background: #ffc700 !important;
  border-color: #ffc700 !important;
}
.widget .w-check input:checked ~ .w-switch .w-switch-knob {
  background: #111111 !important;
}
.widget .w-opt label,
.widget label {
  color: #111827 !important;
}

/* ── Via rows + floating + button ── */
.widget .w-via-row .w-inp {
  border-radius: 12px !important;
}
.widget .w-route-box .w-inp {
  border-radius: 12px !important;
}
.widget .w-rm {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #6b7280 !important;
  border-radius: 10px !important;
}
.widget .w-rm:hover {
  background: #fee2e2 !important;
  border-color: #fca5a5 !important;
  color: #b91c1c !important;
}
.widget .w-add-stop {
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: #374151 !important;
}
.widget .w-add-stop:hover {
  background: #f9fafb !important;
  border-color: #111827 !important;
  color: #111827 !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.12) !important;
}
.widget .w-add-stop:active {
  background: #ffc700 !important;
  border-color: #ffc700 !important;
  color: #111111 !important;
}

/* ── Fare estimate: deep navy card (contrast pop) ── */
.widget .w-fare {
  background: #15202b !important;
  border: 1px solid #233242 !important;
  border-radius: 14px !important;
}
.widget .w-fare-lbl {
  color: #7c8da8 !important;
}
.widget .w-fare-amt,
.widget .w-fare-amount {
  color: #60a5fa !important;
}
.widget .w-fare sup,
.widget .w-fare-note {
  color: #7c8da8 !important;
}

/* ── CTA: single brand-yellow pill, black text ── */
.widget .w-quote-btn,
.widget .w-proceed-btn,
.widget .w-submit-btn {
  background: #ffc700 !important;
  color: #111111 !important;
  border-radius: 9999px !important;
  font-weight: 800 !important;
  min-height: 50px !important;
  box-shadow: 0 10px 24px rgba(255, 199, 0, 0.3) !important;
}
.widget .w-quote-btn:hover,
.widget .w-proceed-btn:hover,
.widget .w-submit-btn:hover {
  background: #ffd700 !important;
  box-shadow: 0 14px 30px rgba(255, 199, 0, 0.4) !important;
}
.widget .w-spinner,
.widget .w-submit-spinner {
  border-color: rgba(17, 17, 17, 0.25) !important;
  border-top-color: #111111 !important;
}

/* ── Confirmation / success screens ── */
.widget .w-confirm {
  background: #ffffff !important;
  border: 1px solid #f1f5f9 !important;
}
.widget .w-confirm-icon {
  background: #f0fdf4 !important;
  color: #16a34a !important;
}
.widget .w-confirm-title {
  color: #111827 !important;
}
.widget .w-confirm-msg {
  color: #6b7280 !important;
}
.widget .w-new-booking-btn {
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
}

/* ── Misc dark stragglers ── */
.widget .w-fgroup {
  background: #ffffff !important;
}
.widget .w-opt {
  color: #111827 !important;
}
/* ============================================================
   UBER + APPLE SYSTEM - glass, micro-interactions, responsive matrix
   Visual only. No logic, IDs, functions, or fields changed.
   ============================================================ */

/* -- 1. Frosted glass card -- */
.widget {
  position: relative;
  background: rgba(255, 255, 255, 0.9) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06) !important;
}
.widget::after {
  content: none;
}

/* -- Header: apple typography, tight tracking -- */
.widget-title {
  font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  font-size: 1.5rem !important;
}
.widget-step,
.widget-step em::before {
  color: #8e8e93 !important;
}

/* -- 2. Pill stepper / breadcrumb -- */
.widget .w-step {
  padding: 4px 10px !important;
  border-radius: 999px !important;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.widget .w-step.current,
.widget .w-top-bar .w-step:first-child,
.widget .w-result-bar .w-step:nth-child(4),
.widget .w-booking-bar .w-step:last-child {
  background: #111111 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}
.widget .w-arrow {
  font-size: 0.7rem !important;
}

/* -- 3. FROM/TO joined block: Uber dot-and-line connector -- */
.widget .w-route-box {
  position: relative;
  padding-left: 26px;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  overflow: hidden;
  background: #ffffff !important;
}
.widget .w-route-box::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  border-left: 2px dashed #cbd5e1;
  z-index: 1;
}
.widget .w-route-box .w-field-row,
.widget .w-route-box .w-via-row {
  margin: 0 !important;
  position: relative;
  z-index: 0;
}
.widget .w-route-box .w-field-row::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 36px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #94a3b8;
  z-index: 2;
  box-sizing: border-box;
}
.widget .w-route-box .w-field-row:last-child::after {
  border-color: #111111;
  background: #111111;
}
.widget .w-route-box .w-inp {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  min-height: 48px !important;
}
.widget .w-route-box .w-inp-sm,
.widget .w-route-box .w-via-row .w-inp {
  border-bottom: 1px solid #e5e7eb !important;
}
.widget .w-route-box .w-field-row:last-child .w-inp {
  border-bottom: none !important;
}
.widget .w-via-wrap {
  margin: 0 !important;
}

/* -- 4. Segmented controls: sliding thumb (Apple iOS) -- */
.widget .w-radio-row {
  position: relative;
  height: 48px !important;
  padding: 4px !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.widget .w-seg-text {
  position: relative;
  z-index: 2;
}
.widget .w-radio input:checked ~ .w-seg-bg {
  background: #111111 !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.22) !important;
}
@supports selector(:has(*)) {
  .widget .w-radio-row::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 6px);
    border-radius: 10px;
    background: #111111;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.22);
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .widget .w-radio-row:has(.w-radio:nth-child(2) input:checked)::before {
    transform: translateX(calc(100% + 6px));
  }
  .widget .w-radio input:checked ~ .w-seg-bg {
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* -- 5. Inputs: yellow focus ring, native-picker selects -- */
.widget select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 36px !important;
}
.widget .w-select-wrap {
  position: relative;
}
.widget .w-select-wrap .w-chev {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.widget .w-inp:focus,
.widget .w-inp-sm:focus,
.widget .w-sel-full:focus,
.widget .w-sel1:focus,
.widget .w-sel2:focus,
.widget select:focus,
.widget input:focus {
  border-color: #ffc700 !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.28) !important;
}

/* -- 6. Tactile press (active scale on tap) -- */
.widget button,
.widget .w-radio,
.widget .w-check {
  transition: transform 0.15s ease;
}
.widget button:active,
.widget .w-radio:active,
.widget .w-check:active {
  transform: scale(0.98);
}

/* -- 7. Error badge: Apple toast banner -- */
.widget .w-error {
  display: none;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.35);
  color: #ff3b30;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.16);
  margin: 12px 0 0 !important;
}
.widget .w-error.show {
  display: block;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: wErrIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes wErrIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- A. Desktop (>1024px): dual-column inner layout -- */
@media (min-width: 1025px) {
  .widget .w-opts-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* -- B. Tablet (768-1024px): centered adaptive container -- */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-right {
    max-width: 640px !important;
  }
  .widget {
    max-width: 640px !important;
  }
}

/* -- C. Mobile (<768px): iOS/Uber bottom-sheet format -- */
@media (max-width: 767px) {
  .widget {
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    overflow: visible !important;
  }
  /* swipe-handle indicator */
  .widget::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    z-index: 6;
  }
  /* touch-friendly 52px fields */
  .widget .w-inp,
  .widget .w-inp-sm,
  .widget select,
  .widget .w-sel-full,
  .widget .w-sel1,
  .widget .w-sel2 {
    min-height: 52px !important;
  }
  .widget .w-radio-row {
    height: 52px !important;
  }
  /* docked CTA with blur scrim */
  .widget .w-quote-btn {
    position: sticky;
    bottom: 14px;
    z-index: 30;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: rgba(255, 199, 0, 0.94) !important;
    box-shadow: 0 12px 32px rgba(255, 199, 0, 0.35) !important;
  }
}/* ============================================================
   ROUTE-BOX PERFECT ALIGNMENT - final pass
   Fixes connector axis (dots now sit ON the dashed line),
   uniform label metrics, via rows, + pill, and x delete.
   Visual only. addVia / rmVia / toggleVia untouched.
   Row model defined by this block (wins the cascade):
   label = 12px (line-height 1) + 6px gap = 18px, then the
   input (48px desktop / 52px below 768px). Every row is this,
   so From / Via / To share one vertical axis.
   ============================================================ */

/* -- Route card: left gutter = 34px carries line + nodes -- */
.widget .w-route-box {
  position: relative !important;
  padding: 14px 10px 14px 34px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

/* -- Dashed connector polyline, centre axis x = 11px -- */
.widget .w-route-box::before {
  content: "" !important;
  position: absolute !important;
  left: 10px !important;
  width: 2px !important;
  top: 63px !important;
  bottom: 63px !important;
  border-left: 2px dashed #cbd5e1 !important;
  z-index: 1 !important;
}

/* -- Node dot sits exactly ON the line (13px, border-box) -- */
.widget .w-route-box .w-field-row:not(#via-btn-row)::after,
.widget .w-route-box .w-via-row::after {
  content: "" !important;
  position: absolute !important;
  left: -29.5px !important;
  top: 35.5px !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 50% !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  border: 3px solid #94a3b8 !important;
  z-index: 2 !important;
}

/* Destination node turns solid black */
.widget .w-route-box .w-field-row:last-child::after {
  background: #111111 !important;
  border-color: #111111 !important;
}

/* No dot on the zero-height + pill rail */
.widget .w-route-box #via-btn-row::after {
  content: none !important;
}

/* -- Uniform rows: label block (12px + 6px) above the input -- */
.widget .w-route-box .w-field-row,
.widget .w-route-box .w-via-wrap,
.widget .w-route-box .w-via-row {
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 0 !important;
}

.widget .w-route-box .w-field-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.widget .w-route-box .w-lbl {
  display: block !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
  line-height: 1 !important;
  height: 12px !important;
  margin: 0 0 6px !important;
  flex: 0 0 auto;
}

/* -- Inputs: joined card rows, separators between stops -- */
.widget .w-route-box .w-inp {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  min-height: 48px !important;
  width: 100%;
  box-sizing: border-box;
}

.widget .w-route-box .w-field-row:last-child .w-inp {
  border-bottom: none !important;
}

/* Top separator on "To" once via stops exist */
.widget .w-route-box #via-inputs:not(:empty) ~ .w-field-row:last-child .w-inp {
  border-top: 1px solid #e5e7eb !important;
}

/* -- Via row: grid so label sits above, x button on the right -- */
.widget .w-route-box .w-via-row {
  display: grid !important;
  grid-template-columns: 1fr 34px !important;
  grid-template-areas: "lbl lbl" "inp rm" !important;
  column-gap: 6px !important;
  align-items: center !important;
}

.widget .w-route-box .w-via-row .w-lbl {
  grid-area: lbl !important;
}

.widget .w-route-box .w-via-row .w-inp {
  grid-area: inp !important;
  justify-self: stretch;
  min-width: 0;
}

/* -- x delete button: aligned flush right, vertical centre -- */
.widget .w-route-box .w-via-row .w-rm {
  grid-area: rm !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  color: #6b7280 !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.widget .w-route-box .w-via-row .w-rm:hover {
  background: #fee2e2 !important;
  border-color: #fca5a5 !important;
  color: #b91c1c !important;
}

.widget .w-route-box .w-via-row .w-rm:active {
  transform: scale(0.94);
}

/* -- + pill: floats on the divider line, right aligned -- */
.widget .w-route-box #via-btn-row {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  width: 100% !important;
  position: relative !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.widget .w-route-box .w-add-stop {
  position: absolute !important;
  right: 6px !important;
  top: 0 !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  width: 34px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 9999px !important;
  background: #111111 !important;
  border: 1px solid #111111 !important;
  color: #ffffff !important;
  font-size: 0 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.25) !important;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease !important;
}

.widget .w-route-box .w-add-stop::before {
  content: "+" !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.widget .w-route-box .w-add-stop:hover {
  background: #ffc700 !important;
  border-color: #ffc700 !important;
  color: #111111 !important;
  box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.25) !important;
}

.widget .w-route-box .w-add-stop:focus-visible {
  outline: none !important;
  border-color: #ffc700 !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.4) !important;
}

.widget .w-route-box .w-add-stop:active {
  transform: translateY(-50%) scale(0.92) !important;
}

/* -- Smooth entry when a via row is added -- */
.widget .w-route-box .w-via-row {
  animation: jrViaIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes jrViaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- Mobile: 52px touch inputs, dots + line re-keyed -- */
@media (max-width: 767px) {
  .widget .w-route-box .w-inp {
    min-height: 52px !important;
  }

  .widget .w-route-box .w-field-row:not(#via-btn-row)::after,
  .widget .w-route-box .w-via-row::after {
    top: 37.5px !important;
  }

  .widget .w-route-box::before {
    top: 65px !important;
    bottom: 65px !important;
  }

  .widget .w-route-box .w-via-row .w-rm {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
  }

  .widget .w-route-box .w-via-row {
    grid-template-columns: 1fr 44px !important;
  }

  .widget .w-route-box .w-add-stop {
    width: 44px !important;
    height: 44px !important;
  }

  .widget .w-route-box .w-add-stop::before {
    font-size: 24px !important;
  }
}
/* ============================================================
   BOOKING FORM (STEP 3) - modernized styling
   Visual only. No HTML structure, input types, placeholders,
   labels, or wording changed; all-caps labels kept via
   text-transform. Winning cascade, appended last.
   ============================================================ */

/* -- 1. Labels: softened all-caps (12-13px, medium, muted) -- */
.widget .w-booking-shell .w-fgroup label {
  font-size: 0.75rem !important;        /* 12px */
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important; /* wording unchanged */
  color: #6b7280 !important;
}

.widget .w-booking-shell .w-form-sec {
  font-size: 0.81rem !important;        /* 13px */
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
  margin: 22px 0 12px !important;
}

.widget .w-booking-shell > .w-form-sec:first-of-type {
  margin-top: 14px !important;
}

/* -- 2. Inputs: white fill, hairline grey, soft radius, gold focus -- */
.widget .w-booking-shell .w-finp,
.widget .w-booking-shell .w-ftextarea {
  width: 100% !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  min-height: 48px !important;
  color: #111827 !important;
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  outline: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.widget .w-booking-shell .w-ftextarea {
  min-height: 104px !important;
  resize: vertical;
  line-height: 1.5;
}

.widget .w-booking-shell .w-finp:hover,
.widget .w-booking-shell .w-ftextarea:hover {
  border-color: #d1d5db !important;
}

.widget .w-booking-shell .w-finp:focus,
.widget .w-booking-shell .w-ftextarea:focus {
  border-color: #ffc700 !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.28) !important;
}

.widget .w-booking-shell .w-finp::placeholder,
.widget .w-booking-shell .w-ftextarea::placeholder {
  color: #9ca3af !important;
}

.widget .w-booking-shell .w-finp[readonly] {
  background: #f9fafb !important;
  color: #6b7280 !important;
  border-color: #eef0f3 !important;
}

/* -- 3. Journey summary card: dark, lifted, rounded, price glows -- */
.widget .w-booking-shell .booking-summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  background: linear-gradient(180deg, #1d2632 0%, #0f1620 100%) !important;
  border: 1px solid #2b3a4a !important;
  border-radius: 8px !important;
  padding: 16px 18px !important;
  margin: 0 0 18px !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.widget .w-booking-shell .bs-route {
  flex: 1 !important;
  color: #cbd5e1 !important;
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
}

.widget .w-booking-shell .bs-route strong {
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

.widget .w-booking-shell .bs-route .bs-pickup-when {
  color: #60a5fa !important;
  font-size: 0.72rem !important;
  margin-top: 4px !important;
}

.widget .w-booking-shell .bs-fare {
  text-align: right !important;
  flex-shrink: 0 !important;
  margin-left: 12px !important;
}

.widget .w-booking-shell .bs-fare-amt {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  color: #ffc700 !important;
  text-shadow: 0 0 22px rgba(255, 199, 0, 0.45) !important;
}

.widget .w-booking-shell .bs-fare-amt sup {
  font-size: 0.75rem !important;
  vertical-align: super !important;
  color: #ffc700 !important;
  text-shadow: 0 0 14px rgba(255, 199, 0, 0.4) !important;
}

.widget .w-booking-shell .bs-fare-lbl {
  color: #94a3b8 !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-top: 4px !important;
}

/* -- 4. Layout & spacing: breathable grid, clean dividers -- */
.widget .w-booking-shell .w-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 16px !important;
  row-gap: 14px !important;
  margin: 0 0 4px !important;
}

.widget .w-booking-shell .w-form-grid.full {
  grid-template-columns: 1fr !important;
}

.widget .w-booking-shell .w-fgroup {
  gap: 8px !important;
}

.widget .w-booking-shell .w-form-div {
  height: 1px !important;
  background: #e5e7eb !important;
  margin: 24px 0 2px !important;
}

.widget .w-booking-shell .w-form-error {
  background: rgba(255, 59, 48, 0.08) !important;
  border: 1px solid rgba(255, 59, 48, 0.3) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  color: #ef4444 !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin-top: 14px !important;
}

/* -- 5. Submit button: pill, centered, lift on hover -- */
.widget .w-booking-shell .w-submit-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 24px !important;
  min-height: 50px !important;
  margin-top: 18px !important;
  border: none !important;
  border-radius: 9999px !important;
  background: #ffc700 !important;
  color: #111111 !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(255, 199, 0, 0.35) !important;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease !important;
}

.widget .w-booking-shell .w-submit-btn:hover {
  background: #f0b400 !important;
  box-shadow: 0 14px 30px rgba(255, 199, 0, 0.45) !important;
  transform: translateY(-1px) !important;
}

.widget .w-booking-shell .w-submit-btn:active {
  transform: translateY(0) scale(0.97) !important;
}

.widget .w-booking-shell .w-submit-btn:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* -- 6. Full-width single column on very small screens -- */
@media (max-width: 480px) {
  .widget .w-booking-shell .w-form-grid {
    grid-template-columns: 1fr !important;
  }
}
/* On The Road: expand videos to full 16:9 frame (original size) */
.video-showcase__grid {
  grid-template-rows: repeat(2, auto) !important;
}
.video-showcase .video-card {
  aspect-ratio: 16 / 9 !important;
}

/* On The Road: compact full-view - videos smaller but uncropped 16:9 */
.video-showcase {
  padding: 44px 20px 52px !important;
}
.video-showcase__inner {
  max-width: 860px !important;
}
.video-showcase__title {
  font-size: clamp(1.6rem, 4.2vw, 2.6rem) !important;
  margin-bottom: 22px !important;
}
.video-showcase__grid {
  gap: 14px !important;
}
/* ============================================================
   BOOKING FORM PREMIUM PASS - final polish
   Visible field borders, WCAG placeholders, branded focus,
   route + pill off the divider, single-icon CTAs, <768 stacking.
   Visual only. No logic, IDs, handlers, or API hooks changed.
   ============================================================ */

/* -- 1. Global field polish: distinct borders + subtle fill -- */
.widget .w-finp,
.widget .w-ftextarea,
.widget .w-inp-sm,
.widget .w-sel-full,
.widget .w-sel1,
.widget .w-sel2,
.widget select {
  background: #fbfcfd !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  color: #111827 !important;
  caret-color: #111111 !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease !important;
}

.widget .w-finp:hover,
.widget .w-ftextarea:hover,
.widget .w-inp-sm:hover,
.widget .w-sel-full:hover,
.widget .w-sel1:hover,
.widget .w-sel2:hover,
.widget select:hover {
  border-color: #94a3b8 !important;
}

.widget .w-finp:focus,
.widget .w-ftextarea:focus,
.widget .w-inp-sm:focus,
.widget .w-sel-full:focus,
.widget .w-sel1:focus,
.widget .w-sel2:focus,
.widget select:focus,
.widget input:focus {
  background: #ffffff !important;
  border-color: #ffc700 !important;
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.32) !important;
}

/* WCAG AA placeholders (4.5:1+) */
.widget .w-finp::placeholder,
.widget .w-ftextarea::placeholder,
.widget .w-inp-sm::placeholder,
.widget .w-sel-full::placeholder,
.widget .w-sel1::placeholder,
.widget .w-sel2::placeholder,
.widget input::placeholder,
.widget textarea::placeholder,
.widget select::placeholder {
  color: #6b7280 !important;
  opacity: 1 !important;
}

/* -- 2. Route box: + pill floats clear of the divider -- */
.widget .w-route-box .w-add-stop {
  right: 8px !important;
  top: 8px !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  z-index: 12 !important;
}

.widget .w-route-box .w-add-stop:active {
  transform: translateY(-50%) scale(0.92) !important;
}

/* -- 3. Single-icon CTAs: kill the trailing CSS arrows -- */
.widget .w-quote-btn::after,
.widget .w-submit-btn::after {
  content: none !important;
}

/* -- 4. Consistent label rhythm above fields -- */
.widget .w-booking-shell .w-fgroup label,
.widget .w-fg1 label,
.widget .w-fg2 label {
  margin: 0 0 8px !important;
  line-height: 1.35 !important;
}

.widget #return-time-pickers > div:first-child {
  margin-bottom: 8px !important;
}

/* -- 5. Mobile-first stacking + touch targets (<768px) -- */
@media (max-width: 767px) {
  .widget .w-booking-shell .w-form-grid {
    grid-template-columns: 1fr !important;
  }

  .widget .w-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .widget .w-bottom .w-quote-btn {
    width: 100% !important;
  }

  .widget .w-route-box .w-add-stop {
    top: 8px !important;
    width: 44px !important;
    height: 44px !important;
  }

  .widget .w-finp,
  .widget .w-ftextarea,
  .widget .w-inp-sm,
  .widget select,
  .widget .w-sel-full,
  .widget .w-sel1,
  .widget .w-sel2 {
    min-height: 52px !important;
  }
}

/* ── SUPPORT PAGE: EDGE-TO-EDGE VIDEO PLAYLIST PANEL ── */
.booking-section .support-video {
  margin: 0;
  padding: 0;
  background: #000;
  border-radius: 0;
  box-shadow: none;
}
.booking-section .support-video video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: opacity;
}
.booking-section .support-video video.is-live { opacity: 1; }
@media (max-width: 1024px) {
  .booking-section .support-video video { position: absolute; inset: 0; height: 100%; }
}

/* ============================================================
   BOOKING FORM (STEP 1) - route card final alignment polish
   Keeps existing design/colours; fixes pill centering, dot-line
   geometry, field padding rhythm, label typography. Appended
   last so it wins the cascade.
   ============================================================ */

/* -- Card: 8px rhythm padding, right gutter 24px for the pill -- */
.widget .w-route-box {
  padding: 16px 24px 16px 34px !important;
}

/* -- Field rows: label (12px + 8px gutter + 48px input = equal -- */
.widget .w-route-box .w-field-row {
  gap: 0 !important;
  align-items: stretch !important;
}

.widget .w-route-box .w-lbl {
  height: 12px !important;
  min-height: 12px !important;
  line-height: 12px !important;
  margin: 0 0 8px !important;
  padding-left: 12px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #374151 !important;
  text-align: left !important;
}

/* -- Inputs: shared 12px text gutter, 48px right gutter clears -- -- */
.widget .w-route-box .w-inp {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 48px 0 12px !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.widget .w-route-box .w-inp::placeholder {
  color: #9ca3af !important;
  opacity: 1 !important;
}

/* -- Divider spans full width minus the left lane + right gutter -- */
.widget .w-route-box .w-field-row:first-child .w-inp {
  border-bottom: 1px solid #e5e7eb !important;
}

/* -- Timeline connector runs dot-centre to dot-centre (60..144) -- */
.widget .w-route-box::before {
  left: 10px !important;
  top: 60px !important;
  bottom: 40px !important;
}

/* -- + pill: sits in the 36px channel between the two inputs, -- 
   centred (y=102) and flush 24px from the card's right edge -- */
.widget .w-route-box #via-btn-row {
  height: 16px !important;
}

.widget .w-route-box .w-add-stop {
  right: 24px !important;
  top: 18px !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
}

.widget .w-route-box .w-add-stop:active {
  transform: translateY(-50%) scale(0.92) !important;
}

/* -- Mobile: 52px touch fields, 44px pill, re-keyed line/dots -- */
@media (max-width: 767px) {
  .widget .w-route-box .w-inp {
    height: 52px !important;
    min-height: 52px !important;
  }
  .widget .w-route-box::before {
    top: 60px !important;
    bottom: 44px !important;
  }
  .widget .w-route-box .w-add-stop {
    top: 18px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* ── Liquid Glass UI (contacts.html) ── */
.cg-body,
.cg-body *,
.cg-body *::before,
.cg-body *::after {
  box-sizing: border-box;
}

.cg-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-x: hidden;
  font-family: "Barlow", "Inter", system-ui, -apple-system, sans-serif;
  color: #1E2029;
}

.cg-bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.cg-video-tint {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: rgba(15, 18, 26, 0.32);
}

.cg-panel {
  position: relative;
  width: 100%;
  max-width: 680px;
  padding: 34px 40px 38px;
  border-radius: 30px;
  text-align: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 2.2);
  overflow: hidden;
  isolation: isolate;
}

.cg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5), inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
  filter: url(#glass-distortion);
  pointer-events: none;
}

.cg-panel > * {
  position: relative;
  z-index: 1;
}

.cg-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  text-align: left;
}

.cg-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1E2029;
}

.cg-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.cg-brand-name {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1E2029;
}

.cg-brand-name-2 {
  color: #F59E0B;
}

.cg-back {
  font-size: 0.9rem;
  font-weight: 600;
  color: #40506B;
  text-decoration: none;
  border: 1px solid rgba(30, 32, 41, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.2), background 0.3s ease;
}

.cg-back:hover,
.cg-back:focus-visible {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  outline: none;
}

.cg-title {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: #1E2029;
}

.cg-title span {
  color: #F59E0B;
}

.cg-subtitle {
  margin: 10px auto 26px;
  font-size: 1rem;
  font-weight: 500;
  color: #3B4659;
  max-width: 460px;
}

.cg-dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cg-dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 76px;
  text-decoration: none;
  border-radius: 22px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 8px rgba(30, 32, 41, 0.12), inset 1px 1px 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2),
    box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.cg-dock-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.cg-dock-ig {
  width: 40px;
  height: 40px;
  color: #E1306C;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.cg-dock-lbl {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #334155;
}

.cg-dock-item:hover,
.cg-dock-item:focus-visible {
  transform: scale(1.28);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  outline: none;
}

.cg-dock-item:hover img,
.cg-dock-item:focus-visible img,
.cg-dock-item:hover .cg-dock-ig,
.cg-dock-item:focus-visible .cg-dock-ig {
  transform: scale(1.12);
}

.cg-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 26px;
}

.cg-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 1px 1px 1px 0 rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: #1E2029;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

a.cg-meta-item:hover,
a.cg-meta-item:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  outline: none;
}

.cg-meta-lbl {
  font-family: "Barlow", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}

.cg-meta-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E2029;
  word-break: break-word;
}

.cg-help-pill {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #1E2029, #2B3242);
  border-radius: 999px;
  padding: 15px 30px;
  box-shadow: 0 8px 30px rgba(30, 32, 41, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  cursor: default;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

@media (max-width: 640px) {
  .cg-panel {
    padding: 26px 20px 30px;
    border-radius: 24px;
  }
  .cg-dock {
    gap: 12px;
  }
  .cg-dock-item {
    width: 66px;
    padding: 12px 8px;
    border-radius: 18px;
  }
  .cg-dock-item img,
  .cg-dock-ig {
    width: 34px;
    height: 34px;
  }
  .cg-meta-item {
    padding: 10px 8px;
  }
}

@media (max-width: 480px) {
  .cg-body {
    padding: 14px;
    align-items: flex-start;
  }
  .cg-panel {
    margin-top: 12px;
  }
  .cg-brand {
    margin-bottom: 16px;
  }
  .cg-back {
    display: none;
  }
  .cg-dock {
    gap: 8px;
  }
  .cg-dock-item {
    width: 58px;
    padding: 10px 6px;
    border-radius: 16px;
  }
  .cg-dock-item img,
  .cg-dock-ig {
    width: 30px;
    height: 30px;
  }
  .cg-dock-lbl {
    font-size: 0.62rem;
  }
  .cg-meta {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cg-help-pill {
    padding: 13px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 349px) {
  .cg-dock {
    gap: 6px;
  }
  .cg-dock-item {
    width: 52px;
  }
  .cg-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 640px) {
  .cg-body {
    align-items: flex-start;
  }
  .cg-panel {
    margin-top: 14px;
  }
  .cg-meta {
    margin: 18px 0 16px;
  }
}

/* Liquid-glass filter drops out for reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .cg-panel::before {
    filter: none;
  }
  .cg-dock-item:hover,
  .cg-dock-item:focus-visible {
    transform: none;
  }
  .cg-dock-item:hover img,
  .cg-dock-item:focus-visible img,
  .cg-dock-item:hover .cg-dock-ig,
  .cg-dock-item:focus-visible .cg-dock-ig {
    transform: none;
  }
  a.cg-meta-item:hover,
  a.cg-meta-item:focus-visible {
    transform: none;
  }
  .cg-back:hover,
  .cg-back:focus-visible {
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO LEFT: centered (tablets → small phones)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-left {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-headline {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-headline-br {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-sub {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta,
  .review-pill {
    align-self: center !important;
  }

  .mobile-cta-btn {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 14px !important;
  }
}

/* ══ Smooth anchoring below the fixed nav ══ */
section {
  scroll-margin-top: 96px;
}
