 :root{
    --gold:#D39A29;
    --gold-light:#e8b957;
    --gold-dark:#a87817;
    --black:#000000;
    --near-black:#0c0c0c;
    --charcoal:#141414;
    --white:#ffffff;
    --off-white:#faf8f4;
    --ink:#111111;
    --ink-soft:#54544f;
    --line:rgba(0,0,0,0.1);
    --line-dark:rgba(255,255,255,0.14);
    --shadow:0 24px 55px -22px rgba(0,0,0,0.45);
    --wrap:1220px;
  }


  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  h1,h2,h3{
    font-family:'Fraunces',serif;
    font-weight:600;
    line-height:1.08;
    margin:0;
    letter-spacing:-0.01em;
  }
  p{margin:0;}
  .wrap{max-width:var(--wrap);margin:0 auto;padding:0 15px;}
  section{position:relative;}
  :focus-visible{outline:3px solid var(--gold);outline-offset:3px;}
  .photo{width:100%;height:100%;object-fit:cover;display:block;}
  .frame{position:relative;overflow:hidden;background:#1a1a1a;}

  /* ---------- Signature stripe divider (tiger stripe motif, gold + black) ---------- */
  .stripe-divider{
    height:14px;width:100%;
    background:
      repeating-linear-gradient(115deg,
        var(--gold) 0 26px,
        transparent 26px 46px,
        var(--black) 46px 58px,
        transparent 58px 84px);
  }

  .eyebrow{
    display:inline-flex;align-items:center;gap:10px;
    font-family:'Inter',sans-serif;font-weight:700;font-size:12.5px;
    letter-spacing:0.18em;text-transform:uppercase;color:var(--gold-dark);
    margin-bottom:14px;
  }
  .eyebrow::before{
    content:"";width:26px;height:2px;background:var(--gold);display:inline-block;
    clip-path:polygon(0 0,100% 30%,80% 100%,0 70%);
  }
  section.on-dark .eyebrow{color:var(--gold-light);}

  .btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:15px 30px;border-radius:999px;
    font-family:'Inter',sans-serif;font-weight:700;font-size:13.5px;
    letter-spacing:0.06em;text-transform:uppercase;
    border:2px solid transparent;cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  }
  .btn-gold{background:var(--gold);border-color:var(--gold);color:#000;box-shadow:0 10px 26px -8px rgba(211,154,41,0.6);}
  .btn-gold:hover{background:var(--black);border-color:var(--black);color:var(--gold);transform:translateY(-2px);}
  .btn-outline{background:transparent;border-color:#fff;color:#fff;}
  .btn-outline:hover{background:#fff;color:#000;}
  .btn-line{background:transparent;color:var(--black);border-color:var(--black);}
  .btn-line:hover{background:var(--black);color:#fff;}

  /* ================= HEADER ================= */
  /* ===== DESKTOP STYLES (your existing) ===== */
  header.site {
    background: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 28px;
    max-width: var(--wrap);
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 21px;
    color: var(--white);
  }
  .logo img {
    width: 200px;
    height: 90px;
    object-fit: contain;
  }
  nav.main-menu {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  nav.main-menu a {
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.15s;
  }
  nav.main-menu a:hover {
    color: var(--gold);
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .menu-toggle {
    display: none; /* hidden on desktop */
    background: none;
    border: 1px solid var(--line-dark);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
  }
  .menu-toggle:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  /* ===== MOBILE STYLES (corrected) ===== */
  @media (max-width: 860px) {
    .nav-row {
      flex-wrap: wrap;
      padding: 10px 20px;
      position: relative;
    }
    .logo img {
      width: 140px;
      height: auto;
    }
    /* Hide desktop menu */
    nav.main-menu {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 12px;
      padding: 16px 0 8px;
      margin-top: 12px;
      border-top: 1px solid var(--line-dark);
      order: 3; /* push below logo/cta row */
    }
    /* Show menu when open */
    nav.main-menu.open {
      display: flex;
    }
    /* Mobile menu links alignment */
    nav.main-menu a {
      font-size: 16px;
      padding: 6px 0;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    /* Keep the toggle button visible and in place */
    .menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Adjust CTA gap */
    .nav-cta {
      gap: 12px;
    }
    /* Optional: hide "Book Now" button on very small screens if needed */
    @media (max-width: 400px) {
      .btn-gold {
        padding: 0.4rem 1rem;
        font-size: 0.72rem;
      }
    }
  }
  /* ================= HERO ================= */
  .hero{
    background:
      radial-gradient(1100px 500px at 85% -10%, rgba(211,154,41,0.22), transparent 60%),
      var(--black);
    color:var(--white);
    padding:96px 0 88px;
    overflow:hidden;
  }
  .hero .wrap{display:grid;grid-template-columns:1.1fr 0.9fr;gap:64px;align-items:center;}
  .hero h1{font-size:clamp(36px,4.6vw,58px);color:var(--white);}
  .hero h1 em{font-style:italic;color:var(--gold);}
  .hero p{margin-top:22px;font-size:17px;line-height:1.75;color:rgba(255,255,255,0.75);max-width:52ch;}
  .hero p + p{margin-top:14px;}
  .hero-ctas{margin-top:34px;display:flex;gap:16px;flex-wrap:wrap;}
  .hero-art{
    position:relative;aspect-ratio:4/5;border-radius:24px;overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(211,154,41,0.4);
  }
  .hero-art .tag{
    position:absolute;bottom:22px;left:22px;right:22px;
    background:rgba(0,0,0,0.72);backdrop-filter:blur(6px);
    border:1px solid rgba(211,154,41,0.45);border-radius:12px;
    padding:16px 18px;color:var(--white);
  }
  .hero-art .tag strong{display:block;font-family:'Fraunces',serif;font-size:17px;color:var(--gold);}
  .hero-art .tag span{font-size:13px;color:rgba(255,255,255,0.72);}

  /* ================= LEAD FORM ================= */
  .lead-section{background:var(--near-black);padding:0 0 76px;color:var(--white);}
  .lead-card{
    margin-top:-52px;background:var(--charcoal);
    border:1px solid var(--line-dark);border-radius:20px;
    padding:36px 34px;box-shadow:var(--shadow);
  }
  .lead-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap;margin-bottom:26px;}
  .lead-head h2{font-size:26px;color:var(--white);}
  .lead-head p{color:rgba(255,255,255,0.6);font-size:14px;margin-top:6px;}
  .lf-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
  .lf-fld{display:flex;flex-direction:column;gap:8px;}
  .lf-fld label{font-size:11.5px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:rgba(255,255,255,0.85);}
  .lf-fld label .req{color:var(--gold);}
  .lf-fld input,.lf-fld select{
    height:50px;background:rgba(255,255,255,0.06);border:1.5px solid rgba(255,255,255,0.18);
    border-radius:10px;padding:0 14px;font-family:'Inter',sans-serif;font-size:14px;color:var(--white);
  }
  .lf-fld select option{background:#1a1a1a;color:var(--white);}
  .lf-fld input::placeholder{color:rgba(255,255,255,0.4);}
  .lf-fld input:focus,.lf-fld select:focus{border-color:var(--gold);background:rgba(211,154,41,0.1);}
  .phone-wrap{position:relative;}
  .phone-wrap input{padding-left:52px;}
  .phone-wrap .pfx{position:absolute;left:0;top:0;height:50px;width:46px;display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--gold);border-right:1.5px solid rgba(255,255,255,0.18);}
  .lf-err{font-size:11.5px;color:#ff9b8a;display:none;}
  .lf-err.show{display:block;}
  .lf-fld.err input,.lf-fld.err select{border-color:#ff9b8a;}
  .lf-submit-row{margin-top:26px;display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
  .lf-badges{display:flex;gap:18px;flex-wrap:wrap;}
  .lf-badge{font-size:11.5px;letter-spacing:0.06em;text-transform:uppercase;color:rgba(255,255,255,0.55);font-weight:600;}
  .lf-btn{border:none;cursor:pointer;}
  #lf-thanks{display:none;margin-top:18px;padding:14px 16px;border-radius:10px;background:rgba(211,154,41,0.15);border:1px solid rgba(211,154,41,0.4);color:var(--gold);font-size:14px;}

  /* ================= GENERIC SECTION ================= */
  .section{padding:88px 0;}
  .section.tight{padding:64px 0;}
  .on-dark{background:var(--black);color:var(--white);}
  .on-dark h2,.on-dark h3{color:var(--white);}
  .on-dark p{color:rgba(255,255,255,0.72);}
  .off{background:var(--off-white);}

  /* ================= WHY CHOOSE US ================= */
  .why-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:60px;align-items:center;}
  .why-photo{aspect-ratio:4/5;border-radius:20px;border:1px solid var(--line);}
  h2.section-title{font-size:clamp(28px,3.2vw,40px);}
  .why-text p{color:var(--ink-soft);font-size:16.5px;line-height:1.75;margin-top:16px;}
  .why-points{display:grid;gap:16px;margin-top:28px;}
  .point{
    display:flex;gap:14px;align-items:flex-start;
    background:var(--white);border:1px solid var(--line);border-radius:12px;padding:16px 18px;
  }
  .point .dot{
    flex:none;width:32px;height:32px;border-radius:8px;
    background:var(--black);
    display:flex;align-items:center;justify-content:center;color:var(--gold);font-weight:800;font-size:15px;
  }
  .point strong{font-size:15px;font-weight:600;}

  /* ================= STATS ================= */
  .stats-band{background:var(--black);color:var(--white);position:relative;}
  .stats-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:18px;margin-bottom:44px;}
  .stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
  .stat-card{
    border:1px solid var(--line-dark);border-radius:16px;padding:30px 26px;
    background:rgba(255,255,255,0.03);
    text-align:left;
  }
  .stat-num{font-family:'Fraunces',serif;font-size:clamp(38px,4vw,52px);color:var(--gold);line-height:1;}
  .stat-label{margin-top:10px;font-size:14px;color:rgba(255,255,255,0.65);letter-spacing:0.02em;}

  /* ================= RESERVE INTRO + NOTICE ================= */
  .reserve-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:60px;align-items:start;}
  .reserve-grid p{color:var(--ink-soft);font-size:16.5px;line-height:1.75;margin-top:16px;}
  .notice{
    margin-top:56px;display:flex;gap:16px;align-items:flex-start;
    background:#fdf1da;border:1px solid var(--gold);border-radius:14px;padding:20px 22px;
  }
  .notice .flag{flex:none;width:34px;height:34px;border-radius:8px;background:var(--black);color:var(--gold);font-weight:800;display:flex;align-items:center;justify-content:center;font-family:'Fraunces',serif;}
  .notice p{font-size:14.5px;line-height:1.7;color:#5a4212;}

  /* ================= ATTRACTIONS GRID ================= */
  .attr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:46px;}
  .attr-card{
    background:var(--white);border:1px solid var(--line);border-radius:16px;overflow:hidden;
    box-shadow:0 12px 30px -18px rgba(0,0,0,0.2);
    display:flex;flex-direction:column;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .attr-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px -18px rgba(0,0,0,0.3);border-color:var(--gold);}
  .attr-photo{aspect-ratio:16/10;}
  .attr-body{padding:22px 22px 26px;}
  .attr-body h3{font-size:19px;margin-bottom:10px;}
  .attr-body p{color:var(--ink-soft);font-size:14.5px;line-height:1.65;}

  /* ================= FEATURES ================= */
  .feat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:46px;}
  .feat-card{
    background:var(--charcoal);color:var(--white);border-radius:16px;padding:28px 24px;
    border:1px solid var(--line-dark);
  }
  .feat-icon{width:46px;height:46px;border-radius:12px;background:var(--gold);display:flex;align-items:center;justify-content:center;margin-bottom:18px;color:#000;font-size:20px;}
  .feat-card h3{font-size:17px;color:var(--white);margin-bottom:8px;}
  .feat-card p{font-size:14px;color:rgba(255,255,255,0.65);line-height:1.6;}

  /* ================= WELCOME + CTA CARDS ================= */
  .welcome-inner{max-width:760px;}
  .welcome-inner p{color:var(--ink-soft);font-size:16.5px;line-height:1.8;margin-top:18px;}
  .cta-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:52px;}
  .cta-card{
    position:relative;border-radius:18px;overflow:hidden;aspect-ratio:4/5;
    display:flex;align-items:flex-end;padding:26px;
    border:1px solid var(--line);
  }
  .cta-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
  .cta-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg, rgba(0,0,0,0.88), rgba(0,0,0,0.15) 60%);z-index:1;}
  .cta-card .content{position:relative;z-index:2;color:var(--white);}
  .cta-card h3{font-size:22px;color:var(--white);margin-bottom:14px;}
  .cta-card .btn{padding:11px 22px;font-size:12px;}

  /* ================= TESTIMONIALS ================= */
  .testi-head{max-width:520px;}
  .testi-head p{color:var(--ink-soft);margin-top:14px;font-size:16px;}
  .testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
  .testi-card{background:var(--white);border:1px solid var(--line);border-radius:16px;padding:26px 24px;}
  .stars{color:var(--gold);font-size:14px;letter-spacing:2px;margin-bottom:14px;}
  .testi-card p.quote{font-size:15px;line-height:1.7;color:var(--ink);}
  .testi-name{margin-top:20px;font-weight:700;font-size:14px;}
  .testi-name span{display:block;font-weight:400;color:var(--ink-soft);font-size:12.5px;margin-top:2px;}

  /* ================= WHY VISIT ================= */
  .whyvisit{background:var(--black);color:var(--white);text-align:center;}
  .whyvisit-inner{max-width:780px;margin:0 auto;}
  .whyvisit p{color:rgba(255,255,255,0.72);font-size:16.5px;line-height:1.8;margin-top:20px;}
  .whyvisit .btn{margin-top:30px;}

  /* ================= HOW TO REACH ================= */
  .reach-photo{aspect-ratio:4/5;border-radius:20px;border:1px solid var(--line);}

  /* ================= FAMOUS TIGERS (redesigned) ================= */
  .tigers-head{max-width:640px;margin:0 auto 50px;text-align:center;}
  .tigers-head p{color:var(--ink-soft);margin-top:14px;font-size:16px;}
  .tiger-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
  .tiger-card{
    background:var(--white);border:1px solid var(--line);border-radius:18px;overflow:hidden;
    box-shadow:0 16px 34px -20px rgba(0,0,0,0.3);
  }
  .tiger-photo-wrap{position:relative;aspect-ratio:4/5;}
  .tiger-photo-wrap img{width:100%;height:100%;object-fit:cover;}
  .tiger-photo-wrap.deceased img{filter:grayscale(1) contrast(1.05);}
  .tiger-code{
    position:absolute;top:14px;left:14px;background:var(--gold);color:#000;
    font-family:'Fraunces',serif;font-weight:700;font-size:13px;padding:5px 12px;border-radius:999px;
  }
  .tiger-status{
    position:absolute;top:14px;right:14px;background:rgba(0,0,0,0.65);color:#fff;
    font-size:10.5px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;padding:5px 10px;border-radius:999px;
    backdrop-filter:blur(4px);
  }
  .tiger-name-bar{
    position:absolute;left:0;right:0;bottom:0;padding:16px 18px;
    background:linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
  }
  .tiger-name-bar h3{color:#fff;font-size:20px;}
  .tiger-body{padding:20px 20px 8px;}
  .tiger-body summary{
    list-style:none;cursor:pointer;font-size:13.5px;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;
    color:var(--gold-dark);display:flex;align-items:center;gap:8px;padding-bottom:16px;
  }
  .tiger-body summary::-webkit-details-marker{display:none;}
  .tiger-body summary .chev{transition:transform .2s;font-size:11px;}
  .tiger-body[open] summary .chev{transform:rotate(180deg);}
  .tiger-body p{color:var(--ink-soft);font-size:14.5px;line-height:1.7;padding-bottom:20px;}

  /* ================= FINAL CTA BANNER ================= */
  .final-cta{color:var(--white);text-align:center;position:relative;overflow:hidden;}
  .final-cta img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
  .final-cta::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.6));z-index:1;}
  .final-cta-inner{position:relative;z-index:2;max-width:700px;margin:0 auto;}
  .final-cta p{color:rgba(255,255,255,0.78);margin-top:18px;font-size:16.5px;line-height:1.75;}
  .final-cta .btn{margin-top:30px;}

  /* ================= BLOG ================= */
  .blog-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;}
  .blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:26px;margin-top:44px;}
  .blog-card{background:var(--white);border:1px solid var(--line);border-radius:16px;overflow:hidden;}
  .blog-photo{aspect-ratio:16/9;}
  .blog-body{padding:26px 24px;}
  .blog-tag{display:inline-block;font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:#000;background:var(--gold);padding:4px 10px;border-radius:999px;margin-bottom:14px;}
  .blog-body h3{font-size:20px;margin-bottom:10px;}
  .blog-body p{color:var(--ink-soft);font-size:14.5px;line-height:1.65;}
  .blog-meta{display:flex;gap:16px;margin-top:18px;font-size:12.5px;color:var(--ink-soft);}
  .blog-read{margin-top:16px;font-weight:700;font-size:13.5px;color:var(--gold-dark);display:inline-flex;align-items:center;gap:6px;}

  /* ================= FOOTER (redesigned) ================= */
  footer.site{background:var(--black);color:rgba(255,255,255,0.75);}
  .foot-cta{
    border-bottom:1px solid var(--line-dark);
    padding:40px 8px;
    display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  }
  .foot-cta h3{color:var(--white);font-size:24px;}
  .foot-cta p{color:rgba(255,255,255,0.6);font-size:14px;margin-top:6px;}
  .foot-main{padding:64px 0 32px;}
  .foot-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:44px;}
  .foot-logo{display:flex;align-items:center;gap:10px;font-family:'Fraunces',serif;font-size:20px;color:var(--white);margin-bottom:18px;}
  .foot-disclaimer{font-size:13.5px;line-height:1.8;}
  .foot-disclaimer strong{color:var(--gold);}
  .foot-h{font-family:'Fraunces',serif;font-size:17px;color:var(--white);margin-bottom:18px;position:relative;padding-bottom:12px;}
  .foot-h::after{content:"";position:absolute;left:0;bottom:0;width:30px;height:2px;background:var(--gold);}
  .foot-list{list-style:none;margin:0;padding:0;display:grid;gap:12px;font-size:14px;}
  .foot-list a:hover{color:var(--gold);}
  .foot-bottom{
    padding:26px 0;border-top:1px solid var(--line-dark);
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;font-size:13px;
  }
  .foot-policy{display:flex;gap:22px;flex-wrap:wrap;}
  .foot-policy a:hover{color:var(--gold);}

  /* ================= RESPONSIVE ================= */
  @media (max-width:1024px){
    .hero .wrap{grid-template-columns:1fr;}
    .hero-art{max-width:460px;}
    .why-grid,.reserve-grid{grid-template-columns:1fr;}
    .stats-grid{grid-template-columns:repeat(3,1fr);}
    .attr-grid{grid-template-columns:repeat(2,1fr);}
    .feat-grid{grid-template-columns:repeat(2,1fr);}
    .cta-cards{grid-template-columns:repeat(3,1fr);}
    .testi-grid{grid-template-columns:repeat(2,1fr);}
    .tiger-grid{grid-template-columns:repeat(2,1fr);}
    .blog-grid{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr 1fr;}
    nav.main-menu{display:none;}
    .menu-toggle{display:flex;align-items:center;justify-content:center;}
  }
  @media (max-width:768px){
    .lf-grid{grid-template-columns:repeat(2,1fr);}
    .stats-grid{grid-template-columns:1fr;}
    .attr-grid{grid-template-columns:1fr;}
    .feat-grid{grid-template-columns:1fr;}
    .cta-cards{grid-template-columns:1fr;}
    .testi-grid{grid-template-columns:1fr;}
    .tiger-grid{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr;  padding-left: 15px;}
    .section{padding:64px 0;}
    .lead-card{padding:26px 20px;}
   .site .btn-gold{
    display: none;
   }
  }
  @media (max-width:480px){
    .lf-grid{grid-template-columns:1fr;}
    .nav-row{padding:14px 18px;}
  }
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
  }




  /* book css */

  
      
        /* ========== MAIN LAYOUT ========== */
        .main {
            max-width: 1220px;
            margin: 0 auto;
            padding: 1.2rem 1.2rem 2.5rem;
        }

        #page1, #page2, #page3 { animation: fadeSlideIn 0.45s ease forwards; }
        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }
        #page2, #page3 { display: none; }

        /* Page 1 grid */
        #page1 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-items: start;
        }
        @media (max-width: 1024px) {
            #page1 { grid-template-columns: 1fr; }
        }

        /* ========== FORM PANEL ========== */
        .form-panel {
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            padding: 1.5rem 1.5rem 1.8rem;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: var(--shadow-sm);
        }
        .page-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--gold-light);
            background: rgba(211,154,41,0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin-bottom: 0.6rem;
        }
        .page-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 0.2rem;
        }
        .page-title span { color: var(--gold); }
        .page-sub {
            font-size: 0.8rem;
            color: #aaa;
            margin-bottom: 1.2rem;
        }

        .step-h {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.6rem;
        }
        .snum {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--gold);
            color: #000;
            font-weight: 700;
            font-size: 0.72rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .slbl { font-weight: 600; font-size: 0.82rem; color: #e0e0e0; }

        /* ========== CALENDAR ========== */
        .cal-row {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 1rem;
            background: rgba(255,255,255,0.02);
            border-radius: var(--radius);
            padding: 0.9rem 1rem;
            border: 1px solid rgba(255,255,255,0.05);
            flex-wrap: wrap;
        }
        .cal-wrap {
            flex: 1 1 240px;
            min-width: 0;
        }
        .cal-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.6rem;
        }
        .cal-month {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
        }
        .cal-today-btn {
            background: none;
            border: 1px solid rgba(255,255,255,0.2);
            color: #ccc;
            padding: 0.2rem 0.6rem;
            border-radius: 50px;
            font-size: 0.62rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .cal-today-btn:hover { border-color: var(--gold); color: var(--gold-light); }
        .cal-arrows { display: flex; gap: 0.2rem; }
        .cal-arrow {
            width: 30px; height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            background: transparent;
            color: #ccc;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .cal-arrow:hover { border-color: var(--gold); color: var(--gold-light); }
        .cg {
            width: 100%;
            border-collapse: separate;
            border-spacing: 3px 3px;
            font-size: 0.72rem;
            text-align: center;
        }
        .cg th {
            color: #888;
            font-weight: 600;
            padding: 0.2rem 0;
            font-size: 0.6rem;
            text-transform: uppercase;
        }
        .cg td {
            padding: 0.45rem 0;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.2s ease;
            color: #ddd;
            font-weight: 500;
            background: transparent;
            width: 14.28%; /* 100/7 */
        }
        .cg td:hover:not(.cal-disabled):not(.cal-selected) {
            background: rgba(211,154,41,0.12);
            color: #fff;
            transform: scale(1.05);
        }
        .cg td.cal-disabled {
            color: #444;
            pointer-events: none;
            opacity: 0.4;
        }
        .cg td.cal-selected {
            background: var(--gold);
            color: #000;
            font-weight: 800;
            box-shadow: 0 5px 14px rgba(211,154,41,0.4);
            transform: scale(1.05);
        }
        .cg td.cal-today {
            border: 2px solid var(--gold-light);
            font-weight: 700;
            background: rgba(211,154,41,0.08);
        }
        .cal-info {
            flex: 1 1 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.4rem;
            border-left: 1px solid rgba(255,255,255,0.06);
        }
        .ci-hint { font-size: 0.7rem; color: #777; font-style: italic; }

        @media (max-width: 700px) {
            .cal-row { flex-direction: column; padding: 0.8rem; }
            .cal-info { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.6rem; margin-top: 0.3rem; }
            .cg td { padding: 0.4rem 0; font-size: 0.7rem; border-radius: 8px; }
            .cal-month { font-size: 0.82rem; }
        }

        /* ========== STEPS ROW ========== */
        .step-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }
        .sblk-lbl {
            font-weight: 600;
            font-size: 0.74rem;
            color: #ccc;
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sblk-num {
            width: 20px; height: 20px;
            border-radius: 50%;
            background: rgba(211,154,41,0.2);
            color: var(--gold-light);
            font-size: 0.64rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .pill-g { display: flex; flex-wrap: wrap; gap: 0.35rem; }
        .pill-g .pill {
            padding: 0.4rem 0.8rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 500;
            background: transparent;
            color: #bbb;
            transition: var(--transition);
            font-family: var(--font-body);
        }
        .pill-g .pill:hover { border-color: var(--gold); color: #fff; }
        .pill-g .pill.active {
            background: var(--gold);
            color: #000;
            border-color: var(--gold);
            font-weight: 700;
        }
        .zone-sel {
            width: 100%;
            padding: 0.45rem 0.8rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            background: var(--near-black);
            color: #ccc;
            font-size: 0.74rem;
            font-family: var(--font-body);
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D39A29' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.6rem center;
            padding-right: 2rem;
        }

        @media (max-width: 700px) { .step-row { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 450px) { .step-row { grid-template-columns: 1fr; } }

        /* ========== PASSENGER FIELDS ========== */
        .pax-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }
        .pax-full { grid-column: 1 / -1; }
        .fld label { display: block; font-size: 0.7rem; font-weight: 600; color: #bbb; margin-bottom: 0.2rem; }
        .fi {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50px;
            padding: 0.5rem 0.8rem;
            transition: var(--transition);
        }
        .fi:focus-within { border-color: var(--gold); }
        .fi-ico { width: 14px; height: 14px; color: #777; flex-shrink: 0; }
        .fi input {
            flex: 1;
            background: none;
            border: none;
            color: #fff;
            font-size: 0.78rem;
            font-family: var(--font-body);
            outline: none;
        }
        .fi input::placeholder { color: #555; }
        .ferr { display: none; font-size: 0.64rem; color: #e53e3e; margin-top: 0.2rem; }
        .ferr.show { display: block; }
        .fld.error .fi { border-color: #e53e3e; }

        @media (max-width: 500px) {
            .pax-grid { grid-template-columns: 1fr; }
        }

        /* Submit button */
        .sub-btn {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #000;
            font-weight: 700;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: var(--font-body);
            transition: all var(--transition);
            box-shadow: 0 6px 20px rgba(211,154,41,0.25);
        }
        .sub-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
        .sub-btn .spinner { display: none; width: 16px; height: 16px; border: 2px solid transparent; border-top-color: #000; border-radius: 50%; animation: spin 0.7s linear infinite; }
        .sub-btn.loading .btn-txt { display: none; }
        .sub-btn.loading .spinner { display: block; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .sub-note { font-size: 0.62rem; color: #666; margin-top: 0.6rem; text-align: center; }

        /* ========== RIGHT COLUMN (INFO PANELS) ========== */
        .info-col { display: flex; flex-direction: column; gap: 1rem; }
        .price-panel, .sched-panel, .timing-panel {
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
        }
        .price-hdr, .sched-hdr, .timing-hdr {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .price-hdr h3, .sched-hdr h3, .timing-hdr h3 {
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--gold);
        }
        .sched-badge {
            font-size: 0.58rem;
            background: rgba(76,175,80,0.2);
            color: #4caf50;
            padding: 0.2rem 0.5rem;
            border-radius: 50px;
            font-weight: 600;
        }
        .price-body { padding: 0.8rem 1rem; }
        .pr-row {
            display: flex;
            justify-content: space-between;
            padding: 0.35rem 0;
            font-size: 0.98rem;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .pr-key { color: #aaa; } .pr-val { color: #fff; font-weight: 700; }
        .sched-body { padding: 0.7rem 1rem; }
        .sched-tr {
            display: flex;
                 font-size: 0.98rem;
            justify-content: space-between;
            align-items: center;
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .sched-lbl { font-weight: 600; font-size: 0.94rem; color: #ddd; }
        .sched-tag {
            font-size: 0.98rem;
            background: rgba(211,154,41,0.2);
            color: var(--gold-light);
            padding: 0.15rem 0.4rem;
            border-radius: 50px;
            display: none;
        }
        .sched-val { font-weight: 700; font-size: 0.94rem; color: #fff; }
        .ttbl { width: 100%; border-collapse: collapse; font-size: 0.66rem; }
        .ttbl th { background: rgba(255,255,255,0.03); padding: 0.45rem 0.5rem; text-align: left; color: #aaa; }
        .ttbl td { padding: 0.4rem 0.5rem; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: #ccc; }

        /* ========== PAGE 2 (MANIFEST) ========== */
        #p2-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.9fr;
            gap: 1.5rem;
            align-items: start;
        }
        @media (max-width: 1024px) { #p2-grid { grid-template-columns: 1fr; } }

        .manifest-hdr {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid rgba(211,154,41,0.3);
        }
        .manifest-hdr svg { width: 24px; height: 24px; color: var(--gold); }
        .manifest-hdr h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }
        .visitor-card {
            background: var(--charcoal);
            border-radius: var(--radius);
            padding: 1rem 1rem;
            border: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 0.8rem;
        }
        .vc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.6rem;
        }
        .vc-badge {
            font-size: 0.64rem;
            font-weight: 700;
            color: var(--gold-light);
            background: rgba(211,154,41,0.12);
            padding: 0.2rem 0.6rem;
            border-radius: 50px;
        }
        .vc-remove {
            background: none;
            border: 1px solid rgba(229,62,62,0.4);
            color: #e53e3e;
            cursor: pointer;
            font-size: 0.64rem;
            padding: 0.2rem 0.6rem;
            border-radius: 50px;
            font-family: var(--font-body);
        }
        .vc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem;
        }
        @media (max-width: 450px) { .vc-grid { grid-template-columns: 1fr; } }
        .vc-grid .fld label { font-size: 0.64rem; color: #999; margin-bottom: 0.15rem; display: block; }
        .vc-grid .fld input, .vc-grid .fld select {
            width: 100%;
            padding: 0.4rem 0.7rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.15);
            background: var(--near-black);
            color: #fff;
            font-size: 0.7rem;
            font-family: var(--font-body);
        }
        .add-visitor-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            width: 100%;
            padding: 0.6rem;
            border-radius: 50px;
            border: 2px dashed rgba(255,255,255,0.2);
            background: transparent;
            color: #aaa;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 600;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .add-visitor-btn:hover { border-color: var(--gold); color: var(--gold-light); }
        .policy-card {
            display: flex;
            gap: 0.6rem;
            padding: 0.8rem;
            border-radius: var(--radius);
            margin-top: 0.8rem;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .policy-card.secure { background: rgba(76,175,80,0.06); }
        .policy-card.cancel { background: rgba(244,67,54,0.05); }
        .pc-icon svg { width: 18px; height: 18px; }
        .pc-title { font-weight: 700; font-size: 0.72rem; margin-bottom: 0.1rem; }
        .pc-body { font-size: 0.64rem; color: #999; line-height: 1.4; }

        /* Summary card */
        .summary-card {
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: var(--shadow-lg);
            position: sticky;
            top: 90px;
        }
        @media (max-width: 1024px) { .summary-card { position: static; } }
        .summary-hdr {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .summary-hdr-bar { width: 3px; height: 18px; background: var(--gold); border-radius: 2px; }
        .summary-hdr h3 { font-size: 0.9rem; font-weight: 700; }
        .summary-rows { padding: 0.6rem 1.2rem; }
        .sr {
            display: flex;
            justify-content: space-between;
            padding: 0.45rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            font-size: 0.74rem;
        }
        .sr-key { color: #999; } .sr-val { color: #fff; font-weight: 600; }
        .total-box {
            margin: 0.5rem 1.2rem 0.8rem;
            padding: 0.8rem 1rem;
            background: rgba(211,154,41,0.08);
            border-radius: var(--radius);
            border: 1px solid rgba(211,154,41,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .total-box-lbl { font-size: 0.64rem; color: #aaa; text-transform: uppercase; font-weight: 600; }
        .total-box-sub { font-size: 0.56rem; color: #777; }
        .total-box-amt { font-size: 1.3rem; font-weight: 800; color: var(--gold-light); }
        .pay-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: calc(100% - 2.4rem);
            margin: 0 1.2rem 0.6rem;
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #000;
            font-weight: 700;
            font-size: 0.8rem;
            border: none;
            cursor: pointer;
            font-family: var(--font-body);
            transition: var(--transition);
        }
        .pay-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
        .trust-badges { display: flex; gap: 0.8rem; justify-content: center; padding: 0.4rem 1.2rem 0.8rem; }
        .trust-row { display: flex; align-items: center; gap: 0.3rem; font-size: 0.6rem; color: #777; }
        .trust-row svg { width: 12px; height: 12px; }

        /* Success page */
        #page3 { display: flex; align-items: center; justify-content: center; min-height: 50vh; padding: 2rem 0; }
        .success-card {
            text-align: center;
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
            max-width: 400px;
            width: 90%;
        }
        .si {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: rgba(76,175,80,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        .si svg { width: 28px; height: 28px; color: #4caf50; }
        .success-card h2 { font-size: 1.3rem; }
        .success-card p { font-size: 0.76rem; color: #aaa; margin-bottom: 0.6rem; }
        .ref-box {
            display: inline-block;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.76rem;
            font-weight: 600;
        }



        


        
        /* ── HERO ── */
        .hero-section {
            position: relative; padding: 4rem 1.5rem; text-align: center;
            background: var(--charcoal); border-bottom: 1px solid var(--line-dark);
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute; inset: 0;
            background: radial-gradient(circle at 30% 40%, rgba(211,154,41,0.15) 0%, transparent 60%);
        }
        .hero-content { position: relative; z-index: 2; }
        .hero-content h2 {
            font-family: var(--font-heading); font-size: 2.4rem; color: #fff; margin-bottom: 0.5rem;
        }
        .hero-content h2 span { color: var(--gold); }
        .hero-content p { font-size: 1rem; color: #aaa; max-width: 600px; margin: 0 auto; }

        @media (max-width: 600px) {
            .hero-content h2 { font-size: 1.6rem; }
            .hero-content p { font-size: 0.8rem; }
        }

        /* ── MAIN CONTAINER ── */
        .page-container { max-width: 1220px; margin: 0 auto; padding: 2rem 1.2rem; }

        /* ── OPTIONS CARDS ── */
        .options-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0;
        }
        @media (max-width: 768px) { .options-grid { grid-template-columns: 1fr; } }

        .option-card {
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .option-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.6);
        }
        .option-card img {
            width: 100%; height: 220px; object-fit: cover; display: block;
        }
        .card-body { padding: 1.5rem; }
        .card-body h3 {
            font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 1rem; color: #fff;
        }
        .feature-list {
            list-style: none; margin-bottom: 1.5rem;
            padding-left:0px;
        }
        .feature-list li {
            display: flex; align-items: center; gap: 0.7rem;
            font-size: 0.82rem; color: #ccc; margin-bottom: 0.7rem;
        }
        .feature-list li svg {
            width: 20px; height: 20px; flex-shrink: 0;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }
        .feature-list li svg.icon-check { color: #4caf50; }
        .feature-list li svg.icon-location { color: var(--gold-light); }
        .btn-select {
            display: block; width: 100%; padding: 0.75rem;
            border-radius: 50px; background: var(--gold); color: #000;
            font-weight: 700; font-size: 0.9rem; text-align: center;
            text-decoration: none; transition: background var(--transition);
        }
        .btn-select:hover { background: var(--gold-light); }

        /* ── INFO SECTIONS ── */
        .info-section {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
            margin: 2.5rem 0;
        }
        .info-text p { font-size: 0.85rem;   line-height: 1.7; margin-bottom: 0.8rem; }
        @media (max-width: 768px) { .info-section { grid-template-columns: 1fr; } }
        .info-text h4 {
            font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold-light);
            margin-bottom: 1rem;
        }
        .info-text h3{color:white;}
        .info-text p { font-size: 0.85rem;   line-height: 1.7; margin-bottom: 0.8rem; }
        .info-text a { color: var(--gold-light); text-decoration: underline; }
        .info-image img {
            width: 100%; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08);
        }

        .card-body p{
            color: #fff;
        }
        .page-container p{
            color: #fff;

        }


/* Carousel wrapper – keeps the same dimensions as your original .info-image */
.info-image.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 300px;          /* match your existing image height */
    object-fit: cover;
    display: block;
}

/* Prev / Next buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: 1px solid rgba(201,162,77,0.3);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    z-index: 5;
}
.carousel-btn:hover {
    background: rgba(201,162,77,0.2);
    border-color: #c9a24d;
    color: #d4af6c;
}
.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

/* Dot indicators */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(201,162,77,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: #c9a24d;
    border-color: #d4af6c;
    transform: scale(1.3);
}




    /* Floating WhatsApp button */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 30px;
      right: 30px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .whatsapp-float:hover {
      background-color: #1ebe57;
      box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
      transform: scale(1.05);
    }

    /* WhatsApp icon using SVG (official green) */
    .whatsapp-float svg {
      width: 34px;
      height: 34px;
      fill: white;
    }

    /* Optional pulse animation */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    .whatsapp-float.pulse {
      animation: pulse 2s infinite;
    }

    /* Responsive: smaller on mobile */
    @media screen and (max-width: 600px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
      }
      .whatsapp-float svg {
        width: 28px;
        height: 28px;
      }
    }

        .important-info , .sched-status,.sched-header , .price-body {
            color:#fff;
        }

        /* ── HIGHLIGHT BOX ── */
        .highlight-box {
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid var(--line-dark);
            text-align: center;
        }
        .highlight-box h2 {
            font-family: var(--font-heading); font-size: 1.6rem; color: #fff; margin: 1rem 0;
        }
        .highlight-box p { color: #bbb; font-size: 0.85rem; max-width: 700px; margin: 0 auto; }
        .gharial-icon {
            width: 100px; height: 100px; margin: 0 auto;
        }

        /* ── FEATURE BOXES ── */
        .feature-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem; margin: 2rem 0; 
        }
        .feature-item {
            background: rgba(255,255,255,0.03);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.751);
            transition: transform var(--transition);
        }
        .feature-item p{color: #fff;}
        .feature-item:hover { transform: translateY(-4px); }
        .feature-item svg {
            width: 48px; height: 48px; margin-bottom: 1rem;
            color: var(--gold-light);
        }
        .feature-item h3 {
            font-size: 0.9rem; color: #ddd; line-height: 1.4; font-weight: 500;
        }
    
        .check-list {
            color: #fff;
        }


        .hed p{
            color: #fff;
            text-align: center;
            padding-top: 10px;
        }

        .hed h2{
            text-align: center;
            color: var(--gold-light);
            padding-top: 10px;

        }




















          /* ── HERO ── */
        .hero-section {
            position: relative; padding: 4rem 1.5rem; text-align: center;
            background: var(--charcoal); border-bottom: 1px solid var(--line-dark); overflow: hidden;
        }
        .hero-overlay {
            position: absolute; inset: 0;
            background: radial-gradient(circle at 30% 40%, rgba(211,154,41,0.15) 0%, transparent 60%);
        }
        .hero-content { position: relative; z-index: 2; }
        .hero-content h2 {
            font-family: var(--font-heading); font-size: 2.4rem; color: #fff; margin-bottom: 0.5rem;
        }
        .hero-content p { font-size: 1rem; color: #aaa; max-width: 600px; margin: 0 auto; }
        @media (max-width: 600px) {
            .hero-content h2 { font-size: 1.6rem; }
            .hero-content p { font-size: 0.8rem; }
        }

        /* ── MAIN CONTAINER ── */
        .page-container { max-width: 1220px; margin: 0 auto; padding: 2rem 1.2rem; }

        /* ── SEARCH FORM ── */
        .search-section {
            background: var(--charcoal); border-radius: var(--radius-lg);
            padding: 2rem; margin: -3rem auto 2rem; position: relative; z-index: 2;
            box-shadow: var(--shadow-sm); border: 1px solid var(--line-dark);
            max-width: 1000px;
        }
        .search-form {
            display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end;
        }
        @media (max-width: 768px) { .search-form { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 500px) { .search-form { grid-template-columns: 1fr; } }
        .search-field { display: flex; flex-direction: column; gap: 0.3rem; }
        .search-field label { font-size: 0.74rem; font-weight: 600; color: #bbb; text-transform: uppercase; letter-spacing: 0.03em; }
        .search-field input {
            padding: 0.7rem 1rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15);
            background: var(--near-black); color: #fff; font-size: 0.85rem; font-family: var(--font-body);
            outline: none; transition: var(--transition);
        }
        .search-field input:focus { border-color: var(--gold); }
        .btn-search {
            padding: 0.7rem 2rem; border-radius: 50px; background: var(--gold); color: #000;
            font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer; transition: background var(--transition);
            font-family: var(--font-body); white-space: nowrap; height: fit-content;
        }
        .btn-search:hover { background: var(--gold-light); }

        /* ── INTRO TEXT ── */
        .intro-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin: 2rem 0;
        }
        @media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; } }
        .intro-heading { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; line-height: 1.3; }
        .intro-text { font-size: 0.85rem; color: #bbb; line-height: 1.7; }

        /* ── HOTEL GRID ── */
        .hotel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem; margin: 2rem 0;
        }
        @media (max-width: 500px) { .hotel-grid { grid-template-columns: 1fr; } }

        .hotel-card {
            background: var(--charcoal);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
            display: flex; flex-direction: column;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

        .hotel-card img {
            width: 100%; height: 200px; object-fit: cover; display: block;
        }

        .hotel-card-content {
            padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1;
        }

        .hotel-price-badge {
            display: flex; justify-content: flex-start; align-items: center; gap: 1rem;
        }
        .hotel-price { font-size: 1rem; font-weight: 700; color: #fff; }
        .badge-off {
            background: rgba(211,154,41,0.2); color: var(--gold-light);
            font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 50px;
        }
        .star-rating { display: flex; gap: 0.15rem; }
        .star-rating svg { width: 16px; height: 16px; fill: var(--gold); }
        .hotel-features { display: flex; flex-wrap: wrap; gap: 0.8rem; font-size: 0.72rem; color: #bbb; }
        .hotel-features span { display: flex; align-items: center; gap: 0.3rem; }
        .hotel-features svg { width: 14px; height: 14px; color: var(--gold-light); }
        .hotel-name { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; font-weight: 700; }
        .hotel-desc { font-size: 0.78rem; color: #999; line-height: 1.5; }
        .btn-book {
            display: inline-block; width: 100%; text-align: center; padding: 0.7rem;
            border-radius: 50px; background: var(--gold); color: #000; font-weight: 700;
            font-size: 0.85rem; text-decoration: none; transition: background var(--transition); margin-top: auto;
        }
        .btn-book:hover { background: var(--gold-light); }

        /* ── PROMOTION SECTION ── */
        .promo-section {
            background: var(--charcoal); border-radius: var(--radius-lg); padding: 3rem 2rem;
            text-align: center; margin: 3rem 0; border: 1px solid var(--line-dark);
        }
        .promo-section h2 { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; margin-bottom: 1rem; }
        .promo-section p { color: #bbb; max-width: 600px; margin: 0 auto 1.5rem; }
        .btn-promo {
            display: inline-block; padding: 0.8rem 2.5rem; border-radius: 50px;
            background: var(--gold); color: #000; font-weight: 700; font-size: 0.9rem; text-decoration: none;
            transition: background var(--transition);
        }
        .btn-promo:hover { background: var(--gold-light); }

        /* ── TESTIMONIALS (redesigned with avatars) ── */
        .testimonials-section {
            display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start; margin: 3rem 0;
        }
        @media (max-width: 768px) { .testimonials-section { grid-template-columns: 1fr; } }
        .testimonials-heading h2 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; }
        .testimonials-heading p { color: #aaa; font-size: 0.9rem; margin-top: 0.5rem; }

        .testimonial-cards {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
        }
        @media (max-width: 500px) { .testimonial-cards { grid-template-columns: 1fr; } }

        .testimonial-card {
            background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

        .testimonial-header {
            display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
        }
        .testimonial-avatar {
            width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
            border: 2px solid var(--gold-light); flex-shrink: 0;
        }
        .testimonial-info { display: flex; flex-direction: column; }
        .testimonial-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
        .testimonial-location { font-size: 0.72rem; color: #999; }
        .testimonial-stars { display: flex; gap: 0.2rem; margin-top: 0.3rem; }
        .testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }
        .testimonial-text { font-size: 0.82rem; color: #ccc; line-height: 1.6; }








        /* contact  */

        
        /* ── MAIN CONTAINER ── */
        .page-container { max-width: 1220px; margin: 0 auto; padding: 2.5rem 1.2rem; }

        /* ── CONTACT LAYOUT ── */
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
        }
        @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

        /* ── FORM ── */
        .contact-form-panel {
            background: var(--charcoal); border-radius: var(--radius-lg);
            padding: 2rem; border: 1px solid rgba(255,255,255,0.08);
            box-shadow: var(--shadow-sm);
        }
        .contact-form-panel h3 {
            font-family: var(--font-heading); font-size: 1.3rem; color: #fff; margin-bottom: 1.5rem;
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block; font-size: 0.74rem; font-weight: 600; color: #bbb; margin-bottom: 0.3rem;
            letter-spacing: 0.02em;
        }
        .form-group input, .form-group textarea {
            width: 100%; padding: 0.7rem 1rem; border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.15); background: var(--near-black);
            color: #fff; font-size: 0.85rem; font-family: var(--font-body);
            outline: none; transition: var(--transition);
        }
        .form-group textarea {
            border-radius: var(--radius); resize: vertical; min-height: 120px;
        }
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--gold); box-shadow: 0 0 0 3px rgba(211,154,41,0.1);
        }
        .btn-submit {
            width: 100%; padding: 0.8rem; border-radius: 50px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #000; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
            transition: all var(--transition); font-family: var(--font-body);
            box-shadow: 0 4px 16px rgba(211,154,41,0.3);
        }
        .btn-submit:hover {
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            transform: translateY(-2px);
        }

        /* ── CONTACT DETAILS ── */
        .contact-details {
            display: flex; flex-direction: column; gap: 1.5rem;
        }
        .detail-card {
            background: var(--charcoal); border-radius: var(--radius);
            padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
            display: flex; gap: 1rem; align-items: flex-start;
        }
        .detail-icon {
            width: 44px; height: 44px; border-radius: 50%; background: rgba(211,154,41,0.15);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
            color: var(--gold-light);
        }
        .detail-icon svg { width: 22px; height: 22px; }
        .detail-content h4 { font-size: 0.9rem; color: #fff; font-weight: 700; margin-bottom: 0.3rem; }
        .detail-content p, .detail-content a {
            font-size: 0.82rem; color: #bbb; text-decoration: none; line-height: 1.5;
        }
        .detail-content a:hover { color: var(--gold-light); }

        /* ── MAP ── */
        .map-container {
            background: var(--charcoal); border-radius: var(--radius-lg);
            overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
            height: 300px; width: 100%;
        }
        .map-container iframe { width: 100%; height: 100%; border: none; }

        /* ── SOCIAL LINKS ── */
        .social-links {
            display: flex; gap: 1rem; margin-top: 0.5rem;
        }
        .social-link {
            width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.04);
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(255,255,255,0.1); color: #aaa;
            transition: var(--transition);
        }
        .social-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }
        .social-link svg { width: 18px; height: 18px; }














        /* hotel detail */
         /* ── HERO ── */
        .hero-section {
            position: relative; padding: 3rem 1.5rem; background: var(--charcoal); border-bottom: 1px solid var(--line-dark);
        }
        .hero-grid {
            max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center;
        }
        @media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; } }
        .hero-title {
            font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 0.5rem;
        }
        .hero-location {
            display: flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; color: #aaa; margin-bottom: 1.5rem;
        }
        .hero-location svg { width: 16px; height: 16px; color: var(--gold-light); }
        .hero-description { font-size: 0.9rem; color: #bbb; line-height: 1.7; }
        .star-rating-box {
            background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
            display: flex; flex-direction: column; align-items: flex-end; justify-content: center;
        }
        .star-rating-box .stars {
            display: flex; gap: 0.15rem; margin-bottom: 0.3rem;
        }
        .star-rating-box .stars svg { width: 20px; height: 20px; fill: var(--gold); }
        .star-rating-box .rating-label { font-size: 0.85rem; color: #aaa; }
        @media (max-width: 768px) { .star-rating-box { align-items: flex-start; } }


        /* ── MAIN CONTENT ── */
        .main-content {
            max-width: 1220px; margin: 0 auto; padding: 2rem 1.2rem;
            display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem;
        }
        @media (max-width: 768px) { .main-content { grid-template-columns: 1fr; } }

        /* Amenities & Conditions */
        .amenities-section {
            background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
        }
        .section-heading {
            font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 1rem; padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--line-dark);
        }
        .amenity-list {
            display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
        }
        @media (max-width: 500px) { .amenity-list { grid-template-columns: 1fr; } }
        .amenity-item {
            display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #ccc;
        }
        .amenity-item svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

        /* Image Slider */
        .slider-container {
            position: relative; border-radius: var(--radius); overflow: hidden; margin-top: 1.5rem;
        }
        .slides {
            display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
        }
        .slides img {
            scroll-snap-align: start; width: 100%; height: 280px; object-fit: cover; flex-shrink: 0;
        }
        .slider-arrows {
            position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between;
            pointer-events: none;
        }
        .slider-arrow {
            width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.6); border: none; color: #fff;
            cursor: pointer; display: flex; align-items: center; justify-content: center; pointer-events: auto;
            transition: background var(--transition);
        }
        .slider-arrow:hover { background: var(--gold); }
        .conditions-text { font-size: 0.85rem; color: #aaa; line-height: 1.6; margin-top: 1rem; }

        /* Right Column: Price, Form, Map */
        .price-panel {
            background: var(--charcoal); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 2rem;
        }
        .price-tag { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold-light); margin-bottom: 1rem; }
        .price-tag span { color: #fff; }
        .booking-form { display: flex; flex-direction: column; gap: 1rem; }
        .booking-form input, .booking-form textarea {
            width: 100%; padding: 0.7rem 1rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15);
            background: var(--near-black); color: #fff; font-size: 0.85rem; font-family: var(--font-body);
            outline: none; transition: var(--transition);
        }
        .booking-form textarea { border-radius: var(--radius); resize: vertical; min-height: 80px; }
        .booking-form input:focus, .booking-form textarea:focus { border-color: var(--gold); }
        .btn-book-now {
            width: 100%; padding: 0.8rem; border-radius: 50px; background: var(--gold); color: #000;
            font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: background var(--transition);
        }
        .btn-book-now:hover { background: var(--gold-light); }
        .map-container {
            height: 200px; border-radius: var(--radius); overflow: hidden; margin-top: 1rem;
        }
        .map-container iframe { width: 100%; height: 100%; border: none; }

        /* Promotion */
        .promo-section {
            background: var(--charcoal); border-radius: var(--radius-lg); padding: 2rem; text-align: center;
            margin: 2rem auto; max-width: 1220px; border: 1px solid var(--line-dark);
        }
        .promo-section h2 { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; margin-bottom: 0.5rem; }
        .promo-section p { color: #bbb; }
        .btn-promo {
            display: inline-block; margin-top: 1rem; padding: 0.7rem 2rem; border-radius: 50px;
            background: var(--gold); color: #000; font-weight: 700; text-decoration: none; transition: background var(--transition);
        }
        .btn-promo:hover { background: var(--gold-light); }

        /* Other Villas */
        .other-villas {
            max-width: 1220px; margin: 2rem auto; padding: 0 1.2rem;
        }
        .villas-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 1.5rem;
        }
        .villa-card {
            background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
            transition: transform var(--transition);
        }
        .villa-card:hover { transform: translateY(-5px); }
        .villa-card .price-badge {
            display: flex; justify-content: flex-start; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
        }
        .villa-card .price-badge .badge {
            background: rgba(211,154,41,0.2); color: var(--gold-light); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.7rem;
        }
        .villa-card .price { font-size: 1rem; font-weight: 700; color: #fff; }
        .villa-card h3 { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
        .villa-card p { font-size: 0.8rem; color: #aaa; margin-bottom: 1rem; }
        .btn-book-sm {
            display: inline-block; padding: 0.5rem 1.5rem; border-radius: 50px; background: var(--gold);
            color: #000; font-weight: 600; font-size: 0.8rem; text-decoration: none;
        }

        /* Testimonials */
        .testimonials-section {
            max-width: 1220px; margin: 2rem auto; padding: 0 1.2rem;
        }
        .testimonials-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem;
        }
        @media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }
        .testimonial-card {
            background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
            display: flex; flex-direction: column; gap: 0.8rem;
        }
        .testimonial-header { display: flex; align-items: center; gap: 1rem; }
        .testimonial-avatar {
            width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light);
        }
        .testimonial-author { font-weight: 700; font-size: 0.9rem; }
        .testimonial-role { font-size: 0.7rem; color: #999; }
        .testimonial-stars { display: flex; gap: 0.15rem; }
        .testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }
        .testimonial-text { font-size: 0.85rem; color: #ccc; line-height: 1.6; }











        
        /* ── RENAMED HERO SECTION ── */
        .chambal-hero {
            position: relative; min-height: 85vh; display: flex; align-items: center;
            background: url('https://ranthamboretigersreserve.com/wp-content/uploads/2024/12/chambal-safari-3.jpg') center/cover no-repeat;
            background-attachment: fixed;
            margin-top: 12px;
        }
        .chambal-hero::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
        }
        .chambal-hero-content {
            position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem;
            display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; width: 100%;
        }
        @media (max-width: 900px) { .chambal-hero-content { grid-template-columns: 1fr; gap: 2rem; } }
        .chambal-hero-text h1 {
            font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: #fff; line-height: 1.2;
            margin-bottom: 1rem; letter-spacing: -0.01em;
        }
        .chambal-hero-text h1 span { color: var(--gold-light); }
        .chambal-hero-location {
            display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: #ccc; margin-bottom: 1.5rem;
        }
        .chambal-hero-location svg { width: 18px; height: 18px; stroke: var(--gold-light); }
        .chambal-hero-text p { font-size: 1.1rem; color: #ddd; max-width: 500px; line-height: 1.7; }

        /* Booking Card */
        .chambal-booking-card {
            background: rgba(20,20,20,0.85); backdrop-filter: blur(16px);
            border-radius: var(--radius-lg); padding: 2.2rem 2rem;
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: var(--shadow-card);
            max-width: 420px; justify-self: end; width: 100%;
        }
        .chambal-booking-card h2 {
            font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1.8rem; color: #fff; letter-spacing: 0.02em;
        }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block; font-size: 0.7rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem;
        }
        .form-group input {
            width: 100%; padding: 0.75rem 1rem; border-radius: 12px;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
            color: #fff; font-size: 0.9rem; font-family: var(--font-body); outline: none;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .form-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(211,154,41,0.15); }
        .btn-submit {
            width: 100%; padding: 0.85rem; border-radius: 12px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #000; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 0.5rem;
            transition: all var(--transition); font-family: var(--font-body); margin-top: 0.5rem;
            box-shadow: 0 8px 20px rgba(211,154,41,0.3);
        }
        .btn-submit:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); }
        .btn-submit svg { width: 18px; height: 18px; }

        /* ── RENAMED SAFARI DETAILS SECTION ── */
        .chambal-details {
            max-width: 1280px; margin: 3rem auto; padding: 0 1.5rem;
        }
        .chambal-details-title {
            font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em;
        }
        .chambal-details-subtitle { color: #aaa; font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; }

        /* Slider */
        .chambal-slider {
            position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
        }
        .chambal-slider-track {
            display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
        }
        .chambal-slider-track img {
            scroll-snap-align: start; width: 100%; height: 420px; object-fit: cover; flex-shrink: 0;
        }
        .chambal-slider-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.5); border: none; color: #fff;
            width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: background var(--transition); backdrop-filter: blur(4px);
            font-size: 1.4rem; z-index: 2;
        }
        .chambal-slider-arrow:hover { background: var(--gold); }
        .chambal-slider-arrow.prev { left: 16px; }
        .chambal-slider-arrow.next { right: 16px; }

        /* Options / Conditions */
        .chambal-options-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2rem;
        }
        .chambal-option-item {
            background: rgba(255,255,255,0.03); border-radius: var(--radius);
            padding: 1.8rem 1.5rem; border: 1px solid rgba(255,255,255,0.06);
            transition: transform var(--transition), border-color var(--transition);
        }
        .chambal-option-item:hover { transform: translateY(-4px); border-color: var(--gold-light); }
        .chambal-option-icon {
            width: 44px; height: 44px; border-radius: 12px; background: rgba(211,154,41,0.1);
            display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
            color: var(--gold-light);
        }
        .chambal-option-icon svg { width: 24px; height: 24px; }
        .chambal-option-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #fff; }
        .chambal-option-item p { font-size: 0.9rem; color: #bbb; line-height: 1.5; }

        .chambal-cta-section {
            text-align: center; margin: 3rem 0 2rem;
        }
        .btn-primary {
            display: inline-block; padding: 0.9rem 2.8rem; border-radius: 50px;
            background: var(--gold); color: #000; font-weight: 700; font-size: 0.95rem;
            text-decoration: none; transition: background var(--transition), transform var(--transition);
            box-shadow: 0 8px 22px rgba(211,154,41,0.35);
        }
        .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }


             @media (max-width: 600px) {
            .chambal-hero { background-attachment: scroll; }
            .chambal-hero-text h1 { font-size: 2.2rem; }
            .chambal-booking-card { padding: 1.5rem; }
            .chambal-slider-track img { height: 280px; }
        }