:root {
    --sand: #C8A96E;
    --sand-light: #E8D5A3;
    --sand-pale: #FDF6E3;
    --dusk: #8B4513;
    --rust: #B85C2A;
    --night: #1A1208;
    --dune: #2C1F0A;
    --gold: #D4A017;
    --white: #FEFAF2;
    --text: #3A2A10;
    --muted: #7A6040;
    --night-mid:  #231a0e;
    --gold-light: #e8c96a;
    --cream:      #F5EDD6;
    --terra:      #C4623A;
    --bgm-sand:        #C8A96E;
  --bgm-sand-light:  #E8D5A8;
  --bgm-sand-pale:   #FAF3E0;
  --bgm-earth:       #8B5E3C;
  --bgm-earth-dark:  #5C3D1E;
  --bgm-dusk:        #2C1F0E;
  --bgm-night:       #1A1208;
  --bgm-white:       #FFFDF8;
  --bgm-muted:       #7A6A55;
  --bgm-border:      #D9C49A;
  --bgm-gold:        #D4A843;
  --bgm-gold-light:  #F0D080;
    --sand-dark: #A07840;
    --desert-brown: #3D2B1A;
    --desert-mid: #5C3D22;
    --cream: #FDF6EC;
    --text-light: #F5ECD8;
    --text-muted: #C4A882;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
 
  --bgm-font-display: 'Playfair Display', Georgia, serif;
  --bgm-font-body:    'Inter', system-ui, sans-serif;
 
  --bgm-radius-sm:   6px;
  --bgm-radius-md:   12px;
  --bgm-radius-lg:   20px;
 
  --bgm-shadow-sm:   0 2px 8px rgba(44,31,14,.10);
  --bgm-shadow-md:   0 6px 24px rgba(44,31,14,.15);
  --bgm-shadow-lg:   0 16px 48px rgba(44,31,14,.20);
 
  --bgm-max-w:       1250px;
  --bgm-gutter:      clamp(16px, 5vw, 48px);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

  em { font-style: italic; color: var(--sand); }

  a { text-decoration: none; color: inherit; }

  img { max-width: 100%; display: block; }

.top-bar {
    background: var(--desert-brown);
    padding: 7px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }
  .top-bar-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
  .top-bar a { color: var(--text-muted); text-decoration: none; font-size: 12px; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
  .top-bar a:hover { color: var(--sand); }
  .top-bar-socials { display: flex; gap: 14px; }
  .top-bar-socials a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
  .top-bar-socials a:hover { color: var(--sand); }

  header { background: var(--desert-mid); padding: 0 24px; position: relative; }
  .header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 76px; }

  .logo-wrap { display: flex; align-items: center; text-decoration: none; }
  .logo-wrap img { height: 52px; width: auto; display: block; filter: brightness(1.08); }

  nav { display: flex; align-items: center; gap: 4px; }
  .nav-link { color: var(--text-light); text-decoration: none; font-size: 13.5px; padding: 8px 12px; border-radius: 4px; position: relative; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-link:hover { color: var(--sand); background: rgba(200,169,106,0.1); }
  .nav-link.has-dropdown { padding-right: 22px; }
  .nav-link.has-dropdown::after { content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: 4px solid transparent; border-top-color: var(--text-muted); margin-top: 2px; }

  .dropdown-wrap { position: relative; }
  .dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--desert-brown); border: 1px solid rgba(200,169,106,0.2); border-radius: 6px; min-width: 190px; z-index: 100; padding: 6px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
  .dropdown-wrap:hover .dropdown { display: block; }
  .dropdown a { display: block; padding: 9px 16px; color: var(--text-light); text-decoration: none; font-size: 13px; transition: background 0.15s, color 0.15s; }
  .dropdown a:hover { background: rgba(200,169,106,0.12); color: var(--sand); }
  .dropdown-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); padding: 8px 16px 4px; text-transform: uppercase; }
  .dropdown hr { border: none; border-top: 1px solid rgba(200,169,106,0.12); margin: 4px 0; }

  .btn-book { background: var(--sand); color: var(--desert-brown); border: none; padding: 10px 20px; border-radius: 5px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; letter-spacing: 0.3px; }
  .btn-book:hover { background: #DABC80; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--sand); border-radius: 2px; transition: all 0.3s; }

  .mobile-nav { display: none; background: var(--desert-brown); border-top: 1px solid rgba(200,169,106,0.15); padding: 12px 16px 20px; }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; color: var(--text-light); text-decoration: none; font-size: 14px; padding: 11px 8px; border-bottom: 1px solid rgba(200,169,106,0.08); transition: color 0.2s; }
  .mobile-nav a:hover { color: var(--sand); }
  .mobile-section-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; padding: 14px 8px 4px; }
  .mobile-book { display: block; background: var(--sand); color: var(--desert-brown) !important; text-align: center; padding: 12px !important; border-radius: 5px; font-weight: 600; margin-top: 14px; border-bottom: none !important; }

  footer { background: var(--desert-brown); color: var(--text-light); margin-top: 32px; }
  .footer-top { max-width: 1200px; margin: 0 auto; padding: 48px 24px 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }

  .footer-brand-logo { display: flex; align-items: center; margin-bottom: 16px; text-decoration: none; }
  .footer-brand-logo img { height: 44px; width: auto; filter: brightness(1.05); }

  .footer-tagline { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
  .footer-socials { display: flex; gap: 10px; }
  .footer-socials a { width: 34px; height: 34px; border-radius: 5px; border: 1px solid rgba(200,169,106,0.25); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 16px; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
  .footer-socials a:hover { border-color: var(--sand); color: var(--sand); background: rgba(200,169,106,0.08); }

  .footer-col h4 { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--sand); }

  .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; }
  .footer-contact-item i { font-size: 16px; color: var(--sand); margin-top: 1px; flex-shrink: 0; }
  .footer-contact-item a, .footer-contact-item p { color: var(--text-muted); text-decoration: none; font-size: 13px; line-height: 1.5; transition: color 0.2s; }
  .footer-contact-item a:hover { color: var(--sand); }

  .footer-divider { border: none; border-top: 1px solid rgba(200,169,106,0.12); max-width: 1200px; margin: 0 auto; }
  .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
  .footer-copyright { font-size: 12.5px; color: var(--text-muted); }
  .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
  .footer-legal a { font-size: 12.5px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--sand); }

  .demo-body { background: var(--color-background-secondary); text-align: center; padding: 32px 24px; color: var(--color-text-secondary); font-size: 13px; border-left: 3px solid rgba(200,169,106,0.25); }

  @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px) {
    .top-bar { justify-content: center; }
    .top-bar-contacts { justify-content: center; }
    .top-bar-socials { display: none; }
    nav { display: none; }
    .hamburger { display: flex; }
    .btn-book { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
    .footer-tagline { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    .header-inner { height: 64px; }
    .logo-wrap img { height: 44px; }
  }
  /* ── HERO SLIDER ── */
  .hero {
    position: relative; height: 100vh; min-height: 580px; overflow: hidden;
  }

  .slides { position: relative; width: 100%; height: 100%; }

  .slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.2s ease;
    display: flex; align-items: center;
  }
  .slide.active { opacity: 1; }

  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .slide-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,18,8,0.75) 40%, rgba(26,18,8,0.2));
  }

  .slide-1 .slide-bg { background-image: url('http://sandroutesresort.com/img/banner-1.jpg'); }
  .slide-2 .slide-bg { background-image: url('https://www.sandroutesresort.com/img/banner-2.jpg'); }
  .slide-3 .slide-bg { background-image: url('https://www.sandroutesresort.com/img/banner-3.jpg'); }
  .slide-4 .slide-bg { background-image: url('https://www.sandroutesresort.com/img/banner-4.jpg'); }

  .slide-content {
    position: relative; z-index: 2; padding: 0 8%; max-width: 680px;
  }

  .slide-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sand); border-bottom: 1px solid var(--sand);
    padding-bottom: 4px; margin-bottom: 1.4rem;
  }

  .slide-content h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .slide-content p {
    color: rgba(253,246,227,0.85); font-size: 1.05rem;
    line-height: 1.7; font-weight: 300; margin-bottom: 2rem;
    max-width: 480px;
  }

  .slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    padding: 0.75rem 2rem; background: var(--sand);
    color: var(--night); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
    transition: all 0.25s;
  }
  .btn-primary:hover { background: var(--gold); }

  .btn-outline {
    padding: 0.75rem 2rem; border: 1px solid rgba(253,246,227,0.5);
    color: var(--white); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
    transition: all 0.25s;
  }
  .btn-outline:hover { border-color: var(--sand); color: var(--sand); }

  .hero-dots {
    position: absolute; bottom: 32px; left: 8%;
    display: flex; gap: 10px; z-index: 10;
  }
  .hero-dots button {
    width: 28px; height: 3px; background: rgba(255,255,255,0.35);
    border: none; cursor: pointer; border-radius: 2px; transition: all 0.3s;
  }
  .hero-dots button.active { background: var(--sand); width: 44px; }

  .hero-counter {
    position: absolute; bottom: 28px; right: 8%;
    color: rgba(253,246,227,0.5); font-size: 0.85rem;
    font-family: 'Cormorant Garamond', serif; letter-spacing: 0.1em;
    z-index: 10;
  }
  .hero-counter strong { color: var(--sand-light); }

  /* ── SECTION COMMONS ── */
  section { padding: 100px 6%; }

  .section-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--sand); margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2;
    color: var(--night); margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.92rem; color: var(--muted); font-weight: 300;
    line-height: 1.8; max-width: 520px;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--dune); padding: 28px 6%;
    display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  }

  .stat-item {
    text-align: center; padding: 0 3rem;
    border-right: 1px solid rgba(200,169,110,0.2);
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
    color: var(--sand); font-weight: 400;
  }

  .stat-label {
    font-size: 0.75rem; color: rgba(232,213,163,0.6);
    letter-spacing: 0.08em; margin-top: 2px;
  }

  /* ── ABOUT ── */
  .about-section { background: var(--sand-pale); }

  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; max-width: 1200px; margin: 0 auto;
  }

  .about-images {
    position: relative; height: 520px;
  }

  .about-img-1 {
    position: absolute; top: 0; left: 0;
    width: 72%; height: 80%;
    object-fit: cover; border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .about-img-2 {
    position: absolute; bottom: 0; right: 0;
    width: 52%; height: 52%;
    object-fit: cover; border-radius: 2px;
    border: 4px solid var(--white);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }

  .about-badge {
    position: absolute; top: 48%; left: 58%;
    transform: translate(-50%,-50%);
    background: var(--sand); color: var(--night);
    width: 90px; height: 90px; border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; z-index: 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .about-badge strong { font-size: 1.6rem; font-family: 'Cormorant Garamond', serif; line-height: 1; }
  .about-badge span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }

  .about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0;
  }

  .feature-item {
    padding: 1rem 1.2rem; background: var(--white);
    border-left: 3px solid var(--sand); border-radius: 0 4px 4px 0;
  }

  .feature-item h4 {
    font-size: 0.9rem; font-family: 'Jost', sans-serif;
    font-weight: 600; color: var(--dune); margin-bottom: 4px;
  }
  .feature-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

  .about-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

  .btn-dark {
    padding: 0.75rem 2rem; background: var(--dune);
    color: var(--sand-light); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
    transition: all 0.25s;
  }
  .btn-dark:hover { background: var(--night); }

  .btn-sand {
    padding: 0.75rem 2rem; border: 1px solid var(--sand);
    color: var(--sand); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
    transition: all 0.25s;
  }
  .btn-sand:hover { background: var(--sand); color: var(--night); }

  /* ── ACCOMMODATION ── */
  .accommodation-section { background: var(--night); }

  .accommodation-section .section-title { color: var(--sand-light); }
  .accommodation-section .section-label { color: var(--sand); }

  .accom-meta {
    display: flex; gap: 2.5rem; margin: 1.5rem 0 3rem; flex-wrap: wrap;
  }
  .accom-meta-item { text-align: center; }
  .accom-meta-item .meta-val {
    font-size: 0.85rem; font-weight: 600; color: var(--sand); letter-spacing: 0.05em;
  }
  .accom-meta-item .meta-key {
    font-size: 0.7rem; color: rgba(232,213,163,0.5); letter-spacing: 0.12em;
    text-transform: uppercase; margin-top: 2px;
  }

  .tent-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
  }

  .tent-card {
    background: var(--dune); border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(200,169,110,0.15); transition: transform 0.3s;
    position: relative;
  }
  .tent-card:hover { transform: translateY(-4px); }

  .tent-badge {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    padding: 4px 12px; background: var(--sand); color: var(--night);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; border-radius: 2px;
  }
  .tent-badge.premium { background: var(--gold); }
  .tent-badge.family { background: var(--rust); color: #fff; }

  .tent-img { width: 100%; height: 200px; object-fit: cover; }

  .tent-body { padding: 1.5rem; }

  .tent-count {
    font-size: 0.7rem; color: var(--sand); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 0.3rem;
  }
  .tent-name {
    font-size: 1.35rem; color: var(--sand-light); font-weight: 400; margin-bottom: 4px;
  }
  .tent-subtitle {
    font-size: 0.78rem; color: rgba(232,213,163,0.5); margin-bottom: 1rem;
  }
  .tent-price {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    color: var(--sand); font-weight: 300; margin-bottom: 4px;
  }
  .tent-price span { font-size: 0.78rem; color: rgba(232,213,163,0.5); display: block; font-family: 'Jost', sans-serif; }

  .tent-features { list-style: none; margin: 1.2rem 0; }
  .tent-features li {
    font-size: 0.78rem; color: rgba(232,213,163,0.65);
    padding: 5px 0; border-bottom: 1px solid rgba(200,169,110,0.1);
    display: flex; gap: 8px;
  }
  .tent-features li::before { content: '✦'; color: var(--sand); font-size: 0.6rem; margin-top: 2px; flex-shrink: 0; }

  .tent-btns { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
  .tent-btns a {
    flex: 1; text-align: center; padding: 0.6rem 0.5rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; border-radius: 2px; transition: all 0.2s;
  }
  .tent-btn-book { background: var(--sand); color: var(--night); }
  .tent-btn-book:hover { background: var(--gold); }
  .tent-btn-wa { border: 1px solid rgba(37,211,102,0.5); color: #25D366; }
  .tent-btn-wa:hover { background: rgba(37,211,102,0.1); }

  .accom-includes {
    max-width: 900px; margin: 3rem auto 0;
    background: rgba(200,169,110,0.08); border: 1px solid rgba(200,169,110,0.2);
    border-radius: 4px; padding: 2rem;
    display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center;
  }

  .accom-includes h4 {
    width: 100%; text-align: center; color: var(--sand-light);
    font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .include-tag {
    font-size: 0.78rem; color: rgba(232,213,163,0.7);
    border: 1px solid rgba(200,169,110,0.25); padding: 5px 14px;
    border-radius: 20px;
  }

  .reserve-box {
    max-width: 700px; margin: 2.5rem auto 0;
    text-align: center; padding: 2rem;
    border: 1px dashed rgba(200,169,110,0.3); border-radius: 4px;
  }
  .reserve-box h3 {
    color: var(--sand-light); font-size: 1.5rem; margin-bottom: 0.5rem;
  }
  .reserve-box p {
    color: rgba(232,213,163,0.5); font-size: 0.85rem; margin-bottom: 1.5rem;
  }
  .reserve-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ── ACTIVITIES ── */
  .activities-section { background: var(--sand-pale); }

  .activities-header {
    max-width: 1200px; margin: 0 auto 3rem;
    display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem;
  }

  .featured-activity {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
    max-width: 1200px; margin: 0 auto 3.5rem; align-items: center;
  }

  .feat-act-img {
    position: relative; border-radius: 4px; overflow: hidden;
    height: 420px;
  }
  .feat-act-img img { width: 100%; height: 100%; object-fit: cover; }
  .feat-act-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,0.5) 0%, transparent 60%);
  }

  .act-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; color: rgba(200,169,110,0.15);
    line-height: 1; margin-bottom: -1rem;
  }

  .act-tag { font-size: 0.7rem; color: var(--sand); letter-spacing: 0.18em; text-transform: uppercase; }

  .feat-act-body h3 {
    font-size: 2rem; font-weight: 400; color: var(--night); margin: 0.5rem 0 1rem;
  }
  .feat-act-body p {
    font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem;
  }
  .act-details { list-style: none; margin-bottom: 1.5rem; }
  .act-details li {
    font-size: 0.8rem; color: var(--muted); padding: 5px 0;
    border-bottom: 1px solid rgba(200,169,110,0.2);
    display: flex; gap: 8px;
  }
  .act-details li strong { color: var(--dune); }

  .activities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1200px; margin: 0 auto;
  }

  .act-card {
    border-radius: 4px; overflow: hidden; position: relative;
    height: 240px; cursor: pointer;
  }
  .act-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .act-card:hover img { transform: scale(1.06); }
  .act-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%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
  }
  .act-card-tag {
    font-size: 0.65rem; color: var(--sand); letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 4px;
  }
  .act-card h4 { color: var(--white); font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; }
  .act-card-meta {
    display: flex; gap: 8px;
  }
  .act-meta-pill {
    font-size: 0.65rem; padding: 2px 8px;
    background: rgba(200,169,110,0.25); color: var(--sand-light);
    border-radius: 20px;
  }

  .act-row-2 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 1200px; margin: 20px auto 0;
  }
  .act-wide {
    border-radius: 4px; overflow: hidden; position: relative; height: 200px;
  }
  .act-wide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .act-wide:hover img { transform: scale(1.04); }
  .act-wide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,18,8,0.8) 0%, rgba(26,18,8,0.2) 100%);
    padding: 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center;
  }
  .act-wide-overlay span {
    font-size: 0.65rem; color: var(--sand); letter-spacing: 0.18em;
    text-transform: uppercase; margin-bottom: 6px;
  }
  .act-wide-overlay h4 { color: var(--white); font-size: 1.3rem; font-weight: 400; }
  .act-wide-overlay p { color: rgba(253,246,227,0.6); font-size: 0.8rem; margin-top: 4px; }

  /* ── PACKAGES ── */
  .packages-section { background: var(--white); }

  .packages-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    max-width: 1300px; margin: 3rem auto 0;
  }

  .pkg-card {
    border: 1px solid rgba(200,169,110,0.25); border-radius: 4px;
    padding: 2rem 1.5rem; transition: all 0.3s; position: relative;
    overflow: hidden;
  }
  .pkg-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--sand-light);
  }
  .pkg-card.featured::before { background: var(--sand); }
  .pkg-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); transform: translateY(-3px); }

  .pkg-label {
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sand); margin-bottom: 0.4rem;
  }
  .pkg-name {
    font-size: 1.5rem; color: var(--night); font-weight: 400; margin-bottom: 0.3rem;
  }
  .pkg-sub {
    font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem;
    padding-bottom: 1.2rem; border-bottom: 1px solid rgba(200,169,110,0.2);
  }
  .pkg-features { list-style: none; margin-bottom: 1.5rem; }
  .pkg-features li {
    font-size: 0.8rem; color: var(--muted); padding: 5px 0;
    display: flex; gap: 8px; line-height: 1.4;
  }
  .pkg-features li::before { content: '✦'; color: var(--sand); font-size: 0.55rem; margin-top: 3px; flex-shrink: 0; }
  .pkg-btns { display: flex; flex-direction: column; gap: 8px; }
  .pkg-btns a {
    text-align: center; padding: 0.6rem; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 2px; transition: all 0.2s;
  }
  .pkg-btn-primary { background: var(--sand); color: var(--night); }
  .pkg-btn-primary:hover { background: var(--gold); }
  .pkg-btn-wa { border: 1px solid rgba(37,211,102,0.4); color: #25D366; font-size: 0.72rem; }
  .pkg-btn-wa:hover { background: rgba(37,211,102,0.08); }

  /* ── WHY US ── */
  .why-section { background: var(--dune); }
  .why-section .section-title { color: var(--sand-light); }
  .why-section .section-label { color: var(--sand); }

  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1100px; margin: 3rem auto 0;
  }

  .why-card {
    padding: 2rem; border: 1px solid rgba(200,169,110,0.15);
    border-radius: 4px; transition: all 0.3s;
  }
  .why-card:hover { border-color: rgba(200,169,110,0.4); background: rgba(200,169,110,0.05); }

  .why-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
    color: rgba(200,169,110,0.2); line-height: 1; margin-bottom: 1rem;
  }
  .why-card h4 { font-size: 1.1rem; color: var(--sand-light); margin-bottom: 0.6rem; font-weight: 500; }
  .why-card p { font-size: 0.83rem; color: rgba(232,213,163,0.5); line-height: 1.7; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--sand-pale); overflow: hidden; }

  .testimonials-inner { max-width: 1100px; margin: 3rem auto 0; position: relative; }

  .testimonial-track {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }

  .testimonial-card {
    background: var(--white); padding: 2rem; border-radius: 4px;
    border: 1px solid rgba(200,169,110,0.2); position: relative;
  }
  .testimonial-card::before {
    content: '"'; font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--sand-light); line-height: 0.7;
    display: block; margin-bottom: 0.5rem;
  }
  .testimonial-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--sand); display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; color: var(--night); flex-shrink: 0;
  }
  .author-name { font-size: 0.9rem; font-weight: 600; color: var(--night); }
  .author-loc { font-size: 0.75rem; color: var(--muted); }

  /* ── BLOG ── */
  .blog-section { background: var(--white); }

  .blog-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 24px;
    max-width: 1200px; margin: 3rem auto 0; align-items: start;
  }

  .blog-card { cursor: pointer; }
  .blog-img { overflow: hidden; border-radius: 4px; margin-bottom: 1rem; }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .blog-card:hover .blog-img img { transform: scale(1.04); }

  .blog-card-featured .blog-img { height: 340px; }
  .blog-card-sm .blog-img { height: 200px; }

  .blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
  .blog-tag { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sand); }
  .blog-date { font-size: 0.72rem; color: var(--muted); }
  .blog-card h3 { font-size: 1.25rem; color: var(--night); font-weight: 400; margin-bottom: 8px; line-height: 1.3; }
  .blog-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
  .blog-read { font-size: 0.75rem; color: var(--sand); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 10px; display: inline-block; }
  .blog-center { text-align: center; margin-top: 2.5rem; }

  /* ── CONTACT ── */
  .contact-section { background: var(--night); }
  .contact-section .section-title { color: var(--sand-light); }
  .contact-section .section-label { color: var(--sand); }

  .contact-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
    max-width: 1100px; margin: 3rem auto 0; align-items: start;
  }

  .contact-info-item { margin-bottom: 2rem; }
  .contact-info-item h4 {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sand); margin-bottom: 0.6rem;
  }
  .contact-info-item p { font-size: 0.9rem; color: rgba(232,213,163,0.7); line-height: 1.7; }
  .contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 2rem; }
  .contact-link {
    display: flex; align-items: center; gap: 12px;
    padding: 0.8rem 1rem; border: 1px solid rgba(200,169,110,0.2);
    border-radius: 4px; color: var(--sand-light); font-size: 0.85rem;
    transition: all 0.2s;
  }
  .contact-link:hover { border-color: var(--sand); background: rgba(200,169,110,0.05); }
  .contact-link span { font-size: 1.1rem; }

  .map-iframe { border-radius: 4px; overflow: hidden; height: 300px; margin-bottom: 1.5rem; }
  .map-iframe iframe { width: 100%; height: 100%; border: none; }

  /* ── CONTACT FORM ── */
  .contact-form { margin-top: 0; }
  .contact-form h3 {
    font-size: 1.4rem; color: var(--sand-light); margin-bottom: 0.4rem;
  }
  .contact-form p { font-size: 0.82rem; color: rgba(232,213,163,0.5); margin-bottom: 1.5rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 14px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem;
    background: rgba(200,169,110,0.07); border: 1px solid rgba(200,169,110,0.2);
    border-radius: 3px; color: var(--sand-light); font-size: 0.85rem;
    font-family: 'Jost', sans-serif; outline: none; transition: border 0.2s;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(232,213,163,0.35); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--sand);
  }
  .form-group select { cursor: pointer; }
  .form-group select option { background: var(--dune); }
  .form-group textarea { resize: none; min-height: 90px; }
  .btn-wa-form {
    width: 100%; padding: 0.9rem; background: #25D366; color: #fff;
    border: none; border-radius: 3px; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    font-family: 'Jost', sans-serif; transition: background 0.2s;
  }
  .btn-wa-form:hover { background: #1ebe5d; }

  /* ── CREDIBILITY ── */
  .credibility-section { background: var(--sand-pale); text-align: center; }

  .cred-stats {
    display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; margin: 2.5rem 0;
  }

  .cred-stat { text-align: center; }
  .cred-stat .num {
    font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--night); line-height: 1;
  }
  .cred-stat .lbl { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; }

  .platform-grid {
    display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem;
  }

  .platform-pill {
    display: flex; align-items: center; gap: 8px;
    padding: 0.6rem 1.2rem; border: 1px solid rgba(200,169,110,0.35);
    border-radius: 30px; font-size: 0.78rem; color: var(--muted);
    transition: all 0.2s;
  }
  .platform-pill:hover { border-color: var(--sand); color: var(--text); }
  .platform-pill .rating { color: var(--sand); font-weight: 600; }

  /* ── FOOTER ── */
  footer {
    background: var(--night); border-top: 1px solid rgba(200,169,110,0.15);
    padding: 60px 6% 0;
  }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    max-width: 1200px; margin: 0 auto; padding-bottom: 48px;
    border-bottom: 1px solid rgba(200,169,110,0.1);
  }

  .footer-brand img { height: 40px; filter: brightness(0.9); margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.83rem; color: rgba(232,213,163,0.5); line-height: 1.8; max-width: 280px; }

  .footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
  .social-btn {
    width: 34px; height: 34px; border: 1px solid rgba(200,169,110,0.25); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(232,213,163,0.5); font-size: 0.75rem; transition: all 0.2s;
    text-decoration: none;
  }
  .social-btn:hover { border-color: var(--sand); color: var(--sand); }

  .footer-col h4 {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sand); margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a { font-size: 0.83rem; color: rgba(232,213,163,0.5); transition: color 0.2s; }
  .footer-col a:hover { color: var(--sand-light); }

  .footer-contact-item {
    display: flex; gap: 10px; margin-bottom: 0.8rem;
  }
  .footer-contact-item .icon { color: var(--sand); font-size: 0.9rem; margin-top: 1px; flex-shrink: 0; }
  .footer-contact-item div { display: flex; flex-direction: column; }
  .footer-contact-item a, .footer-contact-item p {
    font-size: 0.82rem; color: rgba(232,213,163,0.5);
    display: block; line-height: 1.4;
  }
  .footer-contact-item a:hover { color: var(--sand); }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding: 20px 0 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 0.78rem; color: rgba(232,213,163,0.35); }
  .footer-policies { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer-policies a { font-size: 0.75rem; color: rgba(232,213,163,0.35); transition: color 0.2s; }
  .footer-policies a:hover { color: var(--sand); }

  .floating-wa {
    position: fixed; bottom: 28px; right: 24px; z-index: 999;
    width: 52px; height: 52px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: transform 0.2s;
  }
  .floating-wa:hover { transform: scale(1.08); }
  .floating-wa svg { width: 26px; height: 26px; fill: white; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card-featured { grid-column: 1 / -1; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 900px) {
    section { padding: 72px 5%; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 340px; }
    .tent-cards { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-track { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .featured-activity { grid-template-columns: 1fr; }
    .feat-act-img { height: 280px; }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column; gap: 0;
      position: fixed; top: 72px; left: 0; right: 0;
      background: rgba(26,18,8,0.98);
      padding: 1rem 0; z-index: 999;
    }
    .nav-links.open li a {
      display: block; padding: 0.75rem 5%;
      border-bottom: 1px solid rgba(200,169,110,0.08);
    }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .stats-bar { gap: 0; }
    .stat-item { padding: 0.75rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(200,169,110,0.15); width: 50%; }
    .tent-cards { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonial-track { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-featured { grid-column: auto; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .cred-stats { gap: 2rem; }
    .platform-grid { gap: 0.75rem; }
    .accom-meta { gap: 1.5rem; }
    .act-row-2 { grid-template-columns: 1fr; }
    .activities-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    .hero-counter { display: none; }
    .activities-grid { grid-template-columns: 1fr; }
    .slide-content h1 { font-size: 2rem; }
    .slide-content { padding: 0 6%; }
    nav { padding: 0 4%; }
    section { padding: 60px 4%; }
    .about-features { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stat-item { width: 100%; }
  }

  /* about us page code */

  .about-us{
    padding:80px 0;
    background:#f8f5ef;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-content{
    flex:1;
}

.subtitle{
    color:#c78b36;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0 20px;
    color:#222;
}

.about-content p{
    line-height:1.9;
    margin-bottom:15px;
    color:#555;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:25px 0;
}

.feature{
    background:#fff;
    padding:12px;
    border-radius:8px;
    font-weight:500;
}

.about-btn{
    display:inline-block;
    background:#c78b36;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.about-btn:hover{
    background:#a66f22;
}

@media(max-width:768px){
    .about-wrapper{
        flex-direction:column;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}

.accommodation-sectionfs{
    padding:80px 0;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.containerfs{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.section-headingfs{
    text-align:center;
    margin-bottom:60px;
}

.section-headingfs span{
    color:#c89b55;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-headingfs h2{
    font-size:42px;
    color:#222;
    margin:15px 0;
}

.section-headingfs p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.camp-gridfs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.camp-cardfs{
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.camp-cardfs:hover{
    transform:translateY(-8px);
}

.camp-imagefs{
    position:relative;
    overflow:hidden;
}

.camp-imagefs img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.camp-cardfs:hover .camp-imagefs img{
    transform:scale(1.08);
}

.badgefs{
    position:absolute;
    top:20px;
    right:20px;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:8px 16px;
    border-radius:5px;
    letter-spacing:1px;
}

.popularfs{
    background:#c89b55;
}

.premiumfs{
    background:#d8a000;
}

.familyfs{
    background:#d96a2d;
}

.camp-contentfs{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.camp-typefs{
    color:#999;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.camp-contentfs h3{
    font-size:32px;
    color:#222;
    margin-bottom:10px;
    font-family:Georgia,serif;
    line-height:1.2;
}

.subtitlefs{
    color:#666;
    margin-bottom:25px;
}

.pricefs{
    font-size:48px;
    color:#c89b55;
    font-family:Georgia,serif;
    margin-bottom:5px;
}

.price-notefs{
    color:#777;
    margin-bottom:25px;
}

.camp-contentfs ul{
    list-style:none;
    padding:0;
    margin:0;
    flex:1;
}

.camp-contentfs ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:15px;
}

.camp-contentfs ul li:before{
    content:"✦";
    color:#c89b55;
    margin-right:10px;
}

.btn-groupfs{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.book-btnfs{
    flex:1;
    text-align:center;
    background:#c89b55;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.book-btnfs:hover{
    background:#b18143;
    color:#fff;
}

.whatsapp-btnfs{
    flex:1;
    text-align:center;
    border:2px solid #25D366;
    color:#25D366;
    text-decoration:none;
    padding:12px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btnfs:hover{
    background:#25D366;
    color:#fff;
}

/* Tablet */

@media(max-width:1200px){

.camp-gridfs{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:768px){

.accommodation-sectionfs{
    padding:60px 0;
}

.camp-gridfs{
    grid-template-columns:1fr;
}

.section-headingfs h2{
    font-size:30px;
}

.camp-contentfs h3{
    font-size:24px;
}

.pricefs{
    font-size:38px;
}

.btn-groupfs{
    flex-direction:column;
}

}

/* packages code */
.srr-packages{
    padding:80px 0;
    background:#f8f9fb;
}

.srr-heading{
    text-align:center;
    margin-bottom:50px;
}

.srr-heading span{
    color:#c89a2b;
    font-weight:600;
}

.srr-heading h2{
    font-size:42px;
    margin:15px 0;
}

.srr-grid{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.srr-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #eee;
    transition:.3s;
}

.srr-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.srr-image{
    position:relative;
    height:260px;
}

.srr-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.srr-duration{
    position:absolute;
    left:15px;
    top:15px;
    background:#c89a2b;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
}

.srr-content{
    padding:25px;
}

.srr-content h3{
    font-size:24px;
    margin-bottom:10px;
}

.srr-location{
    color:#666;
    margin-bottom:20px;
}

.srr-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.srr-features span{
    background:#f5f5f5;
    padding:8px 12px;
    border-radius:30px;
    font-size:13px;
}

.srr-footer{
    border-top:1px solid #eee;
    padding-top:20px;
}

.srr-price{
    font-size:32px;
    color:#c89a2b;
    font-weight:700;
}

.srr-price small{
    display:block;
    color:#777;
    font-size:13px;
    font-weight:400;
}

.srr-buttons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.srr-buttons a{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:12px;
    border-radius:8px;
    font-weight:600;
}

.srr-buttons a:first-child{
    border:1px solid #ddd;
    color:#222;
}

.srr-buttons a:last-child{
    background:#c89a2b;
    color:#fff;
}

@media(max-width:991px){
    .srr-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
   BTK GALLERY PAGE CSS
========================= */

.btk-gallery-wrapper *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.btk-gallery-wrapper{
    font-family:'Poppins',sans-serif;
    background:#fff;
}

.btk-gallery-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* Hero Section */

.btk-gallery-hero{
    background:#faf7f2;
    padding:100px 20px;
    text-align:center;
}

.btk-gallery-hero h1{
    font-size:50px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.btk-gallery-hero p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* Filter */

.btk-gallery-filter{
    padding:40px 0;
    text-align:center;
}

.btk-gallery-filter button{
    border:none;
    background:#f5f5f5;
    padding:12px 28px;
    margin:5px;
    border-radius:50px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.4s;
}

.btk-gallery-filter button:hover,
.btk-gallery-filter button.active{
    background:#c49b63;
    color:#fff;
}

/* Gallery */

.btk-gallery-section{
    padding:20px 0 80px;
}

.btk-gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.btk-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.btk-gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.btk-gallery-item:hover img{
    transform:scale(1.1);
}

.btk-gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
}

.btk-gallery-overlay h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
}

/* Lightbox */

.btk-lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.btk-lightbox img{
    max-width:90%;
    max-height:85%;
    border-radius:10px;
}

.btk-lightbox-close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

/* Mobile */

@media(max-width:768px){

    .btk-gallery-hero{
        padding:70px 20px;
    }

    .btk-gallery-hero h1{
        font-size:36px;
    }

    .btk-gallery-hero p{
        font-size:16px;
    }

    .btk-gallery-grid{
        grid-template-columns:1fr;
    }
}

/* jaisalmer attractions */
/* Hero Section */

.btk-attractions-hero{
    position:relative;
    height:90vh;
    min-height:700px;
    background:url('https://www.sandroutesresort.com/img/banner-1.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.btk-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.55)
    );
}

.btk-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
    color:#fff;
    padding:20px;
}

.btk-hero-tag{
    display:inline-block;
    background:#c79a3b;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.btk-hero-content h1{
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
}

.btk-hero-content p{
    font-size:20px;
    line-height:1.9;
    max-width:850px;
    margin:0 auto 35px;
}

.btk-hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btk-hero-btn{
    background:#c79a3b;
    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btk-hero-btn:hover{
    transform:translateY(-3px);
}

.btk-hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btk-hero-btn-outline:hover{
    background:#fff;
    color:#222;
}

@media(max-width:768px){

    .btk-attractions-hero{
        min-height:550px;
        height:75vh;
    }

    .btk-hero-content h1{
        font-size:42px;
    }

    .btk-hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .btk-hero-buttons{
        flex-direction:column;
    }

    .btk-hero-btn,
    .btk-hero-btn-outline{
        width:100%;
        text-align:center;
    }
}

.btk-attractions-wrapper{
    max-width:1400px;
    margin:auto;
    padding:80px 5%;
}

.btk-attraction-item{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:100px;
}

.btk-attraction-item.reverse{
    flex-direction:row-reverse;
}

.btk-attraction-image{
    flex:1;
}

.btk-attraction-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.btk-attraction-content{
    flex:1;
}

.btk-attraction-content h2{
    font-size:42px;
    color:#222;
    margin-bottom:20px;
}

.btk-attraction-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.btk-btn{
    display:inline-block;
    padding:14px 35px;
    background:#c79a3b;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.btk-btn:hover{
    background:#a67c24;
}

@media(max-width:991px){

    .btk-attraction-item,
    .btk-attraction-item.reverse{
        flex-direction:column;
    }

    .btk-attraction-content h2{
        font-size:32px;
    }
}
/* thank you */
.bhanu-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    background:linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('https://www.sandroutesresort.com/img/deluxe-swiss-camp.jpg') no-repeat center center /cover;
    background-size:cover;
    background-position:center;
}

.bhanu-thankyou-box{
    max-width:850px;
    width:100%;
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.bhanu-checkmark{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    font-weight:bold;
}

.bhanu-title{
    font-size:42px;
    color:#8B5E34;
    margin-bottom:15px;
}

.bhanu-subtitle{
    font-size:20px;
    color:#666;
    margin-bottom:20px;
}

.bhanu-message{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.bhanu-steps{
    background:#faf7f2;
    border-radius:12px;
    padding:25px;
    margin-bottom:30px;
    text-align:left;
}

.bhanu-steps h3{
    color:#8B5E34;
    margin-bottom:15px;
}

.bhanu-steps ul{
    padding-left:20px;
}

.bhanu-steps li{
    margin-bottom:10px;
    line-height:1.6;
}

.bhanu-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
    text-align:left;
}

.bhanu-feature{
    background:#faf7f2;
    padding:15px;
    border-radius:10px;
}

.bhanu-feature strong{
    color:#8B5E34;
}

.bhanu-contact{
    margin-bottom:30px;
}

.bhanu-contact h3{
    color:#8B5E34;
    margin-bottom:15px;
}

.bhanu-contact p{
    margin:8px 0;
}

.bhanu-btn-group{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.bhanu-btn{
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.bhanu-btn-primary{
    background:#8B5E34;
    color:#fff;
}

.bhanu-btn-primary:hover{
    background:#6e4726;
}

.bhanu-btn-outline{
    border:2px solid #8B5E34;
    color:#8B5E34;
}

.bhanu-btn-outline:hover{
    background:#8B5E34;
    color:#fff;
}

.bhanu-footer-note{
    margin-top:30px;
    color:#888;
    font-style:italic;
}

@media(max-width:768px){

    .bhanu-thankyou-box{
        padding:30px 20px;
    }

    .bhanu-title{
        font-size:32px;
    }

    .bhanu-features{
        grid-template-columns:1fr;
    }
}

/* video  */
/* ── ABOUT VIDEO ── */
/* ── ABOUT VIDEO ── */
.about-video-section {
  max-width: 1200px; margin: 4rem auto 0;
  padding-top: 3rem;
  padding-bottom: 20px;
  border-top: 1px solid rgba(200,169,110,0.2);
}

.about-video-header {
  text-align: center; margin-bottom: 2rem;
}
.about-video-header .section-label { display: block; margin-bottom: 0.5rem; }
.about-video-header h3 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--night); margin-bottom: 0.6rem;
}
.about-video-header p {
  font-size: 0.88rem; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

.video-single {
  position: relative; border-radius: 4px; overflow: hidden;
  background: var(--dune); cursor: pointer; padding-top: 50%;
  max-width: 1200px; margin: 0 auto;
}
.video-single:hover .video-cover { transform: scale(1.03); }

.video-cover {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  transition: transform 0.5s;
}

.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.75) 0%, rgba(26,18,8,0.2) 60%);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 1.5rem; text-align: center;
}

.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,169,110,0.9);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.play-btn svg { width: 24px; height: 24px; fill: var(--night); margin-left: 3px; }
.video-single:hover .play-btn { background: var(--gold); transform: scale(1.1); }

.video-main-info .vtag {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 0.4rem; display: block;
}
.video-main-info h4 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400; color: var(--white); line-height: 1.3;
}

/* Video Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,6,2,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 1rem;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-inner {
  position: relative; width: 100%; max-width: 900px;
}
.video-modal-inner iframe {
  width: 100%; aspect-ratio: 16/9; border: none; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.modal-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: var(--sand-light);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--sand); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .video-single { padding-top: 52%; }
}

@media (max-width: 768px) {
  .about-video-section { margin: 3rem auto 0; padding-top: 2.5rem; }
  .video-single { padding-top: 56%; border-radius: 2px; }
  .play-btn { width: 52px; height: 52px; }
  .play-btn svg { width: 20px; height: 20px; }
  .video-main-info h4 { font-size: 1rem; }
  .modal-close { top: -36px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .about-video-section { margin: 2rem auto 0; padding-top: 2rem; }
  .about-video-header { margin-bottom: 1.2rem; }
  .about-video-header p { font-size: 0.82rem; }
  .video-single { padding-top: 60%; }
  .play-btn { width: 44px; height: 44px; margin-bottom: 0.6rem; }
  .play-btn svg { width: 18px; height: 18px; }
  .video-main-info .vtag { font-size: 0.62rem; }
  .video-main-info h4 { font-size: 0.92rem; }
  .video-modal { padding: 0.75rem; }
  .modal-close { top: -32px; font-size: 1.2rem; }
}