:root {
      --forest:    #1a3a1f;
      --deep:      #0d2410;
      --moss:      #2e5c35;
      --leaf:      #4a8c54;
      --sage:      #8ab88f;
      --mist:      #d4e8d6;
      --gold:      #c9a84c;
      --gold-lt:   #e8c97a;
      --cream:     #f8f4ed;
      --sand:      #ede8dc;
      --text:      #1c2b1e;
      --text-lt:   #5a7060;
      --white:     #ffffff;
      --radius:    14px;
      --shadow:    0 8px 40px rgba(10,30,15,0.13);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── SCROLLBAR ─────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--deep); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ─── UTILITY ────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--forest);
    }
    .section-title.light { color: var(--white); }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-weight: 600;
      font-size: 15px; text-decoration: none; cursor: pointer;
      border: none; transition: all .3s ease; white-space: nowrap;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--deep);
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,.6);
      color: var(--white);
    }
    .btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
    .btn-dark {
      background: var(--forest);
      color: var(--white);
    }
    .btn-dark:hover { background: var(--moss); transform: translateY(-2px); }

    /* ─── REVEAL ANIMATION ───────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ─── NAV ────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: all .4s ease;
    }
    nav.scrolled {
      background: rgba(13, 36, 16, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 30px rgba(0,0,0,.3);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0;
      transition: padding .4s ease;
    }
    nav.scrolled .nav-inner { padding: 14px 0; }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 700;
      color: var(--white); text-decoration: none;
      display: flex; align-items: center; gap: 10px;
    }
    .logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .logo span { color: var(--gold-lt); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,.8); text-decoration: none;
      font-size: 14px; font-weight: 500; letter-spacing: .3px;
      transition: color .2s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
      height: 1px; background: var(--gold);
      transition: right .3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { right: 0; }
    .nav-cta { display: flex; gap: 12px; align-items: center; }
    .menu-btn {
      display: none; background: none; border: none; cursor: pointer;
      color: white; font-size: 22px;
    }
    .mobile-menu {
      display: none; background: rgba(13, 36, 16, 0.98);
      padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.1);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block; padding: 12px 0;
      color: rgba(255,255,255,.8); text-decoration: none;
      font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* ─── HERO ───────────────────────────────────────── */
    #hero {
      min-height: 100vh; position: relative;
      display: flex; align-items: center;
      background: linear-gradient(160deg, #0d2410 0%, #1a3a1f 60%, #0d2410 100%);
      overflow: hidden;
    }
    .hero-video-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(to bottom, rgba(10,30,15,.55) 0%, rgba(10,30,15,.35) 50%, rgba(10,30,15,.75) 100%),
        url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?auto=format&fit=crop&w=2070&q=80');
      background-size: cover; background-position: center;
      transform: scale(1.05);
      animation: heroZoom 20s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.12); }
    }
    .hero-particles {
      position: absolute; inset: 0; pointer-events: none;
    }
    .particle {
      position: absolute; border-radius: 50%;
      background: rgba(201, 168, 76, 0.15);
      animation: float linear infinite;
    }
    @keyframes float {
      from { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      to   { transform: translateY(-100px) rotate(360deg); opacity: 0; }
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 760px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4);
      color: var(--gold-lt); padding: 8px 18px; border-radius: 50px;
      font-size: 12px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; margin-bottom: 28px;
      backdrop-filter: blur(8px);
      animation: fadeSlideDown .8s ease both;
    }
    @keyframes fadeSlideDown {
      from { opacity:0; transform: translateY(-20px); }
      to   { opacity:1; transform: none; }
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 900; line-height: 1.05;
      color: var(--white); margin-bottom: 24px;
      animation: fadeSlideUp .9s ease .2s both;
    }
    .hero-title em {
      color: var(--gold-lt); font-style: italic;
    }
    @keyframes fadeSlideUp {
      from { opacity:0; transform: translateY(30px); }
      to   { opacity:1; transform: none; }
    }
    .hero-sub {
      font-size: 18px; color: rgba(255,255,255,.75); font-weight: 300;
      line-height: 1.7; max-width: 520px;
      margin-bottom: 40px;
      animation: fadeSlideUp .9s ease .4s both;
    }
    .hero-cta {
      display: flex; flex-wrap: wrap; gap: 16px;
      animation: fadeSlideUp .9s ease .6s both;
    }
    .hero-stats {
      position: absolute; bottom: 50px; right: 0; left: 0; z-index: 2;
    }
    .hero-stats-inner {
      display: flex; gap: 0;
      background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px; overflow: hidden;
      max-width: 700px;
      animation: fadeSlideUp .9s ease .8s both;
    }
    .stat-item {
      flex: 1; padding: 20px 28px; text-align: center;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 700; color: var(--gold-lt);
      display: block;
    }
    .stat-label { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; }
    .scroll-hint {
      position: absolute; bottom: 50px; right: 40px; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: 2px;
      text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    /* ─── QUICK BOOKING BAR ──────────────────────────── */
    #booking-bar {
      background: var(--deep);
      padding: 0; position: relative; z-index: 50;
    }
    .booking-bar-inner {
      display: flex; align-items: stretch;
      border-radius: 0;
      overflow: hidden;
    }
    .bb-field {
      flex: 1; display: flex; flex-direction: column;
      padding: 20px 24px;
      border-right: 1px solid rgba(255,255,255,.08);
      cursor: pointer; transition: background .2s;
    }
    .bb-field:hover { background: rgba(255,255,255,.04); }
    .bb-field:last-of-type { border-right: none; }
    .bb-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .bb-value {
      font-size: 15px; color: rgba(255,255,255,.85);
      font-weight: 500; display: flex; align-items: center; gap: 8px;
    }
    .bb-value select, .bb-value input {
      background: none; border: none; outline: none;
      color: rgba(255,255,255,.85); font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 500;
      cursor: pointer; width: 100%;
    }
    .bb-value select option { background: var(--deep); color: var(--white); }
    .bb-search {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--deep); padding: 20px 40px;
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
      border: none; cursor: pointer; transition: all .3s;
      letter-spacing: .5px;
    }
    .bb-search:hover { filter: brightness(1.08); }

    /* ─── WHY CHOOSE ─────────────────────────────────── */
    #why {
      padding: 100px 0;
      background: var(--cream);
    }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .why-left .section-title { margin-bottom: 20px; }
    .why-left p { color: var(--text-lt); line-height: 1.8; font-size: 16px; margin-bottom: 36px; }
    .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .feature-card {
      background: var(--white); border-radius: var(--radius);
      padding: 24px; border: 1px solid rgba(0,0,0,.07);
      transition: all .3s ease;
    }
    .feature-card:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 24px rgba(201,168,76,.15);
      transform: translateY(-4px);
    }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, var(--forest), var(--moss));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px; font-size: 20px; color: var(--gold-lt);
    }
    .feature-card h4 { font-size: 15px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
    .feature-card p { font-size: 13px; color: var(--text-lt); line-height: 1.6; }
    .why-image-grid {
      display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
      gap: 12px; height: 500px;
    }
    .why-img {
      border-radius: 14px; overflow: hidden;
    }
    .why-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .why-img:hover img { transform: scale(1.05); }
    .why-img-tall { grid-row: 1 / 3; }
    .why-badge {
      position: absolute; bottom: 20px; left: 20px;
      background: rgba(13,36,16,.85); backdrop-filter: blur(8px);
      border: 1px solid rgba(201,168,76,.4);
      color: var(--white); padding: 10px 16px; border-radius: 10px;
      font-size: 12px; font-weight: 600;
    }

    /* ─── PACKAGES ───────────────────────────────────── */
    #packages {
      padding: 100px 0;
      background: var(--deep);
      position: relative; overflow: hidden;
    }
    #packages::before {
      content: '';
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1470114716159-e389f8712fda?auto=format&fit=crop&w=1600&q=60') center/cover;
      opacity: .06;
    }
    .packages-header { text-align: center; margin-bottom: 60px; position: relative; }
    .packages-header p { color: rgba(255,255,255,.55); font-size: 16px; max-width: 500px; margin: 16px auto 0; }
    .packages-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; position: relative;
    }
    .pkg-card {
      border-radius: 20px; overflow: hidden;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      transition: all .4s ease;
      display: flex; flex-direction: column;
    }
    .pkg-card:hover {
      transform: translateY(-8px);
      border-color: rgba(201,168,76,.4);
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
    }
    .pkg-card.featured {
      border-color: rgba(201,168,76,.5);
      background: rgba(201,168,76,.05);
      transform: scale(1.02);
    }
    .pkg-card.featured:hover { transform: scale(1.02) translateY(-8px); }
    .pkg-img { position: relative; height: 220px; overflow: hidden; }
    .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .pkg-card:hover .pkg-img img { transform: scale(1.08); }
    .pkg-badge {
      position: absolute; top: 16px; right: 16px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--deep); padding: 6px 14px; border-radius: 50px;
      font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    }
    .pkg-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
    .pkg-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
    .pkg-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }
    .pkg-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .pkg-meta-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; color: rgba(255,255,255,.6);
    }
    .pkg-meta-item i { color: var(--gold); width: 16px; }
    .pkg-includes { margin-bottom: 24px; }
    .pkg-includes-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .pkg-include-tag {
      display: inline-block; background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.6); padding: 4px 12px; border-radius: 50px;
      font-size: 12px; margin: 3px 3px 3px 0;
    }
    .pkg-footer {
      margin-top: auto;
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
    }
    .pkg-price { font-family: 'Playfair Display', serif; }
    .pkg-price .amount { font-size: 2rem; font-weight: 700; color: var(--gold-lt); }
    .pkg-price .per { font-size: 12px; color: rgba(255,255,255,.4); }
    .pkg-price .inr { font-size: 13px; color: rgba(255,255,255,.35); display: block; }

    /* ─── BOOKING FORM ───────────────────────────────── */
    #booking {
      padding: 100px 0;
      background: var(--sand);
    }
    .booking-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
    .booking-info { }
    .booking-info .section-title { margin-bottom: 20px; }
    .booking-info > p { color: var(--text-lt); line-height: 1.8; margin-bottom: 36px; }
    .trust-items { display: flex; flex-direction: column; gap: 16px; }
    .trust-item {
      display: flex; align-items: center; gap: 16px;
      background: var(--white); border-radius: 12px; padding: 16px 20px;
      border: 1px solid rgba(0,0,0,.06);
    }
    .trust-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 10px; background: linear-gradient(135deg, var(--forest), var(--moss));
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-lt); font-size: 18px;
    }
    .trust-text h4 { font-size: 14px; font-weight: 600; color: var(--forest); margin-bottom: 2px; }
    .trust-text p  { font-size: 12px; color: var(--text-lt); }
    .booking-form-card {
      background: var(--white); border-radius: 24px;
      padding: 40px; box-shadow: var(--shadow);
      border: 1px solid rgba(0,0,0,.07);
    }
    .booking-form-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; color: var(--forest); margin-bottom: 8px;
    }
    .booking-form-card > p { font-size: 14px; color: var(--text-lt); margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
    .form-group label {
      font-size: 12px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--text-lt);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid rgba(0,0,0,.12); border-radius: 10px;
      font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
      background: var(--cream); outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--moss);
      box-shadow: 0 0 0 3px rgba(46,92,53,.1);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .guests-picker {
      display: flex; align-items: center; gap: 0;
      border: 1.5px solid rgba(0,0,0,.12); border-radius: 10px;
      overflow: hidden; background: var(--cream);
    }
    .guests-picker button {
      width: 44px; height: 48px; border: none; background: none;
      font-size: 20px; color: var(--forest); cursor: pointer;
      transition: background .2s;
    }
    .guests-picker button:hover { background: rgba(0,0,0,.05); }
    .guests-picker span {
      flex: 1; text-align: center;
      font-size: 16px; font-weight: 600; color: var(--text);
    }
    .price-summary {
      background: var(--forest); border-radius: 12px;
      padding: 20px; margin: 20px 0;
      display: flex; align-items: center; justify-content: space-between;
    }
    .price-summary .ps-label { color: rgba(255,255,255,.6); font-size: 13px; }
    .price-summary .ps-total {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; color: var(--gold-lt); font-weight: 700;
    }
    .price-summary .ps-breakdown { font-size: 12px; color: rgba(255,255,255,.4); }
    .submit-btn {
      width: 100%; padding: 16px;
      background: linear-gradient(135deg, var(--forest), var(--moss));
      color: var(--white); border: none; border-radius: 12px;
      font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700;
      cursor: pointer; transition: all .3s ease;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(26,58,31,.35);
    }
    .form-note { text-align: center; font-size: 12px; color: var(--text-lt); margin-top: 14px; }

    /* ─── ITINERARY TABS ─────────────────────────────── */
    #itinerary {
      padding: 100px 0;
      background: var(--white);
    }
    .itinerary-header { text-align: center; margin-bottom: 50px; }
    .itinerary-header p { color: var(--text-lt); margin-top: 14px; }
    .tab-list {
      display: flex; justify-content: center; gap: 8px;
      flex-wrap: wrap; margin-bottom: 50px;
    }
    .tab-btn {
      padding: 10px 24px; border-radius: 50px;
      font-size: 14px; font-weight: 600; cursor: pointer;
      border: 2px solid rgba(0,0,0,.1);
      background: none; color: var(--text-lt);
      transition: all .25s;
    }
    .tab-btn.active {
      background: var(--forest); border-color: var(--forest);
      color: var(--white);
    }
    .tab-btn:hover:not(.active) { border-color: var(--forest); color: var(--forest); }
    .tab-panel { display: none; }
    .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .itinerary-days { display: flex; flex-direction: column; gap: 4px; }
    .day-item {
      display: flex; gap: 20px; padding: 20px;
      border-radius: 12px; cursor: pointer;
      transition: background .2s; position: relative;
    }
    .day-item:hover, .day-item.active { background: var(--mist); }
    .day-num {
      width: 40px; height: 40px; flex-shrink: 0;
      border-radius: 50%; background: var(--forest);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-lt); font-weight: 700; font-size: 14px;
    }
    .day-item.active .day-num { background: var(--gold); color: var(--deep); }
    .day-content h4 { font-size: 15px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
    .day-content p  { font-size: 13px; color: var(--text-lt); line-height: 1.5; }
    .itinerary-detail {
      position: sticky; top: 90px;
      background: var(--cream); border-radius: 20px; padding: 32px;
      border: 1px solid rgba(0,0,0,.08);
    }
    .itinerary-detail img {
      width: 100%; height: 240px; object-fit: cover;
      border-radius: 12px; margin-bottom: 20px;
    }
    .itinerary-detail h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--forest); margin-bottom: 12px; }
    .activity-list { display: flex; flex-direction: column; gap: 10px; }
    .activity-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: var(--text-lt);
    }
    .activity-item i { color: var(--gold); margin-top: 2px; font-size: 12px; }

    /* ─── GALLERY ────────────────────────────────────── */
    #gallery {
      padding: 100px 0;
      background: var(--cream);
    }
    .gallery-header { text-align: center; margin-bottom: 50px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 220px 220px;
      gap: 12px;
    }
    .gal-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
    .gal-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .gal-item:nth-child(3) { grid-column: 4; grid-row: 1 / 3; }
    .gal-item:nth-child(5) { grid-column: 1; grid-row: 2; }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .gal-item:hover img { transform: scale(1.06); }
    .gal-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,30,15,.7) 0%, transparent 50%);
      opacity: 0; transition: opacity .3s;
      display: flex; align-items: flex-end; padding: 16px;
      color: var(--white); font-size: 14px; font-weight: 500;
    }
    .gal-item:hover .gal-overlay { opacity: 1; }

    /* ─── TESTIMONIALS ───────────────────────────────── */
    #testimonials {
      padding: 100px 0;
      background: var(--deep); position: relative; overflow: hidden;
    }
    #testimonials::before {
      content: '"';
      position: absolute; top: -20px; left: 30px;
      font-family: 'Playfair Display', serif;
      font-size: 400px; font-weight: 900; line-height: 1;
      color: rgba(255,255,255,.02);
      pointer-events: none;
    }
    .testimonials-header { text-align: center; margin-bottom: 60px; }
    .testimonials-header p { color: rgba(255,255,255,.4); margin-top: 14px; }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .testi-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px; padding: 32px;
      transition: all .3s;
    }
    .testi-card:hover {
      border-color: rgba(201,168,76,.35);
      transform: translateY(-6px);
      box-shadow: 0 16px 50px rgba(0,0,0,.3);
    }
    .testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
    .testi-text {
      font-size: 15px; color: rgba(255,255,255,.7);
      line-height: 1.8; font-style: italic; margin-bottom: 24px;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-author img {
      width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
      border: 2px solid rgba(201,168,76,.3);
    }
    .testi-name { font-size: 15px; font-weight: 600; color: var(--white); }
    .testi-loc  { font-size: 12px; color: rgba(255,255,255,.4); }
    .testi-tour {
      display: inline-block; margin-top: 6px;
      background: rgba(201,168,76,.15); color: var(--gold-lt);
      padding: 2px 10px; border-radius: 50px; font-size: 11px;
    }

    /* ─── FAQ ────────────────────────────────────────── */
    #faq {
      padding: 100px 0;
      background: var(--cream);
    }
    .faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
    .faq-sidebar .section-title { margin-bottom: 20px; }
    .faq-sidebar > p { color: var(--text-lt); line-height: 1.8; margin-bottom: 30px; }
    .faq-contact {
      background: var(--forest); border-radius: 16px; padding: 28px; color: var(--white);
    }
    .faq-contact h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
    .faq-contact p { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
    .faq-list { display: flex; flex-direction: column; gap: 8px; }
    .faq-item {
      background: var(--white); border-radius: 14px;
      border: 1px solid rgba(0,0,0,.08);
      overflow: hidden; transition: border-color .2s;
    }
    .faq-item:hover { border-color: var(--sage); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px; cursor: pointer;
      font-size: 15px; font-weight: 600; color: var(--forest);
      background: none; border: none; width: 100%; text-align: left;
    }
    .faq-q i { color: var(--moss); transition: transform .3s; font-size: 13px; flex-shrink: 0; }
    .faq-item.open .faq-q i { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      font-size: 14px; color: var(--text-lt); line-height: 1.8;
      padding: 0 24px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

    /* ─── CONTACT ────────────────────────────────────── */
    #contact {
      padding: 100px 0;
      background: var(--forest); position: relative; overflow: hidden;
    }
    #contact::after {
      content: '';
      position: absolute; bottom: -100px; right: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(201,168,76,.05);
    }
    .contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; position: relative; }
    .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 14px; }
    .contact-info > p { color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 20px; }
    .contact-detail {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .contact-detail-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(255,255,255,.08); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-lt);
    }
    .contact-detail-text h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .contact-detail-text p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
    .socials { display: flex; gap: 12px; margin-top: 40px; }
    .social-btn {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.7); font-size: 16px; text-decoration: none;
      transition: all .25s;
    }
    .social-btn:hover { background: var(--gold); color: var(--deep); transform: translateY(-3px); }
    .contact-form-card {
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 24px; padding: 40px;
    }
    .contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 28px; }
    .cf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
    .cf-group label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); }
    .cf-group input, .cf-group select, .cf-group textarea {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
      border-radius: 10px; padding: 13px 16px;
      color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 15px;
      outline: none; transition: border-color .2s, background .2s;
      width: 100%;
    }
    .cf-group input::placeholder, .cf-group textarea::placeholder { color: rgba(255,255,255,.25); }
    .cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
      border-color: var(--gold); background: rgba(255,255,255,.1);
    }
    .cf-group select option { background: var(--deep); }
    .cf-group textarea { resize: vertical; min-height: 110px; }
    .cf-submit {
      width: 100%; padding: 15px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--deep); font-family: 'DM Sans', sans-serif;
      font-size: 16px; font-weight: 700; border: none; border-radius: 12px;
      cursor: pointer; transition: all .3s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.3); }

    /* ─── MAP STRIP ──────────────────────────────────── */
    .map-strip {
      background: var(--deep);
      padding: 50px 0;
    }
    .map-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
    .map-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 6px; }
    .map-text p  { color: rgba(255,255,255,.45); font-size: 14px; }
    .map-frame {
      width: 500px; height: 200px; border-radius: 14px; overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
    }
    .map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(.5) contrast(1.1); }

    /* ─── NEWSLETTER ─────────────────────────────────── */
    #newsletter { padding: 80px 0; background: var(--sand); }
    .newsletter-inner {
      max-width: 600px; margin: 0 auto; text-align: center;
    }
    .newsletter-inner .section-title { margin-bottom: 14px; }
    .newsletter-inner p { color: var(--text-lt); font-size: 16px; margin-bottom: 30px; }
    .newsletter-form { display: flex; gap: 12px; }
    .newsletter-form input {
      flex: 1; padding: 14px 20px; border-radius: 50px;
      border: 1.5px solid rgba(0,0,0,.12); background: var(--white);
      font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none;
      transition: border-color .2s;
    }
    .newsletter-form input:focus { border-color: var(--moss); }
    .newsletter-form button {
      padding: 14px 30px; border-radius: 50px;
      background: var(--forest); color: var(--white); border: none;
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
      cursor: pointer; transition: all .3s; white-space: nowrap;
    }
    .newsletter-form button:hover { background: var(--moss); transform: translateY(-2px); }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      background: var(--deep); color: rgba(255,255,255,.6);
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 50px;
    }
    .footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
    .footer-brand p { font-size: 13px; line-height: 1.8; max-width: 240px; }
    footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
    footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    footer ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color .2s; }
    footer ul li a:hover { color: var(--gold-lt); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 13px; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--white); }

    /* ─── TOAST ──────────────────────────────────────── */
    .toast {
      position: fixed; bottom: 30px; right: 30px; z-index: 999;
      background: var(--forest); color: var(--white);
      padding: 16px 24px; border-radius: 12px;
      border-left: 4px solid var(--gold);
      box-shadow: 0 8px 30px rgba(0,0,0,.3);
      transform: translateX(120%); transition: transform .4s ease;
      font-size: 14px; font-weight: 500;
      display: flex; align-items: center; gap: 12px;
    }
    .toast.show { transform: translateX(0); }

    /* ─── RESPONSIVE ─────────────────────────────────── */
    @media (max-width: 1024px) {
      .why-grid { grid-template-columns: 1fr; }
      .why-image-grid { height: 350px; }
      .packages-grid { grid-template-columns: 1fr 1fr; }
      .pkg-card.featured { transform: none; }
      .booking-layout { grid-template-columns: 1fr; }
      .tab-panel.active { grid-template-columns: 1fr; }
      .faq-layout { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .booking-bar-inner { flex-wrap: wrap; }
      .bb-field { min-width: 45%; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta .btn { display: none; }
      .menu-btn { display: block; }
      .hero-stats-inner { flex-direction: column; border-radius: 12px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
      .stat-item:last-child { border-bottom: none; }
      .packages-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gal-item:nth-child(1),
      .gal-item:nth-child(3) { grid-column: auto; grid-row: auto; }
      .form-row { grid-template-columns: 1fr; }
      .why-features { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .newsletter-form { flex-direction: column; }
      .map-frame { width: 100%; }
      .map-inner { flex-direction: column; }
      .scroll-hint { display: none; }
      .hero-stats { position: static; margin-top: 50px; }
    }

    /* ─── LIGHTBOX ───────────────────────────────────── */
    .lightbox {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,.9); display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
    .lightbox-close {
      position: absolute; top: 20px; right: 30px;
      color: white; font-size: 36px; cursor: pointer;
      background: none; border: none; line-height: 1;
    }