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

  :root {
    --gold: #C9922A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C8;
    --sand: #F2E4C4;
    --sand-dark: #DBC99A;
    --dune: #B8935A;
    --earth: #8B5E3C;
    --night: #1A1208;
    --text: #3D2B1A;
    --text-light: #7A5C3E;
    --white: #FFFDF8;
    --cream: #FBF5E8;
    --shadow: rgba(139, 94, 60, 0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

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

  /* ══════════════════════════════
     HEADER & NAV
  ══════════════════════════════ */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 253, 248, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: all 0.4s ease;
  }
  header.scrolled {
    box-shadow: 0 4px 30px var(--shadow);
  }

  .nav-wrapper {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem;
    height: 72px;
  }

  .logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--dune));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(201, 146, 42, 0.35);
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--earth);
    letter-spacing: 0.02em;
  }
  .logo-sub {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem; font-weight: 300;
    color: var(--gold); letter-spacing: 0.18em;
    text-transform: uppercase; margin-top: 11px;
  }

  nav { display: flex; align-items: center; gap: 0.2rem; }
  nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text); text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    position: relative;
  }
  nav a::after {
    content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
    height: 1.5px; background: var(--gold);
    transition: all 0.25s ease;
  }
  nav a:hover { color: var(--gold); }
  nav a:hover::after { left: 0.9rem; right: 0.9rem; }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--dune)) !important;
    color: white !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(201,146,42,0.3);
    transition: all 0.3s ease !important;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,146,42,0.45) !important; }
  .nav-cta::after { display: none !important; }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--earth); border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-menu {
    display: none; flex-direction: column;
    background: var(--white); border-top: 1px solid var(--sand-dark);
    padding: 1rem 2rem 1.5rem;
    gap: 0.25rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text); text-decoration: none;
    padding: 0.7rem 0; border-bottom: 1px solid var(--gold-pale);
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* ══════════════════════════════
     HERO SLIDER
  ══════════════════════════════ */
  .hero {
    position: relative; height: 100vh; min-height: 600px;
    overflow: hidden;  padding: 0rem 0;
  }

  .slides { position: relative; width: 100%; height: 100%; }
  .slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease;
    background-size: cover; background-position: center;
  }
  .slide.active { opacity: 1; }

  .slide-1 { background: linear-gradient(to bottom, rgba(26,18,8,0.3) 0%, rgba(26,18,8,0.55) 100%),
    url('../image/stayondunesjaisalmer.jpg') center/cover; }
  .slide-2 { background: linear-gradient(to bottom, rgba(26,18,8,0.2) 0%, rgba(26,18,8,0.6) 100%),
    url('../image/staydunesjaisalmer.jpg') center/cover; }
  .slide-3 { background: linear-gradient(to bottom, rgba(26,18,8,0.25) 0%, rgba(26,18,8,0.55) 100%),
    url('../image/stayondunesjaisalmer1.jpg') center/cover; }
  .slide-4 { background: linear-gradient(to bottom, rgba(26,18,8,0.3) 0%, rgba(26,18,8,0.5) 100%),
    url('../image/stayondunesjaisalmer2.jpg') center/cover; }

  .hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 2rem;
    z-index: 5;
  }

  .hero-badge {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold-light);
    background: rgba(201,146,42,0.15);
    border: 1px solid rgba(201,146,42,0.4);
    padding: 0.45rem 1.2rem; border-radius: 30px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700; color: white;
    line-height: 1.1; letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.8s ease 0.4s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .hero h1 em { color: var(--gold-light); font-style: italic; }

  .hero p {
    font-size: 1.15rem; color: rgba(255,255,255,0.85);
    max-width: 520px; line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.6s both;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.8s ease 0.8s both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dune));
    color: white; text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.2rem; border-radius: 40px;
    box-shadow: 0 6px 25px rgba(201,146,42,0.45);
    transition: all 0.3s ease;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(201,146,42,0.55); }

  .btn-outline {
    background: transparent;
    color: white; text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.2rem; border-radius: 40px;
    border: 1.5px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    display: inline-block;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

  /* Slider controls */
  .slider-dots {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.6rem; z-index: 10;
  }
  .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); border: none; cursor: pointer;
    transition: all 0.3s ease;
  }
  .dot.active { background: var(--gold-light); width: 28px; border-radius: 4px; }

  .slider-arrows {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 100%; display: flex; justify-content: space-between;
    padding: 0 1.5rem; z-index: 10; pointer-events: none;
  }
  .arrow {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
    color: white; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease; backdrop-filter: blur(6px);
  }
  .arrow:hover { background: var(--gold); border-color: var(--gold); }

  /* Dune wave at bottom */
  .hero-wave {
    position: absolute; bottom: -2px; left: 0; right: 0; z-index: 6;
  }

  /* ══════════════════════════════
     SECTION COMMONS
  ══════════════════════════════ */
  section { padding: 5rem 0; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

  .section-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .section-label::before, .section-label::after {
    content: ''; flex: 1 1 30px; max-width: 40px;
    height: 1px; background: var(--gold-light);
  }
  .section-label.center { justify-content: center; }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--text);
    line-height: 1.2; margin-bottom: 1rem;
  }
  .section-title.center { text-align: center; }

  .section-desc {
    font-size: 1.1rem; color: var(--text-light);
    line-height: 1.8; max-width: 600px;
  }
   p {
    font-size: 1.1rem; color: var(--text-light); letter-spacing: 1px;
    line-height: 1.8; text-align: justify !important; font-family: initial; 
  }
  .section-desc.center { text-align: center; margin: 0 auto; }

  /* ══════════════════════════════
     ABOUT / WELCOME
  ══════════════════════════════ */
  .about-section { background: var(--cream); }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }

  .about-img-wrap {
    position: relative;
  }
  .about-img-main {
    width: 100%; height: 480px; object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow);
  }
  .about-img-accent {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 200px; height: 200px; object-fit: cover;
    border-radius: 12px;
    border: 6px solid var(--white);
    box-shadow: 0 10px 40px var(--shadow);
  }
  .about-badge-float {
    position: absolute; top: 2rem; left: -1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--dune));
    color: white; border-radius: 12px;
    padding: 1rem 1.3rem;
    box-shadow: 0 8px 30px rgba(201,146,42,0.4);
    text-align: center;
  }
  .about-badge-float .num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; display: block;
  }
  .about-badge-float .lbl {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  }

  .about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 2rem;
  }
  .about-feat {
    display: flex; align-items: center; gap: 0.8rem;
    background: white; border-radius: 10px; padding: 0.8rem 1rem;
    border: 1px solid var(--sand-dark);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--earth);
  }
  .about-feat .icon { font-size: 1.2rem; }

  .about-phone {
    display: inline-flex; align-items: center; gap: 0.8rem;
    margin-top: 2rem;
    background: var(--gold-pale); border-radius: 40px;
    padding: 0.8rem 1.4rem;
    text-decoration: none; color: var(--earth);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    transition: all 0.3s;
  }
  .about-phone:hover { background: var(--gold); color: white; }

  /* ══════════════════════════════
     SAND DUNES PROGRAMME — 4 BOXES
  ══════════════════════════════ */
  .dunes-section { background: var(--white); }

  .dunes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .dune-card {
    position: relative; border-radius: 16px; overflow: hidden;
    height: 360px; cursor: pointer;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .dune-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(139,94,60,0.25); }

  .dune-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .dune-card:hover img { transform: scale(1.08); }

  .dune-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.85) 0%, rgba(26,18,8,0.1) 60%);
  }

  .dune-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
  }
  .dune-card-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem;
    margin-bottom: 0.6rem;
    box-shadow: 0 4px 15px rgba(201,146,42,0.5);
  }
  .dune-card h3 {
    font-family: 'Playfair Display', serif; text-align:center;
    font-size: 1.2rem; color: white; font-weight: 600;
  }
  .dune-card p {
    font-size: 0.88rem; color: rgba(255,255,255,0.7);
    margin-top: 0.3rem; line-height: 1.5;
  }

  /* ══════════════════════════════
     POPULAR TOURS — 3 BOXES
  ══════════════════════════════ */
  .tours-section { background: var(--cream); }

  .tours-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
  }

  .tour-card {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 6px 25px var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--sand);
  }
  .tour-card:hover { transform: translateY(-8px); box-shadow: 0 18px 50px rgba(139,94,60,0.2); }

  .tour-img-wrap { position: relative; overflow: hidden; height: 240px; }
  .tour-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .tour-card:hover .tour-img-wrap img { transform: scale(1.07); }

  .tour-tag {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--gold); color: white;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 20px;
  }

  .tour-body { padding: 1.5rem; }
  .tour-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--text);
    margin-bottom: 0.7rem;
  }
  .tour-body p {
    font-size: 0.95rem; color: var(--text-light); line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  .tour-meta {
    display: flex; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap;
  }
  .tour-meta span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
    color: var(--gold); background: var(--gold-pale);
    padding: 0.3rem 0.7rem; border-radius: 15px;
  }
  .tour-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--gold); text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; transition: gap 0.2s;
  }
  .tour-link:hover { gap: 0.9rem; }

  /* ══════════════════════════════
     ACTIVITIES — 6 BOXES
  ══════════════════════════════ */
  .activities-section { background: var(--night); position: relative; overflow: hidden; }
  .activities-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C9922A' opacity='0.08'/%3E%3C/svg%3E") repeat;
  }

  .activities-section .section-label { justify-content: center; color: var(--gold-light); }
  .activities-section .section-label::before,
  .activities-section .section-label::after { background: rgba(201,146,42,0.3); }
  .activities-section .section-title { text-align: center; color: white; }
  .activities-section .section-desc { text-align: center; color: rgba(255,255,255,0.65); margin: 0 auto; }

  .activities-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }

  .activity-card {
    position: relative; border-radius: 16px; overflow: hidden;
    height: 280px; cursor: pointer;
    border: 1px solid rgba(201,146,42,0.2);
    transition: all 0.4s ease;
  }
  .activity-card:hover { transform: translateY(-6px); border-color: var(--gold); }

  .activity-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.75) saturate(0.9);
  }
  .activity-card:hover img { transform: scale(1.08); filter: brightness(0.6) saturate(1); }

  .activity-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.9) 0%, rgba(26,18,8,0.1) 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.4s;
  }
  .activity-card:hover .activity-overlay {
    background: linear-gradient(to top, rgba(26,18,8,0.95) 0%, rgba(26,18,8,0.4) 100%);
  }

  .activity-icon {
    font-size: 2rem; margin-bottom: 0.5rem;
    transform: translateY(5px);
    transition: transform 0.3s ease;
  }
  .activity-card:hover .activity-icon { transform: translateY(0); }

  .activity-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: white; font-weight: 600;
    margin-bottom: 0.4rem;
  }
  .activity-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0);
    line-height: 1.5;
    max-height: 0; overflow: hidden;
    transition: all 0.4s ease;
  }
  .activity-card:hover .activity-desc {
    color: rgba(255,255,255,0.75);
    max-height: 60px;
  }

  /* ══════════════════════════════
     THAR DESERT CAMP — 3 BOXES
  ══════════════════════════════ */
  .thar-section { background: var(--cream); }

  .thar-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
  }

  .thar-card {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 6px 30px var(--shadow);
    background: white;
    transition: all 0.4s ease;
  }
  .thar-card:hover { transform: translateY(-8px); box-shadow: 0 20px 55px rgba(139,94,60,0.22); }

  .thar-img-wrap { position: relative; height: 260px; overflow: hidden; }
  .thar-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .thar-card:hover .thar-img-wrap img { transform: scale(1.08); }

  .thar-location-tag {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(26,18,8,0.65); color: white;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 20px;
    backdrop-filter: blur(6px);
  }

  .thar-body { padding: 1.4rem; }
    .thar-body a { text-decoration:none; }
  .thar-body h4 {
    font-family: 'Playfair Display', serif; text-align:center;
    font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem;
  }
  .thar-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

  .thar-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; text-align: center; }

  /* ══════════════════════════════
     REVIEWS
  ══════════════════════════════ */
  .reviews-section { background: var(--white); }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3rem;
  }

  .review-card {
    background: var(--cream); border-radius: 16px; padding: 2rem;
    border: 1px solid var(--sand-dark);
    position: relative;
    transition: all 0.3s ease;
  }
  .review-card:hover { box-shadow: 0 10px 35px var(--shadow); transform: translateY(-4px); }

  .review-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem; line-height: 1;
    color: var(--gold-pale);
    position: absolute; top: 0.5rem; left: 1.5rem;
    pointer-events: none;
  }

  .review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }

  .review-text {
    font-size: 0.98rem; color: var(--text);
    line-height: 1.8; margin-bottom: 1.5rem;
    font-style: italic;
  }

  .reviewer {
    display: flex; align-items: center; gap: 0.8rem;
  }
  .reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dune));
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    flex-shrink: 0;
  }
  .reviewer-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--earth);
  }
  .reviewer-loc {
    font-size: 0.78rem; color: var(--text-light);
  }

  /* ══════════════════════════════
     FAQ
  ══════════════════════════════ */
  .faq-section { background: var(--cream); }

  .faq-wrap { max-width: 780px; margin: 3rem auto 0; }

  .faq-item {
    border: 1px solid var(--sand-dark); border-radius: 12px;
    margin-bottom: 1rem; overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  .faq-item.open { box-shadow: 0 6px 25px var(--shadow); }

  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.3rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 600; color: var(--text);
    text-align: left; gap: 1rem;
    transition: background 0.2s;
  }
  .faq-q:hover, .faq-item.open .faq-q { background: var(--gold-pale); }

  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gold-pale); border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem; color: var(--gold);
    transition: all 0.3s;
  }
  .faq-item.open .faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }

  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    font-size: 0.95rem; color: var(--text-light); line-height: 1.8;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.3rem; }

  /* ══════════════════════════════
     CTA BANNER
  ══════════════════════════════ */
  .cta-section {
    background: linear-gradient(135deg, var(--earth) 0%, var(--night) 100%);
    position: relative; overflow: hidden;
    padding: 5rem 0;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M0 80 Q50 30 100 60 Q150 90 200 40 L200 80Z' fill='%23C9922A' opacity='0.07'/%3E%3C/svg%3E") bottom/cover no-repeat;
  }
  .cta-inner { text-align: center; position: relative; }
  .cta-inner p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1rem; 
  }
  .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); color: white;
    margin-bottom: 0.8rem;
  }
  .cta-inner .sub {
    font-size: 1rem; color: rgba(255,255,255,0.65);
    max-width: 480px; margin: 0 auto 2rem;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.03em; font-size: 0.85rem;
    text-transform: none;
  }

  /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
  footer {
    background: var(--night);
    border-top: 1px solid rgba(201,146,42,0.2);
    padding: 4rem 0 2rem;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem; margin-bottom: 3rem;
  }

  .footer-brand .logo-title { font-size: 1.2rem; color: var(--gold-light); }
  .footer-brand .logo-sub { color: var(--sand-dark); }

  .footer-tagline {
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    line-height: 1.7; margin: 1rem 0 1.5rem;
  }

  .footer-social { display: flex; gap: 0.6rem; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem;
    transition: all 0.3s;
  }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); color: white; }

  .footer-col h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,146,42,0.25);
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a {
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-col ul li a::before { content: '→'; font-size: 0.7rem; color: var(--gold); }

  .footer-contact-item {
    display: flex; gap: 0.8rem; margin-bottom: 0.8rem;
    font-size: 0.88rem; color: rgba(255,255,255,0.5);
    align-items: flex-start;
  }
  .footer-contact-item .ci { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
  .footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-contact-item a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.3);
  }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem; color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* ── FLOATING WHATSAPP ── */
  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    text-decoration: none; font-size: 1.5rem;
    transition: transform 0.3s;
    animation: pulse-wa 2s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.12); }

  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

.reveal.visible p { text-align:center;}
  /* ── DECORATIVE DIVIDER ── */
  .ornament {
    text-align: center; margin: 1rem 0 0;
    color: var(--gold); font-size: 1.2rem; letter-spacing: 0.5rem;
    opacity: 0.6;
  }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dunes-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img-accent { display: none; }
    .about-badge-float { left: 1rem; }
    .tours-grid { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .thar-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .dunes-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    .activities-grid { grid-template-columns: 1fr; }
    .dunes-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; align-items: center; }
  }
