
  :root{
    --black:#141004;
    --forest-deep:#0D2B1B;
    --forest:#173a25;
    --forest-mid:#446B56;
    --gold:#E3B76E;
    --gold-light:#edc98c;
    --gold-dark:#c99a4c;
    --cream:#FAF5E5;
    --khaki:#EEE9C4;
    --olive:#9FA273;
    --olive-deep:#77815B;
    --ink:#374d3f;
    --muted:#4A4A4A;
    --line:#e3e0cf;
    --text-on-dark:#E6E1BD;
    --shadow: 0 18px 40px -16px rgba(10,23,18,0.4);
    --radius: 16px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  /* Internal links now sometimes point at another page + a #section (e.g.
     about.html#about-conversation), and the browser's native anchor-scroll
     would otherwise land the target right under the fixed header. */
  :target, [id]{ scroll-margin-top:100px; }
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--cream);
    line-height:1.65;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Playfair Display', serif;
    color:#374d3f;
    line-height:1.2;
  }
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  button{font-family:inherit; cursor:pointer; border:none;}
  input,select,textarea{font-family:inherit; font-size:0.95rem;}
  .container{max-width:1180px; margin:0 auto; padding:0 24px;}
  .kicker{
    text-transform:uppercase;
    letter-spacing:2.5px;
    font-size:0.78rem;
    font-weight:700;
    color:var(--gold);
  }
  section.page{display:none;}
  section.page.active{display:block; animation:pageIn .55s cubic-bezier(.22,.68,0,1.01);}
  @keyframes pageIn{
    from{opacity:0; transform:translateY(22px);}
    to{opacity:1; transform:translateY(0);}
  }

  /* ============ PAGE FADE TRANSITION ("Peace of Mind") ============ */
  main{
    opacity:1;
    transition:opacity .12s cubic-bezier(.4,0,.2,1);
    will-change:opacity;
  }
  main.page-fade-out{opacity:0;}

  /* ============ SCROLL REVEAL ============ */
  .reveal{opacity:0; transform:translateY(24px); transition:opacity .55s cubic-bezier(.25,.7,.4,1), transform .55s cubic-bezier(.25,.7,.4,1); will-change:opacity, transform;}
  .reveal.in-view{opacity:1; transform:translateY(0);}
  .reveal-stagger.in-view{transition-delay:var(--d,0ms);}
  @media(prefers-reduced-motion: reduce){
    .reveal, section.page.active, main{transition:none !important; animation:none !important; opacity:1 !important; transform:none !important;}
  }

  /* ============ NAVBAR ============ */
  header{
    position:sticky; top:0; z-index:1000;
    background:rgba(10,23,18,0.97);
    /* backdrop-filter removed: was breaking position:fixed for #navLinks (creates new containing block) */
    box-shadow:0 4px 20px rgba(0,0,0,0.25);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    max-width:1400px; margin:0 auto; padding:10px 24px; position:relative;
  }
  .brand-center{
    position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
    display:flex; align-items:center; justify-content:center; z-index:2;
  }
  .brand-center img{height:64px; width:64px; object-fit:contain; filter:drop-shadow(0 2px 6px rgba(0,0,0,0.35));}

  .nav-right{display:flex; align-items:center; gap:18px;}
  .nav-email{color:var(--gold-light); font-size:0.85rem; font-weight:500; white-space:nowrap;}
  .nav-email:hover{color:#fff;}
  .nav-book-btn{padding:10px 22px; font-size:0.85rem; white-space:nowrap;}
  .nav-book-mobile{display:none !important;visibility:hidden;}

  @media(max-width:1100px){ .nav-email{display:none;} }

  .nav-links{display:flex; align-items:center; gap:2px;}
  .nav-links a{
    color:#d8dfd0; font-weight:600; font-size:0.9rem;
    padding:10px 16px; border-radius:30px;
    transition:all .25s ease;
  }
  .nav-links a:hover{color:#fff; background:rgba(255,255,255,0.08);}
  .nav-links a.active{color:var(--black); background:var(--gold-light);}

  .nav-toggle{display:none; flex-direction:column; gap:5px; background:none;}
  .nav-toggle span{width:26px; height:3px; background:var(--gold-light); border-radius:3px;}

  @media(max-width:840px){
    nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:10px 16px;
    }
    /* ---- Slide-in drawer (from the right) ---- */
    .nav-links{
      position:fixed; top:0; right:0; left:auto; bottom:0;
      width:min(320px, 82vw);
      background:linear-gradient(180deg, var(--black) 0%, #1a1a0a 100%);
      flex-direction:column; align-items:stretch;
      padding:96px 20px 28px; gap:0;
      transform:translateX(100%);
      transition:transform .45s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events:none;
      border-left:1px solid rgba(201,162,39,0.15);
      box-shadow:-16px 0 48px rgba(0,0,0,0.45);
      max-height:100vh;
      overflow-y:auto;
      z-index:1001;
    }
    .nav-links.open{transform:translateX(0); pointer-events:auto;}
    .nav-links li{margin:0;}
    .nav-links a{
      text-align:left; padding:14px 16px;
      font-size:1rem; font-weight:600;
      color:#d8dfd0;
      border-radius:12px;
      transition:all .2s ease;
      display:block;
      letter-spacing:0.3px;
    }
    .nav-links a:hover{
      color:#fff;
      background:rgba(227,183,110,0.08);
      padding-left:20px;
    }
    .nav-links a.active{
      color:var(--black);
      background:var(--gold-light);
    }
    .nav-links a::after{display:none;}
    .nav-toggle{display:flex; margin-left:auto; width:32px; height:32px; align-items:center; justify-content:center;}
    .nav-toggle span{width:22px; height:2.5px; background:var(--gold-light); border-radius:2px; transition:all .3s ease;}
    .nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(5px, 5px);}
    .nav-toggle.open span:nth-child(2){opacity:0;}
    .nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(5px, -5px);}
    .brand-center{
      position:static;
      transform:none;
      left:auto; top:auto;
      margin-right:auto;
      order:-1;
    }
    .brand-center img{height:44px; width:44px;}
    .nav-right{display:none;}
    .nav-book-btn{padding:8px 16px; font-size:0.78rem;}
    .nav-book-mobile{
      display:inline-flex !important; align-items:center; justify-content:center;
      padding:9px 16px; font-size:0.8rem; white-space:nowrap;
      margin-left:auto; visibility:visible;
    }
    .nav-toggle{margin-left:12px;}
  }

  /* ---- Backdrop overlay behind the mobile drawer ---- */
  .nav-backdrop{
    position:fixed; inset:0;
    background:rgba(6,12,8,0.55);
    backdrop-filter:blur(3px);
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .4s ease, visibility .4s ease;
    z-index:999;
  }
  .nav-backdrop.open{opacity:1; visibility:visible; pointer-events:auto;}

  @media(max-width:840px){
    .hero{
      padding:80px 20px 100px;
      min-height:auto;
    }
    .hero h1{
      font-size:clamp(1.8rem, 8vw, 2.5rem);
      letter-spacing:0.5px;
    }
    .hero p.lead{
      font-size:0.95rem;
      max-width:100%;
    }
    .hero-actions{
      flex-direction:column;
      gap:12px;
    }
    .hero-actions .btn{
      width:100%;
      max-width:280px;
    }
    .hero-stats{
      gap:24px;
      margin-top:36px;
    }
    .hero-stats div strong{
      font-size:1.4rem;
    }
  }

  /* ============ BUTTONS ============ */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding:15px 30px; border-radius:40px;
    font-weight:700; font-size:0.92rem; letter-spacing:0.3px;
    transition:all .28s ease;
  }
  .btn-gold{background:var(--gold); color:#1a1405;}
  .btn-gold:hover{background:var(--gold-light); transform:translateY(-3px); box-shadow:0 16px 30px -10px rgba(201,162,39,0.5);}
  .btn-outline-gold{background:transparent; color:var(--gold-light); border:2px solid var(--gold);}
  .btn-outline-gold:hover{background:rgba(201,162,39,0.12); transform:translateY(-3px);}
  .btn-forest{background:var(--forest); color:#fff;}
  .btn-forest:hover{background:var(--forest-mid); transform:translateY(-3px);}
  .btn-whatsapp{background:#22c35e; color:#06210f;}
  .btn-whatsapp:hover{background:#2fe072; transform:translateY(-3px);}
  .btn-block{width:100%;}
  .btn:disabled{opacity:0.55; cursor:not-allowed; transform:none !important;}

  /* ============ HERO ============ */
  .hero{
    position:relative;
    background:
      linear-gradient(180deg, rgba(5,10,4,0.65) 0%, rgba(5,10,4,0.35) 30%, rgba(5,10,4,0.45) 70%, rgba(5,10,4,0.85) 100%),
      url('../images/site/hero3.webp') center 60%/cover no-repeat;
    color:#fff;
    padding:110px 24px 130px;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  /* Phones get a smaller, lighter version of the same photo — big win on slow mobile connections. */
  @media(max-width:640px){
    .hero{
      background:
        linear-gradient(180deg, rgba(5,10,4,0.65) 0%, rgba(5,10,4,0.35) 30%, rgba(5,10,4,0.45) 70%, rgba(5,10,4,0.85) 100%),
        url('../images/site/hero3-mobile.webp') center 60%/cover no-repeat;
    }
  }
  .hero::before{
    content:'';
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
    background-size:46px 46px;
    mask-image:radial-gradient(ellipse at center, black, transparent 72%);
  }
  .hero-inner{position:relative; z-index:2; max-width:820px; margin:0 auto; text-align:center; width:100%; padding:0 10px;}
  .hero h1{
    color:#fff; font-size:clamp(2rem, 5.6vw, 3.4rem);
    margin:18px 0 20px; text-transform:uppercase; letter-spacing:1px;
  }
  .hero p.lead{font-size:1.08rem; color:var(--text-on-dark); max-width:560px; margin:0 auto 34px;}
  .hero-actions{display:flex; gap:16px; flex-wrap:wrap; justify-content:center;}
  .hero-stats{display:flex; gap:40px; margin-top:50px; flex-wrap:wrap; justify-content:center;}
  .hero-stats div strong{display:block; font-size:1.7rem; font-family:'Playfair Display',serif; color:var(--gold-light);}
  .hero-stats div span{font-size:0.78rem; color:#aebba1; letter-spacing:1px; text-transform:uppercase;}

  /* ============ WHY CHOOSE (olive) ============ */
  .why-strip{background:#fff; padding:0;}
  .why-flex{display:flex; min-height:420px;}
  .why-quote{
    flex:0 0 40%; padding:60px 44px;
    background:linear-gradient(180deg, rgba(13,30,22,0.4) 0%, rgba(13,30,22,0.28) 22%, rgba(13,43,27,0.5) 60%, rgba(13,43,27,0.93) 100%), url('../images/site/ambassador-namirembe-nashira.webp');
    background-size:cover; background-position:center 18%;
    display:flex; flex-direction:column; justify-content:flex-end;
    min-height:520px; position:relative;
  }

  .why-quote .kicker{color:var(--gold-light); opacity:0.85;}
  .why-quote h2{color:var(--text-on-dark); font-size:clamp(1.3rem,2.4vw,1.7rem); margin-top:10px; text-transform:none; font-style:italic; font-weight:400;}
  .why-quote .ambassador-tag{display:flex; flex-direction:column; margin-top:18px; padding-top:16px; border-top:1px solid rgba(255,255,255,0.25);}
  .why-quote .ambassador-name{color:var(--gold-light); font-family:'Playfair Display',serif; font-size:1.1rem; letter-spacing:0.4px;}
  .why-quote .ambassador-title{color:var(--text-on-dark); opacity:0.75; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.6px; margin-top:2px;}
  .why-quote .btn{margin-top:24px; align-self:flex-start;}
  .why-grid{
    flex:1; background:var(--cream); padding:50px 48px 50px 60px;
    position:relative; display:flex; flex-direction:column;
  }
  .why-grid-head{
    display:flex; align-items:center; gap:10px; margin-bottom:8px;
    color:var(--olive-deep); font-size:0.78rem; text-transform:uppercase; letter-spacing:1px; font-weight:600;
  }
  .why-grid-head .quote-mark{
    font-family:'Playfair Display',serif; font-size:2.4rem; color:var(--gold-dark);
    line-height:0.5; margin-top:10px;
  }
  .why-item{
    display:flex; gap:20px; align-items:flex-start;
    padding:22px 0; position:relative;
  }
  .why-item::before{
    content:""; position:absolute; left:21px; top:52px; bottom:-4px; width:1px;
    background:var(--line);
  }
  .why-item:last-child::before{display:none;}
  .why-item .ico{
    flex:none; width:44px; height:44px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:rgba(119,129,91,0.12); color:var(--olive-deep);
    font-size:1.25rem; position:relative; z-index:1;
  }
  .why-item h4{font-size:1.02rem; color:var(--forest-deep); margin-bottom:5px; font-style:italic; font-weight:500;}
  .why-item p{font-size:0.86rem; color:var(--muted); line-height:1.5;}
  @media(max-width:900px){
    .why-flex{flex-direction:column;}
    .why-quote{flex:none;}
    .why-grid{padding:40px 24px;}
  }

  /* ============ CTA STRIP (dark) ============ */
  .cta-dark{
    position:relative;
    background:
      linear-gradient(160deg, rgba(13,43,27,0.90), rgba(20,16,4,0.94)),
      url('../images/site/morning.jpg') center 40%/cover no-repeat;
    color:#fff; padding:90px 24px; text-align:center;
  }
  .cta-dark .kicker{color:var(--gold);}
  .cta-dark h2{color:var(--gold-light); font-size:clamp(1.6rem,3.6vw,2.4rem); max-width:820px; margin:14px auto 20px; text-transform:uppercase;}
  .cta-dark p{color:var(--text-on-dark); max-width:600px; margin:0 auto 30px;}

  /* ============ SECTIONS ============ */
  .section{padding:84px 24px;}
  .section-head{text-align:center; max-width:680px; margin:0 auto 50px;}
  .section-head h2{font-size:clamp(1.6rem,3.2vw,2.3rem); margin-top:10px;}
  .section-head p{color:var(--muted); margin-top:14px; font-size:1.01rem;}
  .alt-bg{background:#fff;}
  .olive-bg{background:var(--olive); color:var(--black);}
  .olive-bg h2, .olive-bg h3{color:var(--forest-deep);}
  .olive-bg p{color:#333d2c;}

  /* ============ ABOUT ============ */
  .about-grid{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:center;
    max-width:1180px; margin:0 auto;
  }
  .about-visual{
    position:relative; overflow:hidden;
    background:
      linear-gradient(175deg, rgba(10,23,18,0.55) 0%, rgba(10,23,18,0.88) 100%),
      url('../images/site/about-panel.webp') center/cover no-repeat;
    border-radius:28px; padding:60px 30px; text-align:center; min-height:340px;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    box-shadow:var(--shadow); border:1px solid rgba(201,162,39,0.25);
  }
  .about-visual .logo-badge{
    width:96px; height:96px; border-radius:50%; background:rgba(10,23,18,0.75);
    border:1px solid rgba(201,162,39,0.5); display:flex; align-items:center; justify-content:center;
    margin:0 auto 20px; backdrop-filter:blur(2px);
  }
  .about-visual .logo-badge img{height:64px; width:64px; object-fit:contain; margin:0; filter:none;}
  .about-visual h4{color:var(--gold-light); font-size:1.15rem;}
  .about-visual p{color:var(--text-on-dark); font-size:0.88rem; margin-top:8px;}
  .about-copy h3{font-size:1.3rem; margin:24px 0 10px; color:var(--forest-deep);}
  .about-copy h3:first-child{margin-top:0;}
  .about-copy p{color:var(--muted);}
  @media(max-width:900px){ .about-grid{grid-template-columns:1fr; gap:36px;} }

  .pillars{display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:20px;}
  .pillar{background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px;}
  .pillar strong{display:flex; align-items:center; gap:8px; color:var(--forest-deep); margin-bottom:6px; font-family:'Playfair Display',serif; font-size:1.02rem;}
  .pillar strong svg{color:var(--olive-deep); flex-shrink:0;}
  .pillar span{color:var(--muted); font-size:0.87rem;}
  @media(max-width:560px){ .pillars{grid-template-columns:1fr;} }

  /* ============ SERVICES ============ */
  .services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; max-width:1180px; margin:0 auto;}
  .service-card{
    position:relative;
    background:linear-gradient(165deg, var(--forest-deep), var(--black));
    color:#fff; border-radius:var(--radius);
    border:1px solid rgba(201,162,39,0.18);
    box-shadow:0 10px 26px -16px rgba(10,23,18,0.5);
    transition:transform .3s ease, box-shadow .3s ease;
    display:flex; flex-direction:column;
  }
  .service-card:hover{transform:translateY(-8px); box-shadow:var(--shadow); border-color:rgba(201,162,39,0.5);}
  .service-card:hover .service-thumb img{transform:scale(1.08);}
  .service-thumb{position:relative; height:170px; overflow:hidden; background:var(--black); border-radius:var(--radius) var(--radius) 0 0;}
  .service-thumb img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease; display:block;}
  .service-thumb::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,23,18,0.15) 0%, rgba(10,23,18,0.85) 100%);
  }
  .service-icon{
    position:absolute; left:20px; top:144px; z-index:2;
    width:52px; height:52px; border-radius:14px;
    background:var(--black); display:flex; align-items:center; justify-content:center;
    font-size:1.4rem; color:var(--gold); border:1px solid rgba(201,162,39,0.45);
    box-shadow:0 8px 18px -6px rgba(0,0,0,0.5);
  }
  .service-body{padding:38px 26px 28px;}
  .service-card h3{font-size:1.1rem; margin-bottom:10px; color:var(--gold-light);}
  .service-card p{color:var(--text-on-dark); font-size:0.9rem;}
  .service-card .btn{margin-top:20px; font-size:0.82rem; padding:12px 20px;}
  @media(max-width:920px){ .services-grid{grid-template-columns:1fr 1fr;} }
  @media(max-width:600px){ .services-grid{grid-template-columns:1fr;} }

  /* ============ FAQ ============ */
  /* ============ STATS BAR ============ */
  .stats-strip{
    position:relative; padding:60px 24px; color:#fff; text-align:center;
    background:
      linear-gradient(180deg, rgba(10,20,8,0.75) 0%, rgba(10,20,8,0.9) 100%),
      url('../images/site/logist.jpg') center/cover no-repeat;
  }
  .stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1000px; margin:0 auto;}
  .stat-item .ico{
    width:56px; height:56px; border-radius:50%; border:1px solid rgba(232,197,60,0.5);
    display:flex; align-items:center; justify-content:center; margin:0 auto 14px; font-size:1.4rem; color:var(--gold);
  }
  .stat-item strong{display:block; font-size:2rem; font-family:'Playfair Display',serif; color:var(--gold);}
  .stat-item span{font-size:0.85rem; color:var(--text-on-dark);}
  @media(max-width:700px){ .stats-grid{grid-template-columns:1fr 1fr; gap:32px;} }

  /* ============ DIRECTORS ============ */
  .directors-strip{background:linear-gradient(180deg, var(--olive) 0%, var(--forest-deep) 100%); padding:80px 24px;}
  .directors-strip .section-head h2{color:#fff;}
  .directors-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:36px; max-width:1200px; margin:0 auto;}
  .director-card{text-align:center;}
  .director-card img{
    width:130px; height:130px; border-radius:50%; object-fit:cover; margin:0 auto 18px;
    border:3px solid rgba(232,197,60,0.5);
  }
  .director-card img.pos-left{object-position:20% 22%;}
  .director-card h4{color:#fff; font-size:1.05rem; margin-bottom:4px;}
  .director-card .role{color:var(--gold); font-size:0.85rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; display:block; margin-bottom:12px;}
  .director-card p{color:var(--text-on-dark); font-size:0.88rem; margin-bottom:16px;}
  @media(max-width:860px){ .directors-grid{grid-template-columns:1fr 1fr;} }
  @media(max-width:640px){ .directors-grid{grid-template-columns:1fr; gap:44px;} }

  .cso-message{display:grid; grid-template-columns:340px 1fr; align-items:stretch; max-width:1000px; margin:0 auto; background:linear-gradient(165deg, var(--forest-deep), var(--black)); border-radius:26px; overflow:hidden; box-shadow:var(--shadow); border:1px solid rgba(201,162,39,0.25);}
  .cso-message-photo{position:relative; min-height:420px;}
  .cso-message-photo img{width:100%; height:100%; object-fit:cover; object-position:center 15%; display:block;}
  .cso-message-photo .cso-photo-overlay{position:absolute; inset:0; background:linear-gradient(0deg, rgba(6,24,15,0.82) 0%, rgba(6,24,15,0) 45%);}
  .cso-message-photo .cso-photo-caption{position:absolute; left:22px; right:22px; bottom:18px;}
  .cso-message-body{padding:44px 40px; position:relative;}
  .cso-message-body .cso-quote-mark{position:absolute; top:6px; right:26px; font-size:6rem; color:var(--gold); opacity:0.12; font-family:'Playfair Display',serif; line-height:1;}
  @media(max-width:820px){ .cso-message{grid-template-columns:1fr;} .cso-message-photo{min-height:320px;} .cso-message-body{padding:36px 26px;} }

  /* ============ INTERVIEW / CONVERSATION TRANSCRIPT ============ */
  .interview-strip{
    position:relative; padding:84px 24px;
    background:
      linear-gradient(180deg, rgba(13,43,27,0.92) 0%, rgba(20,16,4,0.95) 100%),
      url('../images/stock/fleet-hero.jpg') center 30%/cover no-repeat;
  }
  .interview-strip .section-head .kicker{color:var(--gold);}
  .interview-strip .section-head h2{color:#fff;}
  .interview-strip .section-head p{color:var(--text-on-dark);}
  .interview-strip .section-head span.kicker{color:var(--gold);}
  .interview-card{max-width:820px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:26px; padding:48px 44px; box-shadow:var(--shadow); position:relative; overflow:hidden;}
  .interview-card::before{content:'\201C'; position:absolute; top:-10px; right:30px; font-family:'Playfair Display',serif; font-size:8rem; color:var(--gold); opacity:0.1; line-height:1;}
  .interview-line{display:grid; grid-template-columns:60px 1fr; gap:18px; position:relative; z-index:1;}
  .interview-line + .interview-line{margin-top:30px; padding-top:30px; border-top:1px dashed var(--line);}
  .interview-line .avatar{width:60px; height:60px; border-radius:50%; object-fit:cover; border:2px solid var(--gold);}
  .interview-line .avatar-fallback{width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--gold-light); background:linear-gradient(160deg, var(--forest-deep), var(--black)); border:2px solid var(--gold);}
  .interview-line .speaker-name{font-family:'Playfair Display',serif; color:var(--forest-deep); font-size:1.05rem; line-height:1.2;}
  .interview-line .speaker-role{display:block; font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; color:var(--gold-dark); margin:2px 0 8px;}
  .interview-line p{color:var(--ink); line-height:1.75; font-size:0.98rem;}
  .interview-foot{text-align:center; margin-top:40px;}
  @media(max-width:640px){
    .interview-card{padding:32px 22px; border-radius:20px;}
    .interview-line{grid-template-columns:48px 1fr; gap:12px;}
    .interview-line .avatar, .interview-line .avatar-fallback{width:48px; height:48px;}
  }
  .interview-video-wrap{display:flex; justify-content:center; margin:0 auto;}
  .interview-video-wrap video{display:block; width:auto; height:min(74vh, 640px); max-width:100%; aspect-ratio:9/16; border-radius:26px; box-shadow:var(--shadow); background:#000; object-fit:cover;}
  @media(max-width:640px){ .interview-video-wrap video{width:min(78vw, 320px); height:auto; border-radius:20px;} }

  /* ============ HOME CONVERSATION TEASER (compact) ============ */
  .convo-teaser{
    position:relative; padding:64px 24px; color:#fff; text-align:center; overflow:hidden;
    background:
      linear-gradient(165deg, rgba(13,43,27,0.93) 0%, rgba(20,16,4,0.95) 100%),
      url('../images/site/chauf.jpg') center 35%/cover no-repeat;
  }
  .convo-teaser .kicker{color:var(--gold);}
  .convo-teaser h2{color:#fff; font-size:clamp(1.4rem,3vw,1.9rem); max-width:640px; margin:12px auto 30px;}
  .convo-teaser-exchange{max-width:640px; margin:0 auto 32px; text-align:left; display:flex; flex-direction:column; gap:16px;}
  .convo-teaser-line{display:flex; align-items:flex-start; gap:14px; background:rgba(255,255,255,0.05); border:1px solid rgba(201,162,39,0.22); border-radius:14px; padding:16px 18px;}
  .convo-teaser-line img, .convo-teaser-line .cd-avatar{width:38px; height:38px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); flex-shrink:0;}
  .convo-teaser-line .cd-avatar{display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-size:0.85rem; color:var(--gold-light); background:rgba(227,183,110,0.14);}
  .convo-teaser-line strong{display:block; color:var(--gold-light); font-family:'Playfair Display',serif; font-size:0.92rem; margin-bottom:3px;}
  .convo-teaser-line p{color:var(--text-on-dark); font-size:0.93rem; line-height:1.55; margin:0;}
  .convo-teaser-line.reverse{flex-direction:row-reverse; text-align:right;}
  @media(max-width:600px){ .convo-teaser-line.reverse{flex-direction:row; text-align:left;} }
  @media(max-width:640px){ .convo-teaser{padding:48px 20px;} }

  /* ============ FLEET ============ */
  .fleet-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:1180px; margin:0 auto;}
  .fleet-card{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); position:relative; border:1px solid rgba(232,197,60,0.18);}
  .fleet-card img{width:100%; height:280px; object-fit:cover; display:block;}
  .fleet-card .fleet-label{
    position:absolute; left:0; right:0; bottom:0; padding:20px 22px;
    background:linear-gradient(0deg, rgba(1,34,22,0.92) 0%, transparent 100%);
    color:#fff;
  }
  .fleet-card .fleet-label h4{color:var(--gold-light); font-size:1.05rem;}
  .fleet-card .fleet-label p{color:var(--text-on-dark); font-size:0.85rem; margin-top:4px;}
  @media(max-width:760px){ .fleet-grid{grid-template-columns:1fr;} }

  /* ============ EXPERIENCES ============ */
  .exp-grid{display:grid; grid-template-columns:1fr 1fr; gap:26px; max-width:1180px; margin:0 auto;}
  .exp-card{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); background:#fff; border:1px solid var(--line);}
  .exp-card img{width:100%; height:230px; object-fit:cover; display:block;}
  .exp-card .exp-body{padding:26px 24px;}
  .exp-card .exp-days{color:var(--gold); font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px;}
  .exp-card h3{font-size:1.2rem; margin:8px 0 10px; color:var(--forest-deep);}
  .exp-card p{color:var(--muted); font-size:0.9rem; margin-bottom:18px;}
  @media(max-width:760px){ .exp-grid{grid-template-columns:1fr;} }

  .faq-split{display:grid; grid-template-columns:1fr 1fr;}
  .faq-col{background:var(--khaki); padding:70px 50px;}
  .faq-col .kicker{color:var(--olive-deep);}
  .faq-col h2{margin-top:8px;}
  /* ============ BIO PAGE ============ */
  .bio-page{background:linear-gradient(165deg, var(--forest-deep), var(--black)); min-height:100vh;}
  .bio-page .bio-back{display:inline-block; margin:22px 0 0 32px; position:relative; z-index:3; color:var(--gold-light); font-size:0.85rem; font-weight:600;}
  .bio-page .bio-back:hover{color:var(--gold);}
  .bio-layout{display:grid; grid-template-columns:minmax(300px, 42%) 1fr; align-items:stretch; min-height:calc(100vh - 64px);}
  .bio-photo{position:relative; min-height:420px; overflow:hidden;}
  .bio-photo img{width:100%; height:100%; object-fit:cover; display:block;}
  .bio-photo::after{content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(6,24,15,0) 55%, rgba(6,24,15,0.35) 100%);}
  .bio-content{padding:70px 60px; display:flex; flex-direction:column; justify-content:center;}
  .bio-content .role{color:var(--gold); font-weight:700; text-transform:uppercase; font-size:0.85rem; letter-spacing:1.5px;}
  .bio-content h1{color:#fff; font-size:2.1rem; margin:12px 0 30px; line-height:1.2;}
  .bio-content p{color:var(--text-on-dark); font-size:1rem; margin-bottom:20px; line-height:1.9;}
  .bio-content p strong{color:#fff;}
  .bio-content .btn{margin-top:8px; align-self:flex-start;}
  @media(max-width:900px){
    .bio-layout{grid-template-columns:1fr; min-height:auto;}
    .bio-photo{min-height:320px;}
    .bio-content{padding:40px 26px;}
    .bio-content h1{font-size:1.7rem;}
  }

  /* ============ TOUR DETAIL PAGE ============ */
  .tour-hero{position:relative; padding:56px 24px; color:#fff; text-align:center;}
  .tour-hero h1{color:#fff; font-size:clamp(1.8rem,4vw,2.6rem);}
  .tour-hero p{color:var(--text-on-dark); max-width:600px; margin:14px auto 0;}
  .treasure-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:0 auto;}
  .treasure-card{background:#fff; border:1px solid var(--line); border-radius:14px; padding:24px;}
  .treasure-card .t-ico{width:40px; height:40px; margin-bottom:14px; object-fit:contain; display:block;}
  .treasure-card h4{color:var(--forest-deep); font-size:1rem; margin-bottom:8px;}
  .treasure-card p{color:var(--muted); font-size:0.88rem;}
  @media(max-width:760px){ .treasure-grid{grid-template-columns:1fr;} }

  .faq-list{max-width:100%; margin:32px 0 0;}
  .faq-item{border-bottom:1px solid rgba(10,23,18,0.15);}
  .contact-form-col{background:var(--forest-deep); padding:70px 50px; color:var(--text-on-dark);}
  .contact-form-col h2{color:#fff; font-size:1.6rem;}
  .contact-form-col > p{color:var(--text-on-dark); margin:10px 0 26px;}
  .contact-form-col input, .contact-form-col textarea{
    width:100%; padding:14px 16px; border-radius:8px; border:none;
    background:#fff; color:var(--ink); margin-bottom:16px; font-family:inherit;
  }
  .contact-form-col textarea{min-height:110px; resize:vertical;}
  @media(max-width:900px){ .faq-split{grid-template-columns:1fr;} .faq-col, .contact-form-col{padding:50px 28px;} }

  /* ============ DEVELOPER INTERACTION SECTION ============ */
  .dev-interaction-wrap{
    max-width:960px; margin:0 auto; background:linear-gradient(165deg, var(--forest-deep), var(--black));
    border-radius:26px; padding:50px 40px; color:#fff; position:relative; overflow:hidden;
    box-shadow:var(--shadow); border:1px solid rgba(201,162,39,0.25);
  }
  .dev-people{display:flex; flex-wrap:wrap; gap:24px; margin-bottom:34px;}
  .dev-person{display:flex; align-items:center; gap:14px; flex:1 1 260px;}
  .dev-avatar{
    width:60px; height:60px; border-radius:50%; object-fit:cover; flex-shrink:0;
    background:var(--gold); display:flex; align-items:center; justify-content:center;
    font-size:1.3rem; color:var(--black); font-weight:700;
  }
  .dev-person strong{color:var(--gold-light); display:block; font-size:1rem;}
  .dev-person span{color:var(--text-on-dark); font-size:0.85rem;}
  .dev-form input, .dev-form textarea{
    width:100%; padding:14px 16px; border-radius:8px; border:none;
    background:#fff; color:var(--ink); margin-bottom:16px; font-family:inherit; font-size:0.95rem;
  }
  .dev-form textarea{min-height:110px; resize:vertical;}
  @media(max-width:600px){ .dev-interaction-wrap{padding:36px 22px;} }

  /* ============ REVIEWS ============ */
  .reviews-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1180px; margin:0 auto 50px;}
  .review-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px;}
  .review-card .stars{color:var(--gold); font-size:0.95rem; margin-bottom:12px; letter-spacing:2px;}
  .review-card p{color:var(--muted); font-size:0.9rem; font-style:italic; margin-bottom:16px;}
  .review-card .who{font-weight:700; color:var(--forest-deep); font-size:0.9rem;}
  .review-card .who span{display:block; font-weight:400; color:var(--muted); font-size:0.78rem; font-style:normal; margin-top:2px;}
  @media(max-width:900px){ .reviews-grid{grid-template-columns:1fr;} }
  .review-form-wrap{
    max-width:640px; margin:0 auto; background:#fff; border-radius:var(--radius);
    padding:40px 36px; text-align:center; border:1px solid var(--line); box-shadow:var(--shadow);
  }
  .review-form-wrap h3{margin-bottom:10px;}
  .review-form-wrap p{color:var(--muted); margin-bottom:24px; font-size:0.92rem;}
  .review-form-wrap .field{text-align:left; margin-bottom:16px;}
  .review-form-wrap label{display:block; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.5px; color:var(--olive-deep); margin-bottom:6px;}
  .review-form-wrap input, .review-form-wrap select, .review-form-wrap textarea{
    width:100%; padding:12px 14px; border-radius:8px; border:1px solid rgba(10,23,18,0.2);
    background:var(--khaki); font-family:inherit; font-size:0.92rem;
  }
  .review-form-wrap textarea{min-height:90px; resize:vertical;}
  .star-select{display:flex; gap:8px; font-size:1.4rem;}
  .star-select span{cursor:pointer; color:#ccc; transition:color .15s;}
  .star-select span.active, .star-select span:hover{color:var(--gold);}

  .faq-item{border-bottom:1px solid var(--line);}
  .faq-q{
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    padding:22px 4px; cursor:pointer; background:none; width:100%; text-align:left;
  }
  .faq-q h4{font-family:'Playfair Display',serif; font-size:1.02rem; color:var(--forest-deep); font-weight:700;}
  .faq-q .sym{font-size:1.3rem; color:var(--gold); flex-shrink:0; transition:transform .25s ease;}
  .faq-item.open .faq-q .sym{transform:rotate(45deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
  .faq-a p{padding:0 4px 22px; color:var(--muted); font-size:0.93rem; max-width:720px;}

  /* ============ BOOKING ============ */
  .booking-wrap{
    max-width:820px; margin:0 auto;
    background:linear-gradient(165deg, var(--forest-deep), var(--black));
    border-radius:26px; padding:44px 34px; box-shadow:var(--shadow);
    border:1px solid rgba(201,162,39,0.25);
  }
  .booking-wrap h3{color:var(--gold-light); font-size:1.4rem; margin-bottom:6px;}
  .booking-wrap > p{color:var(--text-on-dark); font-size:0.92rem; margin-bottom:26px;}
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  .form-grid .full{grid-column:1 / -1;}
  .field label{display:block; font-size:0.78rem; letter-spacing:0.5px; text-transform:uppercase; color:#aebba1; margin-bottom:6px;}
  .field input, .field select, .field textarea{
    width:100%; padding:13px 14px; border-radius:10px;
    border:1px solid rgba(255,255,255,0.18); background:rgba(255,255,255,0.06);
    color:#fff;
  }
  .field select option{color:#111;}
  .field input::placeholder, .field textarea::placeholder{color:#8b9584;}
  .field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--gold); outline-offset:1px;}
  .field textarea{resize:vertical; min-height:80px;}

  /* ============ QUANTITY STEPPER ============ */
  .qty-stepper{
    display:flex; align-items:center; gap:0;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(227,183,110,0.28);
    border-radius:10px;
    overflow:hidden;
    max-width:160px;
  }
  .qty-stepper .qty-btn{
    background:transparent;
    color:var(--gold-light);
    width:40px; height:40px;
    font-size:1.15rem; font-weight:600;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s ease, color .2s ease;
    flex-shrink:0;
  }
  .qty-stepper .qty-btn:hover{background:rgba(227,183,110,0.16); color:#fff;}
  .qty-stepper .qty-btn:active{background:rgba(227,183,110,0.28);}
  .qty-stepper input[type="number"]{
    border:none; background:transparent;
    text-align:center; width:100%; padding:8px 2px;
    color:#fff; font-weight:600; font-size:0.95rem;
    -moz-appearance:textfield;
  }
  .qty-stepper input[type="number"]::-webkit-outer-spin-button,
  .qty-stepper input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance:none; margin:0;
  }
  .qty-stepper input[type="number"]:focus{outline:none;}

  /* ============ VISUAL DRESS CODE / OPTION CARDS ============ */
  .visual-options{display:grid; grid-template-columns:repeat(4, 1fr); gap:12px;}
  @media(max-width:640px){ .visual-options{grid-template-columns:repeat(2, 1fr);} }
  .visual-option{
    position:relative;
    display:flex; flex-direction:column; align-items:center; gap:8px;
    text-align:center;
    padding:14px 10px 16px;
    border:1px solid rgba(227,183,110,0.22);
    border-radius:12px;
    background:rgba(255,255,255,0.03);
    cursor:pointer;
    transition:border-color .2s ease, background .2s ease, transform .2s ease;
  }
  .visual-option:hover{border-color:rgba(227,183,110,0.55); transform:translateY(-2px);}
  .visual-option input{position:absolute; opacity:0; width:0; height:0;}
  .visual-option svg{width:26px; height:26px; color:var(--gold-light);}
  .visual-option span.opt-label{font-size:0.8rem; font-weight:600; color:var(--text-on-dark); letter-spacing:0.2px;}
  .visual-option.checked{
    border-color:var(--gold);
    background:rgba(227,183,110,0.14);
    box-shadow:0 0 0 1px var(--gold) inset;
  }
  .visual-option.checked svg, .visual-option.checked span.opt-label{color:#fff;}
  /* photo-style dress code cards (guard imagery) */
  .visual-option-photo{
    width:100%; aspect-ratio:1/1; max-width:96px;
    border-radius:10px; overflow:hidden;
    border:1px solid rgba(227,183,110,0.3);
    background:rgba(0,0,0,0.25);
  }
  .visual-option-photo img{width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(15%);}
  .visual-option.checked .visual-option-photo{border-color:var(--gold); box-shadow:0 0 0 2px var(--gold);}

  /* ============ LIVE DEPLOYMENT SUMMARY (VVIP dispatch preview) ============ */
  .deploy-summary{
    margin-top:22px; padding:16px 18px;
    background:rgba(227,183,110,0.08);
    border:1px solid rgba(227,183,110,0.3);
    border-radius:12px;
    display:flex; flex-wrap:wrap; align-items:center; gap:10px 18px;
  }
  .deploy-summary .deploy-label{
    font-size:0.72rem; text-transform:uppercase; letter-spacing:1.5px;
    color:var(--gold); font-weight:700; width:100%;
  }
  .deploy-summary .deploy-chip{
    display:flex; align-items:center; gap:6px;
    font-size:0.88rem; color:#fff; font-weight:600;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:30px; padding:6px 14px;
  }
  .deploy-summary .deploy-chip svg{width:15px; height:15px; color:var(--gold-light); flex-shrink:0;}
  .booking-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:24px;}
  .booking-actions .btn{flex:1; min-width:200px;}
  .booking-note{font-size:0.78rem; color:#93a086; margin-top:16px; line-height:1.5;}
  .form-msg{font-size:0.85rem; margin-top:14px; color:var(--gold-light); display:none;}
  .form-msg.show{display:block;}

  /* ============ CONTACT INFO ============ */
  .info-list{display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:1180px; margin:56px auto 0;}
  .info-item{
    display:flex; gap:16px; align-items:flex-start;
    background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px;
  }
  .info-item .ico{
    width:46px; height:46px; border-radius:12px; flex-shrink:0;
    background:#f1eddb; display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:var(--olive-deep);
  }
  .info-item h4{font-size:1rem; color:var(--forest-deep); margin-bottom:4px;}
  .info-item p, .info-item a{color:var(--muted); font-size:0.92rem;}
  .info-item a:hover{color:var(--gold);}
  .social-row{display:flex; gap:12px; margin-top:6px;}
  .social-row a{
    width:38px; height:38px; border-radius:50%; background:#f1eddb;
    display:flex; align-items:center; justify-content:center; color:var(--forest-deep);
    transition:.25s ease;
  }
  .social-row a:hover{background:var(--gold); color:#fff; transform:translateY(-3px);}
  @media(max-width:760px){ .info-list{grid-template-columns:1fr;} }

  /* ============ WHATSAPP FAB ============ */
  .wa-fab-wrap{
    position:fixed; bottom:24px; right:24px; z-index:900;
    display:flex; align-items:center; gap:10px;
    transition:bottom .25s ease;
  }
  /* Pushed up out of the way whenever the fleet compare bar is on screen,
     so the two floating elements never sit on top of each other. */
  .wa-fab-wrap.compare-bar-active{ bottom:112px; }
  .wa-fab-label{
    background:var(--forest-deep); color:var(--khaki); font-family:'Inter', sans-serif;
    font-size:0.8rem; font-weight:600; letter-spacing:0.3px;
    padding:10px 18px; border-radius:30px; box-shadow:var(--shadow);
    cursor:pointer; border:1px solid rgba(227,183,110,0.3);
    opacity:0.92; transition:opacity .25s ease, border-color .25s ease;
  }
  .wa-fab-label:hover{ opacity:1; border-color:var(--gold); }
  .wa-fab{
    position:relative; cursor:pointer; border:1px solid rgba(227,183,110,0.35); padding:0;
    width:52px; height:52px; border-radius:50%;
    background:var(--forest-deep); display:flex; align-items:center; justify-content:center;
    box-shadow:var(--shadow); flex-shrink:0;
    transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
    animation:wa-breathe 4.5s ease-in-out infinite;
  }
  .wa-fab:hover{
    border-color:var(--gold); transform:translateY(-2px);
    box-shadow:0 20px 40px -14px rgba(10,23,18,0.55);
  }
  .wa-fab svg{ stroke:var(--gold); }
  @keyframes wa-breathe{
    0%,100%{box-shadow:var(--shadow);}
    50%{box-shadow:0 18px 40px -14px rgba(227,183,110,0.35);}
  }

  /* ============ CHAT WIDGET ============ */
  .chat-panel{
    position:fixed; bottom:96px; right:24px; z-index:950;
    width:340px; max-width:calc(100vw - 32px); height:460px; max-height:calc(100vh - 140px);
    background:#fff; border-radius:16px; overflow:hidden;
    box-shadow:0 24px 60px -12px rgba(0,0,0,0.45);
    display:flex; flex-direction:column;
    opacity:0; transform:translateY(16px) scale(0.97); pointer-events:none;
    transition:all .25s ease;
  }
  .chat-panel.open{opacity:1; transform:translateY(0) scale(1); pointer-events:auto;}
  .chat-head{
    background:#22c35e; color:#fff; padding:14px 16px;
    display:flex; align-items:center; justify-content:space-between; flex-shrink:0;
  }
  .chat-head .who{display:flex; align-items:center; gap:10px;}
  .chat-head .who img{width:30px; height:30px; border-radius:50%; background:#fff; object-fit:contain; padding:2px;}
  .chat-head strong{font-size:0.92rem; display:block;}
  .chat-head span{font-size:0.72rem; opacity:0.9;}
  .chat-head button{background:rgba(255,255,255,0.2); border:none; color:#fff; width:26px; height:26px; border-radius:50%; cursor:pointer; font-size:0.9rem; line-height:1;}
  .chat-body{flex:1; overflow-y:auto; padding:14px; background:var(--khaki); display:flex; flex-direction:column; gap:10px;}
  .chat-msg{max-width:82%; padding:9px 13px; border-radius:14px; font-size:0.85rem; line-height:1.45; white-space:pre-wrap;}
  .chat-msg.bot{background:#fff; color:var(--ink); align-self:flex-start; border-bottom-left-radius:4px; box-shadow:0 2px 6px rgba(0,0,0,0.08);}
  .chat-msg.user{background:#dcf8c6; color:#1a2e1a; align-self:flex-end; border-bottom-right-radius:4px;}
  .chat-quick{display:flex; flex-wrap:wrap; gap:6px; margin-top:2px;}
  .chat-quick button{
    background:#fff; border:1px solid var(--gold); color:var(--gold-dark); font-size:0.75rem; font-weight:600;
    padding:6px 12px; border-radius:20px; cursor:pointer;
  }
  .chat-quick button:hover{background:var(--gold); color:#1a1405;}
  .chat-agent-cta{
    background:linear-gradient(135deg,#22c35e,#1ea952); color:#fff; border:none; border-radius:10px;
    padding:10px 14px; font-size:0.8rem; font-weight:700; cursor:pointer; display:flex; align-items:center; gap:8px; align-self:flex-start;
  }
  .chat-input-row{display:flex; gap:8px; padding:10px; border-top:1px solid var(--line); background:#fff; flex-shrink:0;}
  .chat-input-row input{
    flex:1; border:1px solid var(--line); border-radius:20px; padding:10px 14px; font-size:0.85rem; font-family:inherit;
    background:var(--khaki);
  }
  .chat-input-row button{
    width:38px; height:38px; border-radius:50%; background:#22c35e; color:#fff; border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  @media(max-width:480px){
    .chat-panel{right:12px; bottom:88px; width:calc(100vw - 24px);}
  }

  /* ============ FOOTER ============ */
  footer{background:var(--black); color:var(--text-on-dark); padding:64px 24px 26px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; max-width:1180px; margin:0 auto 40px;}
  .footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:16px;}
  .footer-brand img{height:42px; width:42px; object-fit:contain;}
  .footer-brand strong{font-family:'Playfair Display',serif; color:var(--gold-light); font-size:1.05rem;}
  footer h5{color:var(--gold-light); font-size:0.88rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:16px;}
  footer p{font-size:0.9rem; color:#9fab90;}
  footer ul li{margin-bottom:10px;}
  footer ul li a{font-size:0.9rem; color:#aebba1; transition:.2s;}
  footer ul li a:hover{color:var(--gold-light); padding-left:4px;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    max-width:1180px; margin:0 auto; padding-top:22px;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    font-size:0.8rem; color:#7c8871;
  }
  @media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr; gap:32px;} }
  @media(max-width:560px){ .footer-grid{grid-template-columns:1fr;} .form-grid{grid-template-columns:1fr;} .booking-actions .btn{min-width:100%;} }

  /* Feedback form dropdown fix */
  .feedback-select option,
  .feedback-select optgroup {
    background: #fff;
    color: var(--ink);
  }
  .feedback-select option:hover,
  .feedback-select option:focus,
  .feedback-select option:checked {
    background: var(--gold);
    color: var(--black);
  }
  .feedback-select option:disabled {
    color: #999;
    background: #f5f5f5;
  }

  /* ============ SCROLL TIMELINE ============ */
  .timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--line);
    transform: translateX(-50%);
    z-index: 1;
  }
  .timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background: var(--gold);
    transform: translateX(-50%);
    z-index: 2;
    transition: height 0.1s linear;
    height: 0%;
  }
  .timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    z-index: 3;
  }
  .timeline-item:last-child { margin-bottom: 0; }
  .timeline-item:nth-child(odd) { flex-direction: row-reverse; }
  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto; margin-left: 0; text-align: right;
  }
  .timeline-item:nth-child(odd) .timeline-content img { margin-left: auto; margin-right: 0; }
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto; margin-right: 0; text-align: left;
  }
  .timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cream);
    border: 3px solid var(--line);
    z-index: 4;
    transition: all 0.4s ease;
  }
  .timeline-node.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgba(227, 183, 110, 0.25);
    transform: translateX(-50%) scale(1.2);
  }
  .timeline-content {
    width: 45%;
    background: #fff;
    border-radius: var(--radius);
    padding: 0;
    box-shadow: 0 4px 20px rgba(10,23,18,0.08);
    border: 1px solid var(--line);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(.22,.68,0,1.01);
  }
  .timeline-content.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .timeline-content img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  .timeline-content .timeline-body { padding: 24px 28px; }
  .timeline-content .timeline-day-label {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  .timeline-content h4 {
    font-size: 1.25rem;
    color: var(--forest-deep);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
  }
  .timeline-content p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
  @media(max-width: 760px) {
    .timeline-line, .timeline-progress { left: 20px; }
    .timeline-node { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) {
      flex-direction: column; align-items: flex-start; padding-left: 50px;
    }
    .timeline-content, .timeline-item:nth-child(odd) .timeline-content {
      width: 100%; margin: 0; text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content img { margin: 0; }
  }

  /* ============ AIRLINE PILLS ============ */
  .airline-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
  }
  .airline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--forest-deep);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(.22,.68,0,1.01);
    box-shadow: 0 2px 8px rgba(10,23,18,0.06);
    position: relative;
    overflow: hidden;
  }
  .airline-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  .airline-pill:hover {
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -6px rgba(201,162,39,0.35);
  }
  .airline-pill:hover::before {
    opacity: 1;
  }
  .airline-pill span, .airline-pill {
    position: relative;
    z-index: 1;
  }

  /* ============ SERVICE PAGE SCROLL EFFECTS ============ */
  .service-feature-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(.22,.68,0,1.01);
  }
  .service-feature-item.in-view {
    opacity: 1;
    transform: translateX(0);
  }
  .service-feature-item:nth-child(1).in-view { transition-delay: 0ms; }
  .service-feature-item:nth-child(2).in-view { transition-delay: 80ms; }
  .service-feature-item:nth-child(3).in-view { transition-delay: 160ms; }
  .service-feature-item:nth-child(4).in-view { transition-delay: 240ms; }
  .service-feature-item:nth-child(5).in-view { transition-delay: 320ms; }
  .service-feature-item:nth-child(6).in-view { transition-delay: 400ms; }

    .service-hero-inner {
    animation: serviceHeroIn 1s cubic-bezier(.22,.68,0,1.01) both;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  @keyframes serviceHeroIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .service-detail-sidebar {
    animation: serviceSidebarIn 0.9s cubic-bezier(.22,.68,0,1.01) 0.2s both;
  }
  @keyframes serviceSidebarIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .service-detail-content {
    animation: serviceContentIn 0.8s cubic-bezier(.22,.68,0,1.01) both;
  }
  @keyframes serviceContentIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .service-gallery img {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.7s cubic-bezier(.22,.68,0,1.01);
  }
  .service-gallery.in-view img:nth-child(1) { opacity: 1; transform: scale(1); transition-delay: 0ms; }
  .service-gallery.in-view img:nth-child(2) { opacity: 1; transform: scale(1); transition-delay: 120ms; }
  .service-gallery.in-view img:nth-child(3) { opacity: 1; transform: scale(1); transition-delay: 240ms; }


  /* ============ SERVICE DETAIL TYPOGRAPHY / SPACING ============ */
  .service-detail-content h2,
  .service-detail-content h3 {
    font-size: 1.4rem;
    margin: 46px 0 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(201,162,39,0.28);
  }
  .service-detail-content > h2:first-child,
  .service-detail-content > h3:first-child {
    margin-top: 0;
  }
  .service-detail-content > p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--muted);
  }
  .service-detail-content ul,
  .service-detail-content ol {
    margin: 0 0 26px 0;
  }
  .service-detail-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    line-height: 1.65;
    color: var(--muted);
  }
  .service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
  }
  .service-detail-content ol {
    counter-reset: step;
    padding-left: 0;
  }
  .service-detail-content ol li {
    position: relative;
    list-style: none;
    padding-left: 46px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--muted);
    counter-increment: step;
    min-height: 28px;
  }
  .service-detail-content ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* FAQ items on service detail pages */
  .service-detail-content .service-faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--muted);
    box-shadow: 0 4px 14px -10px rgba(10,23,18,0.12);
  }
  .service-detail-content .service-faq-item:last-of-type {
    margin-bottom: 30px;
  }
  .service-detail-content .service-faq-item strong {
    display: block;
    color: var(--forest-deep);
    font-family: 'Playfair Display', serif;
    font-size: 1.04rem;
    margin-bottom: 8px;
  }
  @media(max-width:600px){
    .service-detail-content h2,
    .service-detail-content h3 { font-size: 1.22rem; margin: 36px 0 14px; }
    .service-detail-content .service-faq-item { padding: 16px 18px; }
  }

  /* ============ BOOKING FORM TABS ============ */
  .form-tab {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1.5px solid rgba(201,162,39,0.4);
    background: transparent;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .form-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }
  .form-tab.active {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-color: var(--gold) !important;
    font-weight: 700 !important;
  }

  .form-tab {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .form-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .form-tab:hover::before {
    opacity: 0.15;
  }
  .form-tab.active::before {
    opacity: 1;
  }
  .form-tab.active {
    color: var(--black) !important;
    font-weight: 700 !important;
    border-color: var(--gold) !important;
  }
  .form-tab span {
    position: relative;
    z-index: 2;
  }
  .booking-form {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .booking-form:not(.active) {
    display: none;
  }


  /* ============ PROFESSIONAL EFFECTS ============ */

  /* Smooth page transitions */
  section.page {
    transition: opacity 0.4s ease;
  }

  /* Form card hover lift */
  .booking-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .booking-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px -12px rgba(10,23,18,0.5);
  }

  /* Input focus glow */
  .booking-wrap input:focus,
  .booking-wrap select:focus,
  .booking-wrap textarea:focus {
    box-shadow: 0 0 0 3px rgba(227, 183, 110, 0.15);
  }

  /* Tab ripple effect on click */
  .form-tab {
    position: relative;
    overflow: hidden;
  }
  .form-tab::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
  }
  .form-tab:active::after {
    width: 200px;
    height: 200px;
  }

  /* Form field stagger animation */
  .booking-form .field {
    opacity: 0;
    transform: translateY(10px);
    animation: fieldIn 0.4s ease forwards;
  }
  .booking-form.active .field:nth-child(1) { animation-delay: 0.05s; }
  .booking-form.active .field:nth-child(2) { animation-delay: 0.10s; }
  .booking-form.active .field:nth-child(3) { animation-delay: 0.15s; }
  .booking-form.active .field:nth-child(4) { animation-delay: 0.20s; }
  .booking-form.active .field:nth-child(5) { animation-delay: 0.25s; }
  .booking-form.active .field:nth-child(6) { animation-delay: 0.30s; }
  .booking-form.active .field:nth-child(7) { animation-delay: 0.35s; }
  .booking-form.active .field:nth-child(8) { animation-delay: 0.40s; }
  .booking-form.active .field:nth-child(9) { animation-delay: 0.45s; }
  .booking-form.active .field:nth-child(10) { animation-delay: 0.50s; }

  @keyframes fieldIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Button shine effect */
  .btn-gold, .btn-whatsapp {
    position: relative;
    overflow: hidden;
  }
  .btn-gold::before, .btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }
  .btn-gold:hover::before, .btn-whatsapp:hover::before {
    left: 100%;
  }

  /* Section header underline animation */
  .section-head h2 {
    position: relative;
    display: inline-block;
  }
  .section-head h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s ease, left 0.5s ease;
  }
  .section-head.reveal.in-view h2::after {
    width: 60px;
    left: calc(50% - 30px);
  }

  /* Card hover border glow */
  .service-card, .fleet-card, .exp-card, .review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .service-card:hover, .fleet-card:hover, .exp-card:hover, .review-card:hover {
    border-color: rgba(201,162,39,0.4);
  }

  /* Navigation link hover underline */
  .nav-links a {
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 1px;
  }
  .nav-links a:hover::after, .nav-links a.active::after {
    width: 60%;
    left: 20%;
  }

  /* Smooth scroll behavior for anchor links */
  html {
    scroll-behavior: smooth;
  }

  /* Loading shimmer for images */
  img {
    background: linear-gradient(90deg, var(--cream) 25%, var(--line) 50%, var(--cream) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }
  img[src] {
    animation: none;
    background: none;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* Form label micro-animation */
  .field label {
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .field:focus-within label {
    color: var(--gold);
    transform: translateX(2px);
  }

  /* Radio and checkbox custom styling */
  input[type="radio"], input[type="checkbox"] {
    accent-color: var(--gold);
    cursor: pointer;
  }

  /* Select dropdown arrow */
  select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E3B76E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }


  /* ============ REFINED PROFESSIONAL TOUCHES ============ */

  /* Subtle gradient overlay on hero sections */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
    pointer-events: none;
  }

  /* Elegant divider lines */
  .section-head::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
  }

  /* Smooth form field transitions */
  .field input, .field select, .field textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  }
  .field input:hover, .field select:hover, .field textarea:hover {
    border-color: rgba(227, 183, 110, 0.4);
  }

  /* Professional scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: var(--cream);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--forest-mid);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
  }

  /* Form section subtle background pattern */
  .booking-wrap {
    position: relative;
  }
  .booking-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227,183,110,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  /* Tab active indicator dot */
  .form-tab.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
    opacity: 0.4;
  }

  /* Service cards subtle inner glow on hover */
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(ellipse at top, rgba(227,183,110,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
  }
  .service-card:hover::before {
    opacity: 1;
  }

  /* Professional loading state for buttons */
  .btn.sending {
    pointer-events: none;
    opacity: 0.8;
  }
  .btn.sending::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Form validation shake animation */
  .field.error input, .field.error select, .field.error textarea {
    border-color: #e74c3c;
    animation: shake 0.4s ease;
  }
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
  }

  /* Success checkmark animation */
  .form-msg.show {
    animation: msgIn 0.3s ease;
  }
  @keyframes msgIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Footer link hover effect */
  footer ul li a {
    position: relative;
    display: inline-block;
  }
  footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
  }
  footer ul li a:hover::after {
    width: 100%;
  }

  /* Image hover zoom with overlay */
  .service-thumb, .fleet-img, .exp-card img {
    position: relative;
    overflow: hidden;
  }
  .service-thumb::after, .fleet-img::after, .exp-card img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,23,18,0.6) 100%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  .service-card:hover .service-thumb::after,
  .fleet-card:hover .fleet-img::after,
  .exp-card:hover img::after {
    opacity: 0.4;
  }



  /* ============ HERO GRADIENT FIXES ============ */
  #about .hero::after,
  #contact .hero::after {
    background: linear-gradient(to top, rgba(10,23,18,0.95), transparent);
    height: 80px;
  }
  #home .hero::after {
    display: none;
  }

  /* Hide whitish cloud on services page */
  #services .hero::after { display: none; }

  /* Hide whitish cloud on fleet page */
  #fleet .hero::after { display: none; }

  /* Hide whitish cloud on experiences page */
  #experiences .hero::after { display: none; }

  .hero-actions a[data-page="services"]:hover span {
    transform: scaleX(1) !important;
  }
  .hero-actions a[data-page="services"]:hover {
    color: #fff !important;
  }

  /* ============ CINEMATIC SLOW-MOTION HERO ============ */

  /* Hero background — ultra-smooth parallax with slow zoom */
  .hero {
    background-attachment: fixed;
    transition: background-position 1.2s cubic-bezier(0.22, 0.68, 0, 1.01);
  }

  /* Slow-motion Ken Burns effect on hero background */
  @keyframes heroSlowZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.06); }
  }

  .hero::before {
    animation: heroSlowZoom 20s ease-in-out infinite alternate;
    transform-origin: center 60%;
  }

  /* Hero content — staggered, slow fade-in with gentle float */
  .hero-inner {
    animation: heroContentFloat 8s ease-in-out infinite;
  }

  @keyframes heroContentFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .hero-inner .kicker {
    opacity: 0;
    animation: heroFadeInSlow 1.8s cubic-bezier(0.22, 0.68, 0, 1.01) 0.3s forwards;
  }

  .hero-inner h1 {
    opacity: 0;
    animation: heroFadeInSlow 2.2s cubic-bezier(0.22, 0.68, 0, 1.01) 0.6s forwards;
  }

  .hero-inner .lead {
    opacity: 0;
    animation: heroFadeInSlow 2.0s cubic-bezier(0.22, 0.68, 0, 1.01) 1.0s forwards;
  }

  .hero-actions {
    opacity: 0;
    animation: heroFadeInSlow 1.8s cubic-bezier(0.22, 0.68, 0, 1.01) 1.4s forwards;
  }

  .hero-stats {
    opacity: 0;
    animation: heroFadeInSlow 2.0s cubic-bezier(0.22, 0.68, 0, 1.01) 1.8s forwards;
  }

  @keyframes heroFadeInSlow {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Primary CTA — gentle pulse that breathes, not flashes */
  @keyframes ctaBreathe {
    0%, 100% { box-shadow: 0 8px 24px -6px rgba(201,162,39,0.45); transform: translateY(0); }
    50% { box-shadow: 0 12px 32px -4px rgba(201,162,39,0.65); transform: translateY(-2px); }
  }

  .hero-actions .btn-gold {
    animation: ctaBreathe 4s ease-in-out infinite;
    transition: all 0.6s cubic-bezier(0.22, 0.68, 0, 1.01);
  }

  .hero-actions .btn-gold:hover {
    animation: none;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px -8px rgba(201,162,39,0.7);
  }

  /* Secondary CTA — ultra-smooth hover transition */
  .hero-actions a[data-page="services"] {
    transition: color 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.68, 0, 1.01);
  }

  .hero-actions a[data-page="services"]:hover {
    transform: translateX(4px);
  }

  .hero-actions a[data-page="services"] span {
    transition: transform 0.5s cubic-bezier(0.22, 0.68, 0, 1.01);
  }

  /* Hero stats — slow counter animation feel */
  .hero-stats div {
    transition: transform 0.8s cubic-bezier(0.22, 0.68, 0, 1.01);
  }

  .hero-stats div:hover {
    transform: translateY(-4px);
  }

  .hero-stats div strong {
    transition: color 1.2s ease;
  }

  .hero-stats div:hover strong {
    color: #fff;
  }

  /* Smooth scroll for the entire page */
  html {
    scroll-behavior: smooth;
  }

  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-inner,
    .hero-inner .kicker,
    .hero-inner h1,
    .hero-inner .lead,
    .hero-actions,
    .hero-stats,
    .hero-actions .btn-gold {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .hero {
      background-attachment: scroll;
    }
  }



/* ==== Consolidated from a stray in-body style block (removed duplicate rules; kept below are the rules that were unique to it or differed from above, preserved in their original cascade position to avoid any visual change) ==== */

            #feedbackForm ::placeholder { color: rgba(255,255,255,0.5); }

            #feedbackForm input:-webkit-autofill,
            #feedbackForm input:-webkit-autofill:hover,
            #feedbackForm input:-webkit-autofill:focus {
              -webkit-text-fill-color: #fff;
              -webkit-box-shadow: 0 0 0px 1000px var(--forest-deep) inset;
              transition: background-color 5000s ease-in-out 0s;
            }

          
  /* ============ FLEET CARDS ============ */
  .fleet-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1180px; margin:0 auto;}

  .fleet-card{
    border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); 
    position:relative; border:1px solid rgba(232,197,60,0.18);
    background:#fff; transition:transform .3s ease, box-shadow .3s ease;
    cursor:pointer;
  }

  .fleet-card:hover{transform:translateY(-6px); box-shadow:0 24px 48px -16px rgba(10,23,18,0.35);}

  .fleet-card:hover .fleet-img img{transform:scale(1.06);}

  .fleet-img{position:relative; height:220px; overflow:hidden; background:var(--black);}

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

  .fleet-img::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,23,18,0.1) 0%, rgba(10,23,18,0.6) 100%);
  }

  .fleet-tag{
    position:absolute; top:14px; right:14px; z-index:2;
    background:var(--gold); color:var(--black); font-size:0.7rem; font-weight:700;
    padding:5px 12px; border-radius:20px; text-transform:uppercase; letter-spacing:0.5px;
  }

  .fleet-body{padding:22px 20px 20px;}

  .fleet-body h4{color:var(--forest-deep); font-size:1.05rem; margin-bottom:6px;}

  .fleet-meta{display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px;}

  .fleet-meta span{
    font-size:0.72rem; text-transform:uppercase; letter-spacing:0.5px;
    background:var(--khaki); color:var(--olive-deep); padding:4px 10px; border-radius:20px;
  }

  .fleet-price{
    display:flex; align-items:baseline; gap:8px; margin-bottom:12px;
  }

  .fleet-price strong{
    font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--gold-dark);
  }

  .fleet-price small{
    font-size:0.8rem; color:var(--muted);
  }

  .fleet-features{
    font-size:0.85rem; color:var(--muted); margin-bottom:16px;
    display:flex; flex-wrap:wrap; gap:8px;
  }

  .fleet-features span{
    display:flex; align-items:center; gap:4px;
  }

  .fleet-features span::before{
    content:''; color:var(--olive-deep); font-weight:700; font-size:0.75rem;
  }

  .fleet-card .btn{
    width:100%; padding:12px; font-size:0.82rem;
  }
@media(max-width:980px) {
 .fleet-grid{grid-template-columns:repeat(2,1fr);}

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

}


  /* ============ THE SHOWROOM (dark gallery theme) ============ */
  .showroom-section{
    position:relative; overflow:hidden;
    background:
      radial-gradient(ellipse 60% 40% at 20% 0%, rgba(227,183,110,0.08) 0%, rgba(227,183,110,0) 60%),
      radial-gradient(ellipse 60% 40% at 80% 0%, rgba(227,183,110,0.08) 0%, rgba(227,183,110,0) 60%),
      linear-gradient(180deg, #0a170e 0%, #0D2B1B 35%, #0a1a10 100%);
  }

  .showroom-section .showroom-intro{
    text-align:center; max-width:640px; margin:0 auto 44px;
  }

  .showroom-section .showroom-intro .kicker{color:var(--gold-light);}

  .showroom-section .showroom-intro h2{color:#fff; font-family:'Playfair Display',serif; font-size:clamp(1.5rem,3vw,2rem); margin-top:8px;}

  .showroom-section .showroom-intro p{color:var(--text-on-dark); font-size:0.95rem; margin-top:10px; line-height:1.7;}


  .fleet-card{
    background:linear-gradient(165deg, #15271b 0%, #0c150f 100%);
    border:1px solid rgba(227,183,110,0.16);
    box-shadow:0 20px 40px -20px rgba(0,0,0,0.7);
  }

  .fleet-card:hover{
    box-shadow:0 0 0 1px rgba(227,183,110,0.4), 0 30px 60px -18px rgba(0,0,0,0.8), 0 0 60px -8px rgba(227,183,110,0.25);
  }

  .fleet-img{background:#04070a;}

  .fleet-img::after{
    background:
      radial-gradient(ellipse 70% 55% at 50% -10%, rgba(255,244,214,0.22) 0%, rgba(255,244,214,0) 60%),
      linear-gradient(180deg, rgba(4,7,10,0.05) 0%, rgba(4,7,10,0.75) 100%);
    transition:opacity .4s ease;
  }

  .fleet-card:hover .fleet-img::after{ opacity:0.75; }

  .fleet-body h4{color:var(--gold-light);}

  .fleet-meta span{ background:rgba(227,183,110,0.1); color:var(--khaki); border:1px solid rgba(227,183,110,0.2); }

  .fleet-price strong{ color:var(--gold-light); }

  .fleet-price small{ color:#9fab90; }

  .fleet-features{ color:#c3cdb6; }

  .fleet-features span::before{ color:var(--gold-light); content:'\2713'; }


  /* ============ COMPARE FEATURE ============ */
  .compare-toggle{
    position:absolute; top:14px; left:14px; z-index:2;
    display:flex; align-items:center; gap:6px;
    background:rgba(6,14,9,0.72); border:1px solid rgba(227,183,110,0.35);
    color:var(--khaki); font-size:0.68rem; font-weight:600; letter-spacing:0.4px; text-transform:uppercase;
    padding:6px 11px; border-radius:20px; cursor:pointer; backdrop-filter:blur(2px);
    transition:.2s ease;
  }

  .compare-toggle:hover{ border-color:var(--gold); }

  .compare-toggle.active{ background:var(--gold); color:var(--black); border-color:var(--gold); }

  .compare-toggle .box{
    width:13px; height:13px; border-radius:3px; border:1.5px solid currentColor;
    display:flex; align-items:center; justify-content:center; font-size:0.6rem; line-height:1;
  }

  .compare-toggle.active .box{ background:var(--black); border-color:var(--black); color:var(--gold); }


  .compare-bar{
    position:fixed; left:50%; bottom:24px; transform:translateX(-50%) translateY(140%);
    z-index:1200; background:var(--forest-deep); border:1px solid rgba(227,183,110,0.35);
    border-radius:16px; box-shadow:0 24px 50px -14px rgba(0,0,0,0.6);
    padding:14px 18px; display:flex; align-items:center; gap:16px; max-width:calc(100vw - 32px);
    transition:transform .35s ease;
  }

  .compare-bar.show{ transform:translateX(-50%) translateY(0); }

  .compare-bar .cb-label{ color:var(--gold-light); font-size:0.8rem; font-weight:700; white-space:nowrap; }

  .compare-bar .cb-slots{ display:flex; gap:8px; }

  .compare-bar .cb-slot{
    width:44px; height:44px; border-radius:8px; overflow:hidden; border:1px solid rgba(227,183,110,0.3);
    background:#0a170e; flex-shrink:0; position:relative;
  }

  .compare-bar .cb-slot img{ width:100%; height:100%; object-fit:cover; display:block; }

  .compare-bar .cb-slot.empty{ display:flex; align-items:center; justify-content:center; color:#4a5c4f; font-size:0.7rem; }

  .compare-bar button.cb-go{
    background:var(--gold); color:var(--black); border:none; border-radius:24px; font-weight:700;
    font-size:0.78rem; padding:10px 18px; cursor:pointer; white-space:nowrap;
  }

  .compare-bar button.cb-go:disabled{ opacity:0.4; cursor:not-allowed; }

  .compare-bar button.cb-clear{
    background:transparent; border:none; color:#9fab90; font-size:0.75rem; cursor:pointer; text-decoration:underline;
    white-space:nowrap;
  }
@media(max-width:640px) {
 .compare-bar{ gap:10px; padding:12px; }
 .compare-bar .cb-label{ display:none; }

}


  .compare-modal-wrap{
    position:fixed; inset:0; z-index:1300; display:none;
    align-items:flex-start; justify-content:center; overflow-y:auto;
    background:rgba(4,8,5,0.82); padding:40px 16px;
  }

  .compare-modal-wrap.open{ display:flex; }

  .compare-modal{
    background:var(--forest-deep); border-radius:20px; max-width:1080px; width:100%;
    border:1px solid rgba(227,183,110,0.25); box-shadow:0 40px 80px -20px rgba(0,0,0,0.7);
    padding:32px; position:relative;
  }

  .compare-modal .cm-close{
    position:absolute; top:18px; right:18px; width:34px; height:34px; border-radius:50%;
    background:rgba(255,255,255,0.08); border:none; color:#fff; font-size:1rem; cursor:pointer;
  }

  .compare-modal h3{ font-family:'Playfair Display',serif; color:#fff; font-size:1.4rem; margin-bottom:4px; }

  .compare-modal .cm-sub{ color:var(--gold-light); font-size:0.82rem; margin-bottom:26px; }

  .compare-grid{ display:grid; gap:20px; grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); }

  /* ===== Fleet gallery hint badge ===== */
  .fleet-img[data-gallery-index]{ cursor:pointer; }
  .fleet-gallery-hint{
    position:absolute; top:12px; right:12px; z-index:2;
    display:flex; align-items:center; gap:5px;
    background:rgba(4,8,5,0.65); color:#fff; font-size:0.72rem; font-weight:600;
    padding:5px 9px; border-radius:20px; backdrop-filter:blur(2px);
    border:1px solid rgba(255,255,255,0.18);
    transition:background .25s ease, transform .25s ease;
  }
  .fleet-card:hover .fleet-gallery-hint{ background:var(--gold); color:#1a1405; transform:translateY(-1px); }

  /* ===== Showroom modal (gallery / slideshow) ===== */
  .showroom-wrap{
    position:fixed; inset:0; z-index:1400; display:none;
    align-items:center; justify-content:center;
    background:rgba(4,8,5,0.92); padding:24px 12px;
  }
  .showroom-wrap.open{ display:flex; }

  .showroom-modal{
    width:100%; max-width:920px; position:relative;
    display:flex; flex-direction:column; align-items:center;
  }

  .sr-close{
    position:absolute; top:-46px; right:0; width:36px; height:36px; border-radius:50%;
    background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.2); color:#fff;
    font-size:1rem; cursor:pointer; z-index:5;
  }
  .sr-close:hover{ background:var(--gold); color:#1a1405; }

  .sr-stage{
    width:100%; display:flex; align-items:center; justify-content:center; gap:10px;
  }

  .sr-frame{
    position:relative; width:100%; max-width:760px; aspect-ratio:16/10; border-radius:16px;
    overflow:hidden; background:#04070a; border:1px solid rgba(227,183,110,0.25);
    box-shadow:0 40px 80px -20px rgba(0,0,0,0.8);
  }
  .sr-frame img{
    width:100%; height:100%; object-fit:contain; background:#04070a;
    display:block; animation:srFade .35s ease;
  }
  @keyframes srFade{ from{ opacity:0; transform:scale(0.98); } to{ opacity:1; transform:scale(1); } }

  .sr-nav{
    flex:0 0 auto; width:42px; height:42px; border-radius:50%; cursor:pointer;
    background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.2); color:#fff; font-size:0.9rem;
  }
  .sr-nav:hover{ background:var(--gold); color:#1a1405; }

  .sr-info{
    display:flex; align-items:baseline; justify-content:center; gap:12px; margin-top:18px; text-align:center;
  }
  .sr-info h3{ font-family:'Playfair Display',serif; color:#fff; font-size:1.2rem; }
  .sr-counter{ color:var(--gold-light); font-size:0.8rem; }

  .sr-thumbs{
    display:flex; gap:8px; margin-top:14px; overflow-x:auto; max-width:100%; padding-bottom:4px;
  }
  .sr-thumbs img{
    width:64px; height:48px; object-fit:cover; border-radius:8px; cursor:pointer;
    opacity:0.5; border:2px solid transparent; transition:opacity .2s ease, border-color .2s ease; flex:0 0 auto;
  }
  .sr-thumbs img:hover{ opacity:0.85; }
  .sr-thumbs img.active{ opacity:1; border-color:var(--gold); }

  @media (max-width:640px){
    .sr-nav{ width:34px; height:34px; font-size:0.75rem; }
    .sr-frame{ aspect-ratio:4/3; }
    .sr-close{ top:-42px; }
  }

  .compare-col{
    background:rgba(255,255,255,0.03); border:1px solid rgba(227,183,110,0.15); border-radius:14px;
    overflow:hidden; display:flex; flex-direction:column;
  }

  .compare-col img{ width:100%; height:140px; object-fit:cover; display:block; }

  .compare-col .cc-body{ padding:16px; flex:1; display:flex; flex-direction:column; }

  .compare-col h4{ color:var(--gold-light); font-size:0.98rem; margin-bottom:4px; }

  .compare-col .cc-tag{ color:#9fab90; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:10px; }

  .compare-row{ display:flex; justify-content:space-between; gap:8px; padding:8px 0; border-top:1px solid rgba(255,255,255,0.08); font-size:0.8rem; }

  .compare-row .cr-label{ color:#9fab90; }

  .compare-row .cr-val{ color:#e6e1bd; text-align:right; }

  .compare-col ul{ list-style:none; margin:10px 0 0; padding:0; font-size:0.78rem; color:#c3cdb6; }

  .compare-col ul li{ padding:3px 0; }

  .compare-col ul li::before{ content:'\2713'; color:var(--gold-light); margin-right:6px; }

  .compare-col .btn{ margin-top:14px; width:100%; padding:10px; font-size:0.78rem; text-align:center; }


  .service-hero-inner {
    animation: serviceHeroIn 1s cubic-bezier(.22,.68,0,1.01) both;
  }



  /* ============ BOOKING FORM TABS ============ */
  .form-tab {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1.5px solid rgba(201,162,39,0.4);
    background: transparent;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .form-tab.active {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-color: var(--gold) !important;
    font-weight: 700 !important;
  }


  .form-tab {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }


  /* Form card hover lift */
  .booking-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }




  /* Service hero enhancements */
  .service-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
    margin-bottom: 18px !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    color: #fff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .service-hero .lead {
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
    max-width: 700px !important;
    margin: 0 auto 34px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .service-hero .kicker {
    font-size: 0.85rem !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
    display: inline-block !important;
  }

  .service-hero .btn-gold {
    padding: 16px 36px !important;
    font-size: 1rem !important;
  }


  /* ============ GOOGLE REVIEWS INTEGRATION ============ */
  .google-reviews-section {
    background: linear-gradient(175deg, var(--forest-deep) 0%, var(--black) 100%);
    padding: 84px 24px;
  }

  .google-reviews-section .section-head h2,
  .google-reviews-section .section-head p {
    color: #fff;
  }

  .google-reviews-section .section-head::before {
    background: var(--gold);
  }

  .google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 30px auto 40px;
    max-width: 600px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: 20px;
    padding: 24px 32px;
    backdrop-filter: blur(4px);
  }

  .google-reviews-badge .g-rating {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
  }

  .google-reviews-badge .g-stars {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .google-reviews-badge .g-count {
    color: var(--text-on-dark);
    font-size: 0.9rem;
  }

  .google-reviews-badge .g-logo {
    width: 32px;
    height: 32px;
    opacity: 0.9;
  }

  .google-reviews-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
  }

  .google-reviews-cta p {
    color: var(--text-on-dark);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .google-reviews-widget-wrap {
    max-width: 1100px;
    margin: 0 auto 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: 24px;
    padding: 40px;
    min-height: 300px;
    position: relative;
  }

  .google-reviews-widget-wrap .widget-placeholder {
    text-align: center;
    color: var(--text-on-dark);
    padding: 40px 20px;
  }

  .google-reviews-widget-wrap .widget-placeholder h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .google-reviews-widget-wrap .widget-placeholder p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .google-reviews-widget-wrap .widget-placeholder .btn {
    margin: 8px;
  }

  .write-review-section {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(165deg, rgba(227,183,110,0.08), rgba(227,183,110,0.02));
    border: 1.5px solid rgba(201,162,39,0.3);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
  }

  .write-review-section h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .write-review-section p {
    color: var(--text-on-dark);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .write-review-section .btn-gold {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .write-review-section .btn-outline-gold {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .review-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .review-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    margin: 36px auto;
    color: var(--text-on-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .review-divider::before,
  .review-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201,162,39,0.3);
  }

  .google-review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius);
    padding: 26px;
    transition: all 0.3s ease;
  }

  .google-review-card:hover {
    border-color: rgba(201,162,39,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(10,23,18,0.4);
  }

  .google-review-card .g-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }

  .google-review-card .g-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .google-review-card .g-meta {
    flex: 1;
  }

  .google-review-card .g-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
  }

  .google-review-card .g-stars-small {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .google-review-card .g-time {
    color: #7c8871;
    font-size: 0.78rem;
  }

  .google-review-card .g-text {
    color: var(--text-on-dark);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
  }

  .google-review-card .g-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .reviews-grid-google {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto 50px;
  }
@media(max-width:900px) {

    .reviews-grid-google { grid-template-columns: 1fr; }

    .google-reviews-widget-wrap { padding: 24px; }

    .write-review-section { padding: 32px 24px; }

}


  .service-back-btn {
    position: fixed;
    top: 90px;
    left: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(10,23,18,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,162,39,0.5);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    pointer-events: auto;
  }

  .service-back-btn:hover {
    background: rgba(227, 183, 110, 0.25);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
  }

  .service-back-btn svg {
    flex-shrink: 0;
  }
@media(max-width: 640px) {

    .service-back-btn {
      top: 80px;
      left: 16px;
      padding: 8px 14px;
      font-size: 0.78rem;
    }

    .service-back-btn svg {
      width: 14px;
      height: 14px;
    }

}
@media(max-width:760px) {

    .hero{padding:56px 20px 64px !important; min-height:auto !important;}

    .service-hero{padding:44px 20px 52px !important; min-height:260px !important;}

    .hero-inner{padding:0;}

    .hero p.lead{margin-bottom:24px !important;}

    .hero-stats{margin-top:30px !important; gap:26px !important;}

    .tour-hero{padding:40px 20px !important;}


    .section{padding:48px 20px !important;}

    .section-head{margin:0 auto 28px !important;}

    .section-head p{margin-top:10px !important;}


    .cta-dark{padding:48px 20px !important;}



    .stats-strip{padding:36px 20px !important;}

    .stats-grid{gap:22px !important;}

    .directors-strip{padding:48px 20px !important;}

    .directors-grid{gap:30px !important;}


    .why-quote{padding:34px 24px !important;}

    .why-item{padding:22px 20px !important;}

    .about-visual{padding:32px 22px !important; min-height:auto !important;}

    .about-copy h3{margin:18px 0 8px !important;}


    .faq-col, .contact-form-col{padding:32px 20px !important;}

    .faq-list{margin-top:22px !important;}

    .faq-q{padding:18px 2px !important;}


    .booking-wrap{padding:26px 18px !important;}

    .review-form-wrap{padding:24px 18px !important;}

    .service-body{padding:24px 20px 20px !important;}

    .service-card .btn{margin-top:14px !important;}

    .exp-card .exp-body{padding:20px 18px !important;}

    .exp-grid{gap:18px !important;}

    .treasure-card{padding:16px !important;}

    .treasure-grid{gap:14px !important;}

    .fleet-grid{gap:16px !important;}

    .services-grid{gap:16px !important;}

    .reviews-grid{gap:14px !important; margin-bottom:32px !important;}

    .pillar{padding:16px !important;}

    .pillars{gap:12px !important;}

    .info-item{padding:16px !important;}

    .info-list{gap:12px !important; margin:32px auto 0 !important;}


    footer{padding:40px 20px 20px !important;}

    .footer-grid{gap:26px !important; margin:0 auto 26px !important;}

    .footer-bottom{padding-top:16px !important;}


    .service-detail-content h2,
    .service-detail-content h3{margin:32px 0 14px !important;}


    .service-feature-item{padding:22px 18px !important;}

}
@media(max-width:480px) {

    .container{padding:0 18px;}

    .hero{padding:48px 18px 56px !important;}

    .service-hero{padding:40px 18px 46px !important;}

    .section{padding:40px 18px !important;}

    .cta-dark{padding:40px 18px !important;}

    .stats-strip{padding:30px 18px !important;}

    .directors-strip{padding:40px 18px !important;}

}


  /* ============ DAY-BY-DAY CLICKABLE CARDS + POPUP ============ */
  a.timeline-content.day-trigger{ display:block; cursor:pointer; position:relative; }

  .timeline-content.day-trigger img{ height:180px; transition:transform .5s ease; }

  .timeline-content.day-trigger:hover img{ transform:scale(1.06); }

  .timeline-content.day-trigger:hover{ box-shadow:0 14px 34px -10px rgba(10,23,18,0.28); transform:translateY(-3px); }

  .timeline-content.day-trigger .timeline-body{ padding:20px 24px 22px; }

  .day-view-cta{
    display:inline-flex; align-items:center; gap:7px; margin-top:12px;
    color:var(--gold-dark); font-weight:700; font-size:0.82rem;
    text-transform:uppercase; letter-spacing:0.5px;
  }

  .day-view-cta svg{ width:15px; height:15px; transition:transform .3s ease; }

  .timeline-content.day-trigger:hover .day-view-cta svg{ transform:translateX(4px); }


  .day-modal-wrap{
    position:fixed; inset:0; z-index:1400; display:none;
    align-items:flex-start; justify-content:center; overflow-y:auto;
    background:rgba(4,8,5,0.86); padding:40px 16px;
  }

  .day-modal-wrap.open{ display:flex; animation:pageIn .35s cubic-bezier(.22,.68,0,1.01); }

  .day-modal{
    background:var(--cream); border-radius:22px; max-width:640px; width:100%;
    box-shadow:0 40px 90px -20px rgba(0,0,0,0.7); overflow:hidden; position:relative;
  }

  .day-modal .dm-close{
    position:absolute; top:16px; right:16px; width:36px; height:36px; border-radius:50%;
    background:rgba(10,23,18,0.55); border:1px solid rgba(255,255,255,0.3); color:#fff;
    font-size:1.1rem; cursor:pointer; z-index:2; display:flex; align-items:center; justify-content:center;
  }

  .day-modal .dm-media{ position:relative; height:280px; overflow:hidden; }

  .day-modal .dm-media img{ width:100%; height:100%; object-fit:cover; }

  .day-modal .dm-media::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(10,23,18,0.55) 0%, rgba(10,23,18,0) 55%);
  }

  .day-modal .dm-body{ padding:30px 34px 34px; }

  .day-modal .dm-body .kicker{ display:block; margin-bottom:8px; }

  .day-modal .dm-body h3{ font-size:1.5rem; margin-bottom:14px; color:var(--forest-deep); }

  .day-modal .dm-body p{ color:var(--muted); font-size:0.95rem; line-height:1.75; margin-bottom:24px; }

  .dm-detail-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }

  .dm-detail{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:16px 18px; }

  .dm-detail-label{
    display:flex; align-items:center; gap:7px; text-transform:uppercase; letter-spacing:0.5px;
    font-size:0.72rem; font-weight:700; color:var(--gold-dark); margin-bottom:6px;
  }

  .dm-detail-val{ color:var(--forest-deep); font-size:0.88rem; font-weight:600; line-height:1.5; }
@media(max-width:640px) {

    .dm-detail-grid{ grid-template-columns:1fr; }

    .day-modal .dm-body{ padding:24px 22px 28px; }

    .day-modal .dm-media{ height:210px; }

}


  /* ============ THE LOOKBOOK (Experiences page) ============ */
  .lookbook-hero{
    position:relative; min-height:78vh; display:flex; align-items:flex-end;
    padding:0 0 80px; overflow:hidden; color:#fff;
  }

  .lookbook-hero .lb-bg{
    position:absolute; inset:0; background-size:cover; background-position:center;
    animation:lbKen 22s ease-in-out infinite alternate;
  }
@keyframes lbKen {
 from{ transform:scale(1); }
 to{ transform:scale(1.12); }

}

  .lookbook-hero .lb-scrim{
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(5,10,4,0.88) 0%, rgba(5,10,4,0.55) 30%, rgba(5,10,4,0.35) 55%, rgba(5,10,4,0.65) 100%);
  }

  .lookbook-hero .lb-inner{ position:relative; z-index:2; max-width:820px; margin:0 auto; padding:0 24px; text-align:center; }

  .lookbook-hero .lb-inner h1{ color:#fff; font-size:clamp(2.1rem,5.2vw,3.6rem); margin-top:14px; }

  .lookbook-hero .lb-inner p{ color:var(--text-on-dark); font-size:1.15rem; max-width:640px; margin:16px auto 0; line-height:1.7; }

  .lookbook-hero .lb-rule{ width:56px; height:2px; background:var(--gold); margin:22px auto 0; }


  .lookbook-hero .lb-inner h1,
.lookbook-hero .lb-inner p,
.lookbook-hero .lb-inner .kicker{
  text-shadow:0 2px 12px rgba(5,10,4,0.85), 0 1px 4px rgba(5,10,4,0.6);
}
.lb-story{ position:relative; padding:0; overflow:hidden; margin-bottom:60px; }

  .lb-story-row{
    display:grid; grid-template-columns:1.05fr 0.95fr; align-items:center; gap:0;
    max-width:1320px; margin:0 auto;
  }

  .lb-story-row.rev{ direction:rtl; }

  .lb-story-row.rev > *{ direction:ltr; }

  .lb-story-media{ position:relative; height:560px; overflow:hidden; border-radius:var(--radius); }

  .lb-story-media img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s cubic-bezier(.22,.68,0,1.01); }

  .lb-story:hover .lb-story-media img{ transform:scale(1.06); }

  .lb-story-text{ padding:60px 64px; position:relative; z-index:2; }

  .lb-story-num{
    font-family:'Playfair Display', serif; font-size:5rem; line-height:1;
    color:rgba(68,107,86,0.14); font-weight:700; margin-bottom:-18px;
  }

  .lb-story-text .kicker{ display:block; margin-bottom:10px; }

  .lb-story-text h2{ font-size:clamp(1.6rem,3vw,2.2rem); margin-bottom:16px; }

  .lb-story-text p{ color:var(--muted); font-size:1rem; line-height:1.8; margin-bottom:26px; max-width:460px; }

  .lb-story-meta{ display:flex; gap:22px; margin-bottom:26px; }

  .lb-story-meta div{ font-size:0.8rem; color:var(--ink); }

  .lb-story-meta strong{ display:block; font-family:'Playfair Display', serif; color:var(--forest-deep); font-size:1.3rem; }
@media(max-width:900px) {

    .lb-story-row, .lb-story-row.rev{ grid-template-columns:1fr; direction:ltr; }

    .lb-story-media{ height:320px; }

    .lb-story-text{ padding:36px 24px 56px; }

    .lb-story-meta{ flex-wrap:wrap; gap:16px; }

}


  /* ============ BESPOKE / TAILORED CALLOUT ============ */
  .bespoke-section{
    position:relative; padding:90px 24px; overflow:hidden;
    background:
      linear-gradient(160deg, rgba(6,20,14,0.92) 0%, rgba(6,20,14,0.88) 100%),
      url('../images/site/blue1.jpg') center/cover no-repeat;
    background-attachment:fixed;
  }

  .bespoke-wrap{
    max-width:1080px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
  }

  .bespoke-copy .kicker{ color:var(--gold-light); }

  .bespoke-copy h2{ color:#fff; font-size:clamp(1.8rem,3.6vw,2.6rem); margin:14px 0 18px; }

  .bespoke-copy p{ color:var(--text-on-dark); font-size:1.02rem; line-height:1.8; max-width:440px; }

  .bespoke-copy ul{ margin-top:24px; display:flex; flex-direction:column; gap:12px; }

  .bespoke-copy ul li{
    display:flex; align-items:center; gap:10px; color:var(--text-on-dark); font-size:0.9rem;
  }

  .bespoke-copy ul li::before{
    content:'\2713'; width:20px; height:20px; border-radius:50%; background:rgba(227,183,110,0.18);
    color:var(--gold-light); display:flex; align-items:center; justify-content:center; font-size:0.7rem; flex-shrink:0;
  }

  .bespoke-form-card{
    background:rgba(250,245,229,0.98); border-radius:20px; padding:32px 30px;
    box-shadow:0 30px 70px -20px rgba(0,0,0,0.6); border:1px solid rgba(227,183,110,0.25);
  }

  .bespoke-form-card h3{ font-size:1.2rem; margin-bottom:4px; color:var(--forest-deep); }

  .bespoke-form-card .bf-sub{ color:var(--muted); font-size:0.82rem; margin-bottom:20px; }

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

  .bf-field{ margin-bottom:12px; }

  .bf-field label{ display:block; font-size:0.75rem; font-weight:600; color:var(--forest-deep); margin-bottom:6px; text-transform:uppercase; letter-spacing:0.4px; }

  .bf-field input, .bf-field select, .bf-field textarea{
    width:100%; padding:11px 13px; border:1px solid var(--line); border-radius:10px;
    background:#fff; font-size:0.9rem; color:var(--ink);
  }

  .bf-field textarea{ resize:vertical; min-height:64px; }

  .bespoke-form-card .btn{ width:100%; margin-top:6px; }

  .bespoke-form-card .form-msg{ margin-top:12px; font-size:0.82rem; }
@media(max-width:860px) {

    .bespoke-wrap{ grid-template-columns:1fr; gap:34px; }

    .bespoke-section{ padding:64px 20px; background-attachment:scroll; }

    .bf-row{ grid-template-columns:1fr; }

}

/* ============================================================
   PREMIUM HOVER LAYER
   Placed last on purpose so it wins the cascade (same
   specificity, later source order) without needing to hunt
   down every earlier .service-card/.fleet-card rule above.
   ============================================================ */

/* ---- Cards: smooth lift + soft shadow on hover ---- */
.service-card,
.fleet-card,
.exp-card,
.review-card,
.treasure-card,
.director-card,
.google-review-card,
.interview-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease !important;
}
.service-card:hover,
.exp-card:hover,
.review-card:hover,
.treasure-card:hover,
.director-card:hover,
.google-review-card:hover,
.interview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
/* Fleet cards keep their gold showroom glow, layered with the same lift + soft shadow */
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(227, 183, 110, 0.4),
              0 0 60px -8px rgba(227, 183, 110, 0.25);
}

/* ---- CTA / "Book Now" buttons: premium scale + background transition ---- */
.btn {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              background-color 0.4s ease !important;
}
.btn:hover {
  transform: translateY(-3px) scale(1.03);
}
.btn-gold:hover,
.nav-book-btn:hover,
.nav-book-mobile:hover {
  background-color: var(--gold-light);
  box-shadow: 0 15px 30px -8px rgba(227, 183, 110, 0.45);
}


/* Form interaction safety: keep fields editable above decorative overlays. */
.booking-wrap form,
.booking-wrap form input,
.booking-wrap form select,
.booking-wrap form textarea,
.booking-wrap form button {
  pointer-events: auto;
}
.booking-wrap form input,
.booking-wrap form textarea {
  user-select: text;
  -webkit-user-select: text;
}

/* Ensure the booking card stays above decorative/navigation layers. */
.booking-wrap { position: relative; z-index: 10; }
.booking-wrap form { position: relative; z-index: 11; }
.booking-wrap input,
.booking-wrap select,
.booking-wrap textarea,
.booking-wrap button { position: relative; z-index: 12; }
.nav-backdrop:not(.open) { pointer-events: none !important; visibility: hidden !important; }
