@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@1,300;1,500&display=swap"); 

 /* ─── TOKENS ─── */
  :root {
    --sand:      #F5E6C8;
    --sand-dark: #E8C97A;
    --dune:      #C4933F;
    --earth:     #8B5E3C;
    --dusk:      #3B2A1A;
    --sky:       #D4EAF7;
    --white:     #FFFDF8;
    --muted:     #7A6551;
    --accent:    #D97B2C;
    --green:     #4A7C59;
    --radius:    12px;
    --shadow:    0 8px 40px rgba(59,42,26,.12);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--dusk); overflow-x: hidden; }
  img { display: block; width: 100%; }
  a { text-decoration: none; color: inherit; }

  /* ─── UTILS ─── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section-label { font-family: 'DM Sans', sans-serif;  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--dusk); }
  .section-title em { font-style: italic; color: var(--dune); }
  .section-desc { font-size: 1.05rem; line-height: 1.8; color: var(--muted); max-width: 640px; margin-top: 16px; }
    p { font-size: 1.05rem; line-height: 1.8; color: var(--muted);  margin-top: 16px; text-align:justify; }

  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .25s; border: 2px solid transparent; }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,123,44,.35); }
  .btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
  .btn-outline:hover { background: var(--accent); color: #fff; }
  .btn-white { background: #fff; color: var(--dusk); }
  .btn-white:hover { background: var(--sand); }

  /* NAVBAR */
  #navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    height: var(--nav-h); display: flex; align-items: center;
    justify-content: space-between; padding: 0 8px;
    background: transparent;
    transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
  }
  #navbar.scrolled {
    background: rgba(26,18,9,.92); backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); margin-top:5px; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
  .nav-logo-text span:first-child { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--white); letter-spacing:.02em; }
  .nav-logo-text span:last-child { font-size:.7rem; font-weight:400; color:var(--gold); letter-spacing:.12em; text-transform:uppercase; }
  .nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
  .nav-links a {
    font-size:.85rem; font-weight:500; color:rgba(255,255,255,.9);
    text-decoration:none; letter-spacing:.08em; text-transform:uppercase;
    position:relative; padding-bottom:4px; transition:color .25s;
  }
  .nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1.5px; background:var(--gold); transition:width .25s; }
  .nav-links a:hover { color:#fff; }
  .nav-links a:hover::after { width:100%; color:#fff; }
  .nav-cta {
       background: var(--accent) !important;
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 14px;
  }
  .nav-cta::after { display:none !important; }
  .nav-cta:hover { background:#E5A840 !important; }

  /* HAMBURGER */
  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
  .hamburger span { display:block; width:26px; height:2px; background:var(--white); border-radius:2px; transition:transform .3s,opacity .3s; }
  .hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity:0; }
  .hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  /* MOBILE DRAWER */
  .mobile-menu {
    display:none; position:fixed; top:var(--nav-h); left:0; right:0;
    background:rgba(26,18,9,.97); backdrop-filter:blur(16px);
    z-index:999; padding:24px 32px 32px;
    transform:translateY(-20px); opacity:0;
    transition:transform .3s ease,opacity .3s ease; pointer-events:none;
  }
  .mobile-menu.open { transform:translateY(0); opacity:1; pointer-events:all; }
  .mobile-menu ul { list-style:none; display:flex; flex-direction:column; gap:4px; margin-top: 45px; }
  .mobile-menu a {
    display:block; padding:14px 0; font-size:1rem; font-weight:500;
    color:rgba(255,255,255,.88); text-decoration:none; letter-spacing:.06em;
    text-transform:uppercase; border-bottom:1px solid rgba(255,255,255,.08);
    transition:color .2s;
  }
  .mobile-menu a:hover { color:var(--gold); }
  .mobile-cta-wrap { margin-top:20px; }
  .mobile-cta-wrap a {
    display:inline-block; background:var(--gold); color:var(--dusk) !important;
    padding:12px 32px; border-radius:4px; font-weight:700;
    text-transform:uppercase; letter-spacing:.08em;
    border-bottom:none !important; text-decoration:none;
  }

  /* ─── HERO SLIDER ─── */
  #hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
  .slides { display: flex; height: 100%; transition: transform .9s cubic-bezier(.77,0,.18,1); }
  .slide {
    min-width: 100%; height: 100%; position: relative;
    background-size: cover; background-position: center;
  }
  .slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(30,18,8,.6) 0%, rgba(59,42,26,.3) 60%, rgba(139,94,60,.15) 100%);
  }
  .slide-content {
    position: absolute; z-index: 2;
    bottom: 14%; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 800px; text-align: center;
  }
  .slide-eyebrow { font-size: .72rem; text-align: center; letter-spacing: .22em; text-transform: uppercase; color: var(--sand-dark); font-weight: 600; margin-bottom: 14px; }
  .slide-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
  .slide-title em { font-style: italic; color: var(--sand-dark); }
  .slide-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .slide-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  .hero-arrows { position: absolute; z-index: 10; bottom: 19%; left: 0; right: 0; transform: translateY(50%); display: flex; justify-content: space-between; pointer-events: none; padding: 0 20px; }
  .hero-arrow { pointer-events: all; width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); background: rgba(255,255,255,.1); backdrop-filter: blur(6px); color: #fff; font-size: 1.2rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
  .hero-arrow:hover { background: rgba(255,255,255,.25); border-color: #fff; }

  .hero-dots { position: absolute; z-index: 10; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
  .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; }
  .hero-dot.active { background: var(--sand-dark); width: 24px; border-radius: 4px; }

  .scroll-hint { position: absolute; z-index: 10; bottom: 30px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); animation: scrollAnim 2s infinite; }
  @keyframes scrollAnim { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.4;transform:scaleY(.6)} }

  /* ─── STATS STRIP ─── */
  .stats-strip { background: var(--dusk); padding: 36px 0; }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-item { text-align: center; padding: 0 20px; 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: 2.4rem; font-weight: 900; color: var(--sand-dark); }
  .stat-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 4px; }

  /* ─── ABOUT ─── */
  #about { padding: 100px 0; background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-img-big { grid-column: span 2;  object-fit: cover; border-radius: var(--radius); }
  .about-img-sm { height: 180px; object-fit: cover; border-radius: var(--radius); }
  .about-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--sand); padding: 10px 18px; border-radius: 50px; font-size: .82rem; font-weight: 600; color: var(--earth); margin-top: 24px; }
  .about-badge svg { width: 16px; height: 16px; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  .about-feature { display: flex; align-items: flex-start; gap: 10px; }
  .feature-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .feature-text h4 { font-size: .88rem; font-weight: 600; color: var(--dusk); }
  .feature-text p { font-size: .78rem; color: var(--muted); margin-top: 2px; }

  /* ─── ATTRACTIONS ─── */
  #attractions { padding: 100px 0; background: var(--sand); }
  .attract-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
  .attract-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .attract-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
  .attract-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(59,42,26,.18); }
  .attract-img { object-fit: cover; transition: transform .5s; }
  .attract-card:hover .attract-img { transform: scale(1.05); }
  .attract-img-wrap { overflow: hidden; }
  .attract-body { padding: 22px; }
  .attract-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; background: var(--sand); color: var(--earth); margin-bottom: 10px; }
  .attract-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--dusk); margin-bottom: 8px; }
  .attract-body p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
  .attract-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--sand); }
  .attract-dist { font-size: .78rem; color: var(--muted); }
  .attract-link { font-size: .82rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }
  .attract-link:hover { gap: 8px; }

  /* ─── ACTIVITIES ─── */
  #activities { padding: 100px 0; background: var(--white); }
  .activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .activity-card { position: relative; border-radius: 16px; overflow: hidden; height: 300px; cursor: pointer; }
  .activity-card.tall { grid-row: span 2; height: auto; min-height: 624px; }
  .activity-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
  .activity-card:hover .activity-bg { transform: scale(1.06); }
  .activity-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,18,8,.85) 0%, rgba(30,18,8,.2) 60%, transparent 100%); }
  .activity-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
  .activity-icon { font-size: 2rem; margin-bottom: 10px; }
  .activity-body h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; font-weight: 700; margin-bottom: 6px; }
  .activity-body p { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.6; }
  .activity-pill { display: inline-block; margin-top: 12px; padding: 5px 14px; border-radius: 50px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); font-size: .75rem; color: #fff; font-weight: 500; backdrop-filter: blur(4px); }

  /* ─── TOUR PACKAGES ─── */
  #packages { padding: 100px 0; background: var(--dusk); }
  #packages .section-label { color: var(--sand-dark); }
  #packages .section-title { color: #fff; }
  #packages .section-title em { color: var(--sand-dark); }
  #packages .section-desc { color: rgba(255,255,255,.6); }
  .packages-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pkg-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; transition: all .3s; }
  .pkg-card:hover { background: rgba(255,255,255,.1); border-color: var(--sand-dark); transform: translateY(-4px); }
  .pkg-img { height: 200px; object-fit: cover; }
  .pkg-body { padding: 22px; }
  .pkg-duration { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sand-dark); background: rgba(232,201,122,.1); padding: 5px 12px; border-radius: 4px; margin-bottom: 12px; }
  .pkg-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; font-weight: 700; margin-bottom: 8px; }
  .pkg-dest { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 16px; line-height: 1.6; }
  .pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
  .pkg-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--sand-dark); }
  .pkg-price span { font-family: 'DM Sans', sans-serif; font-size: .72rem; color: rgba(255,255,255,.4); font-weight: 400; }
  .pkg-btn { padding: 8px 18px; border-radius: 50px; background: var(--accent); color: #fff; font-size: .8rem; font-weight: 600; border: none; cursor: pointer; transition: all .2s; }
  .pkg-btn:hover { background: var(--earth); }

  /* ─── EXPERIENCE BANNER ─── */
  #experience { position: relative; padding: 120px 0; overflow: hidden; }
  .exp-bg { position: absolute; inset: 0; background: url('../image/desert.webp') center/cover; }
  .exp-bg::after { content: ''; position: absolute; inset: 0; background: rgba(30,18,8,.75); }
  .exp-content { position: relative; z-index: 2; text-align: center; }
  .exp-content .section-label { color: var(--sand-dark); }
  .exp-content .section-title { color: #fff; }
  .exp-content .section-title em { color: var(--sand-dark); }
  .exp-content .section-desc { color: rgba(255,255,255,.75); margin-left: auto; margin-right: auto; text-align: center; }
  .exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
  .exp-item { text-align: center; }
  .exp-circle { width: 80px; height: 80px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 16px; backdrop-filter: blur(6px); }
  .exp-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; font-weight: 700; margin-bottom: 6px; }
  .exp-item p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }

  /* ─── TESTIMONIALS ─── */
  #testimonials { padding: 100px 0; background: var(--sand); }
  .testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .testi-card { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: var(--shadow); position: relative; }
  .testi-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--sand); line-height: 1; }
  .stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
  .testi-text { font-size: .9rem; line-height: 1.8; color: var(--muted); position: relative; z-index: 1; }
  .testi-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--sand); }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sand-dark); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--earth); flex-shrink: 0; }
  .testi-name { font-weight: 700; font-size: .9rem; color: var(--dusk); }
  .testi-from { font-size: .75rem; color: var(--muted); }

  /* ─── GALLERY STRIP ─── */
  #gallery { padding: 80px 0 0; background: var(--white); }
  .gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 40px; }
  .gallery-item { overflow: hidden; border-radius: 8px; cursor: pointer; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item img { height: 220px; object-fit: cover; transition: transform .5s; }
  .gallery-item:first-child img { height: 220px; }
  .gallery-item:hover img { transform: scale(1.08); }

  /* ─── CONTACT ─── */
  #contact { padding: 100px 0; background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--dusk); margin-bottom: 16px; }
  .contact-info p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
  .contact-items { display: flex; flex-direction: column; gap: 16px; }
  .contact-item { display: flex; align-items: center; gap: 14px; }
  .contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .contact-item-text h5 { font-size: .82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
  .contact-item-text p { font-size: .95rem; font-weight: 600; color: var(--dusk); }
  .contact-form { background: var(--sand); border-radius: 20px; padding: 36px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: .8rem; font-weight: 600; color: var(--earth); text-transform: uppercase; letter-spacing: .08em; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 2px solid rgba(196,147,63,.2); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--dusk); background: var(--white); outline: none; transition: border-color .2s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--dune); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; padding: 14px; background: var(--accent); color: #fff; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .25s; }
  .form-submit:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,123,44,.3); }

  /* ─── FOOTER ─── */
  footer { background: var(--dusk); color: rgba(255,255,255,.7); }
  .footer-top { padding: 70px 0 40px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-brand p { font-size: .88rem; line-height: 1.8; margin-top: 14px; margin-bottom: 24px; color: rgba(255,255,255,.5); }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; cursor: pointer; transition: all .2s; }
  .social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; font-weight: 700; margin-bottom: 18px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: 6px; }
  .footer-links a:hover { color: var(--sand-dark); }
  .footer-links a::before { content: '→'; font-size: .7rem; opacity: .5; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; gap: 16px; flex-wrap: wrap; }
  .footer-logo-txt { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: #fff; }
  .footer-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,.1); font-size: .72rem; color: rgba(255,255,255,.5); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .attract-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:first-child { grid-column: span 1; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .about-grid { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: 1fr; }
    .activity-card.tall { min-height: 300px; }
    .testi-track { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 16px; }
    .attract-grid { grid-template-columns: 1fr; }
    .pkg-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .attract-header, .packages-header { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .slide-content { bottom: 18%; }
    .slide-title { font-size: 2rem; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; }
	#hero {
  position: relative;
  height: 67vh;
  min-height: 470px;
  overflow: hidden;
}
  }
  
  .icon-bar {
  position: fixed;
  top: 80%;
}
/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.whatsapp {
  color: white;
}
	  /* RESPONSIVE */
  @media(max-width:1024px) {
	.nav-logo img {  width: 90% !important; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); margin-top:5px; }
  }
  @media(max-width:768px) {
    #navbar { 11px 20px }
    .nav-links { display:none; }
    .hamburger { display:flex; }
    .mobile-menu { display:block; }
	.nav-logo img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); margin-top:5px; }
    }
	
  }