:root{
    --navy:#0f2a4a;
    --navy-deep:#081a30;
    --gold:#c9974b;
    --gold-soft:#e3c184;
    --cream:#f7f4ed;
    --paper:#fffdf9;
    --ink:#1c2b3a;
    --ink-soft:#5b6b7c;
    --line: rgba(15,42,74,0.12);
    --radius: 18px;
    --shadow: 0 20px 50px -20px rgba(8,26,48,0.35);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  /* Prevents grid/flex children (inputs, cards, columns) from forcing the
     layout wider than the screen because of their own content's minimum
     width — the #1 cause of horizontal-scroll / zoom-drift bugs on mobile. */
  *, *::before, *::after{min-width:0;}
  html{scroll-behavior:smooth; overflow-x:hidden; width:100%;}
  body{
    font-family:'Plus Jakarta Sans', sans-serif;
    background:var(--cream);
    color:var(--ink);
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    color:var(--navy);
    letter-spacing:-0.01em;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .container{width:100%; max-width:1180px; margin:0 auto; padding:0 24px;}
  ::selection{background:var(--gold-soft); color:var(--navy-deep);}

  /* -------- Route line motif (signature element) -------- */
  .route-line{
    position:relative;
  }
  .route-line::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:2px;
    background-image: linear-gradient(var(--gold-soft) 60%, transparent 0%);
    background-size: 2px 16px;
    background-repeat: repeat-y;
    transform: translateX(-50%);
    opacity:0.5;
  }

  /* -------- Top notice bar -------- */
  .topbar{
    background:var(--navy-deep);
    color:#e8ecf1;
    font-size:13px;
    text-align:center;
    padding:9px 16px;
    letter-spacing:0.02em;
  }
  .topbar b{color:var(--gold-soft);}

  /* -------- Nav -------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(247,244,237,0.85);
    backdrop-filter:blur(14px) saturate(160%);
    border-bottom:1px solid var(--line);
    transition:box-shadow .3s ease;
  }
  header.scrolled{box-shadow:0 8px 30px -18px rgba(8,26,48,0.4);}
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 24px;
    max-width:1180px; margin:0 auto;
  }
  .brand{display:flex; align-items:center; gap:10px;}
  .brand img{height:46px; width:46px; object-fit:contain;}
  .brand-text{display:flex; flex-direction:column; line-height:1.05;}
  .brand-text strong{font-family:'Fraunces',serif; font-size:19px; color:var(--navy); letter-spacing:0.02em;}
  .brand-text span{font-size:10px; letter-spacing:0.18em; color:var(--gold); font-weight:700;}
  .nav-links{display:flex; gap:32px; align-items:center;}
  .nav-links a{
    font-size:14.5px; font-weight:600; color:var(--ink-soft);
    position:relative; padding:4px 0;
    transition:color .2s ease;
  }
  .nav-links a::after{
    content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background:var(--gold); transition:width .25s ease;
  }
  .nav-links a:hover{color:var(--navy);}
  .nav-links a:hover::after{width:100%;}
  .nav-cta{
    display:flex; align-items:center; gap:14px;
  }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 22px; border-radius:100px; font-weight:700; font-size:14.5px;
    border:1.5px solid transparent; cursor:pointer; transition:all .22s ease;
    white-space:nowrap;
  }
  .btn-gold{ background:var(--gold); color:var(--navy-deep); box-shadow:0 10px 24px -10px rgba(201,151,75,0.7);}
  .btn-gold:hover{ transform:translateY(-2px); box-shadow:0 14px 28px -10px rgba(201,151,75,0.8);}
  .btn-outline{ border-color:var(--navy); color:var(--navy); background:transparent;}
  .btn-outline:hover{ background:var(--navy); color:#fff;}
  .btn-ghost{background:transparent; color:var(--navy); border:1.5px solid var(--line);}
  .hamburger{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
  .hamburger span{width:24px; height:2px; background:var(--navy); border-radius:2px;}

  /* -------- Hero -------- */
  .hero{
    position:relative;
    padding:74px 24px 60px;
    overflow:hidden;
  }
  .hero-inner{
    max-width:1180px; margin:0 auto;
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:12.5px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--gold); background:rgba(201,151,75,0.12);
    padding:8px 16px; border-radius:100px; margin-bottom:22px;
  }
  .eyebrow::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); display:block;}
  .hero h1{
    font-size:clamp(38px, 5.4vw, 62px);
    line-height:1.06;
    font-weight:600;
    margin-bottom:22px;
  }
  .hero h1 em{font-style:italic; color:var(--gold); font-weight:500;}
  .hero p.lead{
    font-size:17.5px; color:var(--ink-soft); max-width:480px; line-height:1.65; margin-bottom:34px;
  }
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px;}
  .hero-stats{display:flex; gap:34px; flex-wrap:wrap;}
  .stat b{
    display:block; font-family:'Fraunces',serif; font-size:30px; color:var(--navy); font-weight:600;
  }
  .stat span{font-size:12.5px; color:var(--ink-soft); letter-spacing:0.03em;}

  .hero-visual{
    position:relative;
    border-radius:28px;
    background:linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding:38px;
    box-shadow:var(--shadow);
    isolation:isolate;
    /* no overflow:hidden here on purpose — the floaty badges sit
       partially outside this box and must not be clipped */
  }
  .hero-visual::before{
    content:"";
    position:absolute; inset:0;
    border-radius:28px;
    background:
      radial-gradient(circle at 85% 10%, rgba(201,151,75,0.35), transparent 45%),
      radial-gradient(circle at 10% 90%, rgba(201,151,75,0.18), transparent 40%);
    z-index:0;
  }
  .hero-card{
    position:relative; z-index:1;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    padding:22px;
    backdrop-filter:blur(6px);
  }
  .hero-card img{border-radius:12px; width:100%; height:190px; object-fit:cover;}
  .hero-card-title{color:#fff; font-family:'Fraunces',serif; font-size:22px; margin:16px 0 4px;}
  .hero-card-sub{color:rgba(255,255,255,0.6); font-size:13.5px; margin-bottom:14px;}
  .hero-card-price{display:flex; align-items:baseline; justify-content:space-between;}
  .hero-card-price b{color:var(--gold-soft); font-family:'Fraunces',serif; font-size:26px;}
  .hero-card-price span{color:rgba(255,255,255,0.5); font-size:12.5px;}
  .floaty-badge{
    position:absolute; z-index:2; background:var(--paper); border-radius:14px;
    padding:12px 16px; box-shadow:0 16px 30px -14px rgba(8,26,48,0.5);
    display:flex; align-items:center; gap:10px; font-size:13px; font-weight:700; color:var(--navy);
    animation: floaty 4.5s ease-in-out infinite;
  }
  .floaty-badge svg{flex-shrink:0;}
  .badge-1{ top:-16px; right:-14px; animation-delay:0s;}
  .badge-2{ bottom:-18px; left:-18px; animation-delay:1.2s;}
  @keyframes floaty{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-9px);}
  }

  /* -------- Trust strip -------- */
  .trust-strip{
    background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:26px 24px;
  }
  .trust-grid{
    max-width:1180px; margin:0 auto;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:22px;
  }
  .trust-item{display:flex; align-items:center; gap:12px; flex:1; min-width:190px;}
  .trust-item .ic{
    width:42px; height:42px; border-radius:12px; background:rgba(15,42,74,0.06);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--navy);
  }
  .trust-item h4{font-size:14.5px; color:var(--navy); margin-bottom:2px;}
  .trust-item p{font-size:12.5px; color:var(--ink-soft);}

  /* -------- Section shared -------- */
  section{padding:96px 24px;}
  .section-head{
    max-width:640px; margin:0 auto 56px; text-align:center;
  }
  .section-head .eyebrow{margin-bottom:16px;}
  .section-head h2{font-size:clamp(30px,4vw,44px); font-weight:600; margin-bottom:14px;}
  .section-head p{color:var(--ink-soft); font-size:16px; line-height:1.6;}

  /* -------- Fleet -------- */
  .fleet{background:var(--paper);}
  .filter-row{
    display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:44px;
  }
  .filter-btn{
    padding:10px 20px; border-radius:100px; border:1.5px solid var(--line); background:transparent;
    font-size:13.5px; font-weight:700; color:var(--ink-soft); cursor:pointer; transition:all .2s ease;
  }
  .filter-btn.active, .filter-btn:hover{
    background:var(--navy); color:#fff; border-color:var(--navy);
  }
  .fleet-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:26px;
  }
  .car-card{
    background:var(--cream); border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);
    transition:transform .3s ease, box-shadow .3s ease; opacity:0; transform:translateY(24px);
  }
  .car-card.reveal{opacity:1; transform:translateY(0);}
  .car-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
  .car-media{position:relative; height:180px; overflow:hidden; background:linear-gradient(135deg,#dfe4ea,#c9d2da);}
  .car-media img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
  .car-card:hover .car-media img{transform:scale(1.06);}
  .car-tag{
    position:absolute; top:12px; left:12px; background:var(--gold); color:var(--navy-deep);
    font-size:11px; font-weight:800; letter-spacing:0.04em; padding:5px 11px; border-radius:100px;
  }
  .car-body{padding:20px 20px 22px;}
  .car-body h3{font-size:19px; margin-bottom:4px;}
  .car-specs{display:flex; gap:14px; margin:12px 0 16px; flex-wrap:wrap;}
  .car-specs span{font-size:12px; color:var(--ink-soft); display:flex; align-items:center; gap:5px;}
  .car-footer{display:flex; align-items:end; justify-content:space-between; padding-top:14px; border-top:1px dashed var(--line);}
  .car-price b{font-family:'Fraunces',serif; font-size:22px; color:var(--navy);}
  .car-price span{font-size:11.5px; color:var(--ink-soft); display:block;}
  .car-book{
    padding:9px 16px; border-radius:100px; background:var(--navy); color:#fff; font-size:12.5px; font-weight:700;
    border:none; cursor:pointer; transition:background .2s ease;
  }
  .car-book:hover{background:var(--gold); color:var(--navy-deep);}

  /* -------- How it works -------- */
  .steps{background:var(--cream);}
  .steps-grid{
    max-width:1000px; margin:0 auto;
    display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative;
  }
  .steps-grid::before{
    content:""; position:absolute; top:34px; left:12%; right:12%; height:2px;
    background-image: linear-gradient(90deg, var(--gold-soft) 50%, transparent 0%);
    background-size:14px 2px; background-repeat:repeat-x;
    z-index:0;
  }
  .step{position:relative; z-index:1; text-align:center; padding:0 14px;}
  .step-num{
    width:68px; height:68px; border-radius:50%; background:var(--navy); color:var(--gold-soft);
    font-family:'Fraunces',serif; font-size:24px; font-weight:600;
    display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
    border:5px solid var(--cream); box-shadow:0 8px 20px -8px rgba(8,26,48,0.4);
  }
  .step h4{font-size:16.5px; margin-bottom:8px;}
  .step p{font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

  /* -------- Booking -------- */
  .booking{
    background:var(--navy);
    background-image: radial-gradient(circle at 90% 0%, rgba(201,151,75,0.18), transparent 45%);
    color:#fff;
  }
  .booking .section-head h2, .booking .section-head p{color:#fff;}
  .booking .section-head p{color:rgba(255,255,255,0.65);}
  .booking-wrap{
    max-width:920px; margin:0 auto; background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.12); border-radius:24px; padding:40px;
    backdrop-filter:blur(6px);
  }
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  .field{display:flex; flex-direction:column; gap:8px;}
  .field.full{grid-column:1/-1;}
  .field label{font-size:12.5px; font-weight:700; letter-spacing:0.04em; color:var(--gold-soft); text-transform:uppercase;}
  .field input, .field select, .field textarea{
    background:rgba(255,255,255,0.08); border:1.5px solid rgba(255,255,255,0.18); border-radius:12px;
    padding:13px 15px; color:#fff; font-size:14.5px; font-family:inherit; outline:none; transition:border-color .2s ease;
  }
  .field input::placeholder, .field textarea::placeholder{color:rgba(255,255,255,0.4);}
  .field input:focus, .field select:focus, .field textarea:focus{border-color:var(--gold);}
  .field select option{color:#111;}
  .estimate-box{
    margin-top:26px; padding:22px 24px; border-radius:16px; background:rgba(0,0,0,0.18);
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  }
  .estimate-box .label{font-size:12.5px; color:rgba(255,255,255,0.6); letter-spacing:0.03em;}
  .estimate-box .amount{font-family:'Fraunces',serif; font-size:32px; color:var(--gold-soft); font-weight:600;}
  .estimate-box .amount small{font-size:13px; color:rgba(255,255,255,0.5); font-family:'Plus Jakarta Sans',sans-serif; font-weight:500;}
  .booking-submit{margin-top:22px; width:100%; padding:16px; font-size:15.5px;}

  /* -------- Fleet compare / why choose -------- */
  .why{background:var(--paper);}
  .why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:980px; margin:0 auto;}
  .why-card{
    display:flex; gap:16px; padding:26px; border-radius:18px; background:var(--cream); border:1px solid var(--line);
    transition:transform .25s ease;
  }
  .why-card:hover{transform:translateY(-4px);}
  .why-card .ic{
    width:48px; height:48px; border-radius:12px; background:var(--navy); color:var(--gold-soft);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .why-card h4{font-size:16.5px; margin-bottom:6px;}
  .why-card p{font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

  /* -------- Testimonials -------- */
  .testi{background:var(--cream); overflow:hidden;}
  .testi-track-wrap{position:relative; max-width:800px; margin:0 auto; overflow:hidden; border-radius:20px;}
  .testi-track{display:flex; transition:transform .5s cubic-bezier(.65,0,.35,1);}
  .testi-slide{min-width:100%; padding:6px;}
  .testi-card{
    background:var(--paper); border-radius:20px; padding:38px; border:1px solid var(--line); text-align:center;
  }
  .testi-stars{color:var(--gold); font-size:18px; margin-bottom:16px; letter-spacing:3px;}
  .testi-card p.quote{font-family:'Fraunces',serif; font-size:20px; font-style:italic; color:var(--navy); line-height:1.5; margin-bottom:20px;}
  .testi-person{display:flex; align-items:center; justify-content:center; gap:12px;}
  .testi-avatar{
    width:42px; height:42px; border-radius:50%; background:var(--navy); color:var(--gold-soft);
    display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Fraunces',serif;
  }
  .testi-person h5{font-size:14px; color:var(--navy);}
  .testi-person span{font-size:12px; color:var(--ink-soft);}
  .testi-dots{display:flex; gap:8px; justify-content:center; margin-top:26px;}
  .testi-dots button{width:8px; height:8px; border-radius:50%; border:none; background:var(--line); cursor:pointer; transition:all .2s ease;}
  .testi-dots button.active{background:var(--gold); width:22px; border-radius:5px;}

  /* -------- FAQ -------- */
  .faq{background:var(--paper);}
  .faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
  .faq-item{border:1px solid var(--line); border-radius:14px; overflow:hidden; background:var(--cream);}
  .faq-q{
    display:flex; align-items:center; justify-content:space-between; padding:19px 22px; cursor:pointer;
    font-weight:700; font-size:15px; color:var(--navy);
  }
  .faq-q .plus{
    width:26px; height:26px; border-radius:50%; border:1.5px solid var(--line); flex-shrink:0;
    display:flex; align-items:center; justify-content:center; transition:transform .3s ease, background .3s ease;
    font-size:15px; color:var(--gold); font-weight:700;
  }
  .faq-item.open .plus{transform:rotate(135deg); background:var(--navy); color:#fff; border-color:var(--navy);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
  .faq-a p{padding:0 22px 20px; font-size:14px; color:var(--ink-soft); line-height:1.65;}

  /* -------- CTA band -------- */
  .cta-band{
    background:linear-gradient(120deg, var(--navy), var(--navy-deep));
    padding:64px 24px; text-align:center; position:relative; overflow:hidden;
  }
  .cta-band::before{
    content:""; position:absolute; inset:0;
    background:radial-gradient(circle at 20% 30%, rgba(201,151,75,0.22), transparent 40%);
  }
  .cta-band h2{color:#fff; font-size:clamp(26px,3.4vw,38px); margin-bottom:14px; position:relative;}
  .cta-band p{color:rgba(255,255,255,0.65); margin-bottom:30px; position:relative;}
  .cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative;}

  /* -------- Footer -------- */
  footer{background:var(--navy-deep); color:rgba(255,255,255,0.7); padding:60px 24px 24px;}
  .footer-grid{
    max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px;
    padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand{display:flex; gap:10px; align-items:center; margin-bottom:14px;}
  .footer-brand img{height:40px; width:40px;}
  .footer-brand strong{font-family:'Fraunces',serif; color:#fff; font-size:18px;}
  .footer-col h5{color:#fff; font-size:13.5px; letter-spacing:0.05em; text-transform:uppercase; margin-bottom:16px;}
  .footer-col a{display:block; font-size:13.5px; margin-bottom:10px; color:rgba(255,255,255,0.6); transition:color .2s ease;}
  .footer-col a:hover{color:var(--gold-soft);}
  .footer-bottom{
    max-width:1180px; margin:0 auto; padding-top:22px; display:flex; justify-content:space-between;
    flex-wrap:wrap; gap:10px; font-size:12.5px; color:rgba(255,255,255,0.4);
  }

  /* -------- WhatsApp float -------- */
  .wa-float{
    position:fixed; bottom:24px; right:24px; z-index:200;
    width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
    display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -8px rgba(0,0,0,0.4);
    animation:pulse 2.4s infinite;
    transform:translateZ(0);
    -webkit-transform:translateZ(0);
    bottom:calc(24px + env(safe-area-inset-bottom, 0px));
    right:calc(24px + env(safe-area-inset-right, 0px));
  }
  @keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);}
    70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
  }

  /* -------- reveal on scroll -------- */
  .reveal-init{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
  .reveal-init.in{opacity:1; transform:translateY(0);}

  /* -------- Mobile -------- */
  @media (max-width:980px){
    .hero-inner{grid-template-columns:1fr;}
    .fleet-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:1fr;}
    .form-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:760px){
    .nav-links{
      position:fixed; top:70px; left:0; right:0; background:var(--paper);
      flex-direction:column; padding:22px 24px; gap:18px; border-bottom:1px solid var(--line);
      transform:translateY(-140%); transition:transform .3s ease; box-shadow:0 20px 30px -20px rgba(0,0,0,0.2);
    }
    .nav-links.open{transform:translateY(0);}
    .nav-cta .btn-outline{display:none;}
    .hamburger{display:flex;}
    .fleet-grid{grid-template-columns:1fr;}
    .steps-grid{grid-template-columns:1fr 1fr; row-gap:36px;}
    .steps-grid::before{display:none;}
    .footer-grid{grid-template-columns:1fr;}
    .trust-grid{justify-content:flex-start;}
  }
  @media (prefers-reduced-motion: reduce){
    *{animation:none !important; transition:none !important;}
  }
