/* ════════════════════════════════════════
   NILE HORSE TOURS — image-centric, sidebar layout
   ════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1f3d;
  --navy-2: #15264a;
  --navy-3: #1a2f52;
  --gold: #C9A84C;
  --gold-light: #e2c06a;
  --gold-dim: #a0813a;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text: #2d3748;
  --muted: #718096;
  --sidebar-w: 268px;
  --shadow: 0 20px 60px rgba(0,0,0,.12);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.22);
  --radius: 16px;
  --t: .35s cubic-bezier(.4,0,.2,1);
  --ph-grad: linear-gradient(135deg, #15264a 0%, #0f1f3d 55%, #C9A84C 160%);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; -webkit-tap-highlight-color: rgba(201,168,76,.18); }
img { max-width: 100%; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::selection { background: var(--gold); color: var(--navy); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy); padding: .6rem 1rem; z-index: 2000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.gold { color: var(--gold); }

/* ════════ SIDEBAR ════════ */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: linear-gradient(180deg, #0c1830 0%, var(--navy) 100%);
  border-right: 1px solid rgba(201,168,76,.14);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar::-webkit-scrollbar { width: 4px; }

.sidebar-logo { display: block; padding: 1.6rem 1.4rem 1.2rem; text-align: center; }
.sidebar-logo img { width: 100%; max-width: 175px; background: #fff; border-radius: 10px; padding: 8px 10px; }

.side-nav { flex: 1; padding: .4rem .9rem 1rem; }
.nav-group {
  display: block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
  padding: 1.1rem .8rem .45rem;
}
.side-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .62rem .8rem;
  margin-bottom: 2px;
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: .9rem;
  border-radius: 9px;
  transition: var(--t);
  position: relative;
}
.side-link .ic { width: 20px; text-align: center; color: var(--gold); font-size: .95rem; opacity: .85; }
.side-link:hover { background: rgba(201,168,76,.1); color: #fff; }
.side-link.active { background: rgba(201,168,76,.16); color: #fff; }
.side-link.active::before { content: ''; position: absolute; left: 0; top: 18%; bottom: 18%; width: 3px; background: var(--gold); border-radius: 3px; }
.side-safety { color: var(--gold); }

.sidebar-foot { padding: 1rem 1.2rem 1.6rem; border-top: 1px solid rgba(255,255,255,.07); }
.btn-block { display: block; text-align: center; width: 100%; }
.sidebar-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: .45rem; }
.sidebar-contact a { color: rgba(255,255,255,.62); font-size: .78rem; text-decoration: none; transition: color .2s; }
.sidebar-contact a:hover { color: var(--gold); }
.sidebar-social { display: flex; gap: .5rem; margin-top: 1rem; }
.sidebar-social a {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; transition: var(--t);
}
.sidebar-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(8,14,30,.6); backdrop-filter: blur(3px); z-index: 999; opacity: 0; transition: opacity .3s; }
.sidebar-overlay.show { display: block; opacity: 1; }

/* ════════ MOBILE TOP BAR ════════ */
.topbar { display: none; }
.hamburger { flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.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); }

/* ════════ MAIN ════════ */
.main { margin-left: var(--sidebar-w); }

/* ════════ BUTTONS ════════ */
.btn-gold, .btn-ghost, .btn-gold-sm {
  display: inline-block; font-family: 'Cinzel', serif; text-decoration: none;
  border: none; cursor: pointer; transition: var(--t); text-align: center;
}
.btn-gold { background: var(--gold); color: var(--navy); font-size: .85rem; font-weight: 600; letter-spacing: .08em; padding: .85rem 2rem; border-radius: 50px; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-ghost { background: transparent; color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .08em; padding: .85rem 2rem; border-radius: 50px; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-sm { background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .06em; padding: .5rem 1.2rem; border-radius: 50px; }
.btn-gold-sm:hover { background: var(--gold-light); }
.btn-full { width: 100%; font-size: .9rem; padding: 1rem; border-radius: 10px; }

/* ════════ SECTION HEADS ════════ */
.section { padding: 90px 5vw; }
.section-dark { background: var(--navy); }
.dest-block { padding: 80px 5vw; }
.dest-block.dark { background: var(--navy); }
.dest-head { max-width: 720px; margin-bottom: 2.6rem; }
.dest-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--navy); line-height: 1.15; margin-bottom: 1rem; }
.section-title.light { color: #fff; }
.section-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.8; }
.section-sub.center { margin-left: auto; margin-right: auto; }
.section-sub.light { color: rgba(255,255,255,.65); }
.dest-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.dest-tags li { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); padding: .3rem .8rem; border-radius: 50px; }
.dark .dest-tags li { background: rgba(201,168,76,.12); }

/* ════════ HERO ════════ */
.hero { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; background: var(--ph-grad); }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.2s ease, transform 8s ease; }
.slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(10,20,45,.82) 0%, rgba(10,20,45,.4) 55%, rgba(10,20,45,.55) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 5vw; max-width: 720px; animation: heroIn 1.1s ease .2s both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: .76rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .8rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 5vw, 4.6rem); color: #fff; line-height: 1.1; margin-bottom: 1.3rem; font-weight: 700; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.06rem; color: rgba(255,255,255,.82); line-height: 1.8; max-width: 540px; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.82); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero-trust-item span { color: var(--gold); }
.hero-dots { position: absolute; bottom: 1.8rem; left: 5vw; display: flex; gap: .6rem; z-index: 3; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: var(--t); }
.dot.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ════════ STATS ════════ */
.stats-bar { background: var(--navy); display: flex; justify-content: center; align-items: center; padding: 2.6rem 5vw; flex-wrap: wrap; }
.stat { text-align: center; padding: .8rem 2.6rem; flex: 1; min-width: 150px; }
.stat-num { font-family: 'Cinzel', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); display: inline; }
.stat-unit { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold); }
.stat p { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .4rem; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,.1); }

/* ════════ GALLERY (image-centric) ════════ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; grid-auto-flow: dense; }
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: var(--ph-grad); border: 1px solid rgba(201,168,76,.12);
}
.g-item.g-lg { grid-column: span 2; grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-ph {
  position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center;
  padding: 1rem; text-align: center; font-family: 'Cinzel', serif; color: rgba(255,255,255,.6);
  font-size: .82rem; letter-spacing: .06em;
}
.g-ph::after { content: '◇'; position: absolute; top: 14px; right: 16px; color: rgba(201,168,76,.4); font-size: 1rem; }
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .7s ease; }
.g-item img.err { opacity: 0; }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.2rem .9rem;
  font-family: 'Cinzel', serif; color: #fff; font-size: .92rem;
  background: linear-gradient(to top, rgba(10,20,45,.88), transparent);
  transform: translateY(6px); transition: transform .35s ease;
}
.g-item:hover figcaption { transform: translateY(0); }
.g-item::after { content: '⤢'; position: absolute; top: 12px; left: 14px; z-index: 3; color: #fff; background: rgba(201,168,76,.85); width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .8rem; opacity: 0; transition: opacity .3s; }
.g-item:hover::after { opacity: 1; }

/* ════════ TOURS ════════ */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.tour-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease; position: relative; border: 1px solid rgba(201,168,76,.1); }
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-badge { position: absolute; top: 1rem; left: 1rem; background: var(--navy); color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 50px; z-index: 3; border: 1px solid var(--gold); }
.gold-badge { background: var(--gold); color: var(--navy); }
.tour-img { height: 200px; background-size: cover; background-position: center; background-color: var(--navy); position: relative; }
.tour-img .g-ph { color: rgba(255,255,255,.55); }
.tour-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,31,61,.85), transparent 60%); z-index: 1; }
.tour-days { position: absolute; bottom: 1rem; right: 1rem; z-index: 2; background: var(--gold); color: var(--navy); font-family: 'Cinzel', serif; font-size: .72rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; }
.tour-body { padding: 1.4rem; }
.tour-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .7rem; }
.tour-tags span { background: rgba(201,168,76,.12); color: var(--gold-dim); font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 50px; }
.tour-body h3 { font-family: 'Cinzel', serif; color: var(--navy); font-size: 1.1rem; margin-bottom: .5rem; }
.tour-body p { color: var(--muted); font-size: .86rem; line-height: 1.65; margin-bottom: 1.1rem; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .9rem; border-top: 1px solid rgba(0,0,0,.07); }
.tour-price { color: var(--navy); font-weight: 700; font-size: 1.15rem; }
.tour-price .from { font-size: .68rem; color: var(--muted); font-weight: 400; display: block; }
.tour-price .pp { font-size: .72rem; color: var(--muted); font-weight: 400; }

/* ════════ SAFETY ════════ */
.safety-section { background: var(--off-white); }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 2rem; }
.safety-card { background: #fff; border-radius: var(--radius); padding: 1.7rem; border: 1px solid rgba(201,168,76,.15); box-shadow: 0 4px 22px rgba(0,0,0,.05); position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.safety-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.safety-card:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(0,0,0,.1); }
.safety-ic { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); border-radius: 12px; margin-bottom: .9rem; color: var(--gold-dim); }
.safety-card h4 { font-family: 'Cinzel', serif; color: var(--navy); font-size: .95rem; margin-bottom: .4rem; }
.safety-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.safety-guarantee { display: flex; align-items: center; gap: 1.4rem; background: linear-gradient(135deg, var(--navy), var(--navy-3)); border-radius: var(--radius); padding: 1.8rem 2.2rem; border: 1px solid rgba(201,168,76,.3); }
.sg-ic { font-size: 2rem; flex-shrink: 0; }
.safety-guarantee strong { display: block; font-family: 'Cinzel', serif; color: var(--gold); font-size: 1rem; margin-bottom: .35rem; }
.safety-guarantee p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.7; }

/* ════════ TESTIMONIALS ════════ */
.testimonials-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); border: 1px solid rgba(201,168,76,.1); position: relative; transition: transform .35s ease; }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--gold); opacity: .2; position: absolute; top: .4rem; left: 1.4rem; line-height: 1; }
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--gold); margin-bottom: .9rem; letter-spacing: .1em; }
.testimonial-card p { font-size: .9rem; line-height: 1.75; color: var(--text); margin-bottom: 1.3rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Cinzel', serif; font-weight: 700; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .88rem; color: var(--navy); }
.testi-author span { font-size: .76rem; color: var(--muted); }

/* ════════ NEWSLETTER ════════ */
.newsletter-bar { background: linear-gradient(135deg, var(--gold-dim), var(--gold)); padding: 3rem 5vw; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.nl-text h3 { font-family: 'Cinzel', serif; color: var(--navy); font-size: 1.35rem; margin-bottom: .3rem; }
.nl-text p { color: rgba(10,20,45,.7); font-size: .9rem; }
.nl-form { display: flex; gap: .8rem; flex-wrap: wrap; }
.nl-form input { padding: .85rem 1.4rem; border: none; border-radius: 50px; font-size: .9rem; min-width: 240px; background: rgba(255,255,255,.92); color: var(--navy); outline: none; }
.nl-form .btn-gold { background: var(--navy); color: #fff; }
.nl-form .btn-gold:hover { background: var(--navy-3); }

/* ════════ CONTACT ════════ */
.contact-wrapper { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.6rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: .8rem 1rem; color: #fff; font-size: .9rem; font-family: 'Lato', sans-serif; outline: none; transition: border-color .25s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(201,168,76,.05); }
.form-group select option { background: var(--navy-3); }
.form-success { display: none; background: rgba(201,168,76,.15); border: 1px solid var(--gold); color: var(--gold); padding: 1rem; border-radius: 10px; font-size: .9rem; text-align: center; }
.contact-info-card { background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.15); border-radius: var(--radius); padding: 1.9rem; }
.contact-info-card h3 { font-family: 'Cinzel', serif; color: #fff; font-size: 1.15rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201,168,76,.2); }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.2rem; }
.ci-ic { font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: #fff; font-size: .88rem; margin-bottom: .2rem; }
.contact-item p { color: rgba(255,255,255,.55); font-size: .84rem; line-height: 1.7; }
.contact-item p a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.contact-item p a:hover { color: var(--gold); }
.social-links { display: flex; gap: .7rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.08); }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); text-decoration: none; font-size: 1rem; transition: var(--t); }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ════════ FOOTER ════════ */
footer { background: #080e1e; border-top: 1px solid rgba(201,168,76,.1); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.6rem; padding: 4rem 5vw 2.6rem; }
.footer-logo { height: 76px; background: #fff; border-radius: 10px; padding: 6px 10px; margin-bottom: 1.1rem; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .84rem; line-height: 1.8; max-width: 280px; }
.footer-certs { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.1rem; }
.cert { font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,.3); padding: .3rem .6rem; border-radius: 4px; }
.footer-nav h4 { font-family: 'Cinzel', serif; color: #fff; font-size: .88rem; margin-bottom: 1.1rem; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: .6rem; }
.footer-nav a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.4rem 5vw; text-align: center; color: rgba(255,255,255,.3); font-size: .76rem; }

/* ════════ LIGHTBOX ════════ */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(6,11,24,.95); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lb-figure { max-width: 90vw; max-height: 86vh; text-align: center; }
.lb-figure img { max-width: 90vw; max-height: 78vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.lb-figure figcaption { color: var(--gold); font-family: 'Cinzel', serif; margin-top: 1rem; font-size: 1rem; letter-spacing: .05em; }
.lb-close { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; transition: color .2s; }
.lb-close:hover { color: var(--gold); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; transition: var(--t); display: flex; align-items: center; justify-content: center; }
.lb-nav:hover { background: var(--gold); color: var(--navy); }
.lb-prev { left: 2vw; } .lb-next { right: 2vw; }

/* ════════ WHATSAPP FLOATING BUTTON ════════ */
.wa-fab {
  position: fixed; right: 1.5rem; bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.5); z-index: 950; text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-fab svg { width: 34px; height: 34px; position: relative; z-index: 2; }
.wa-fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: 1; animation: waPulse 2.2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 70%, 100% { transform: scale(1.7); opacity: 0; } }
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
.wa-label {
  position: absolute; right: 72px; white-space: nowrap;
  background: var(--navy); color: #fff; font-family: 'Cinzel', serif; font-size: .78rem;
  padding: .5rem 1rem; border-radius: 50px; box-shadow: var(--shadow);
  opacity: 0; transform: translateX(8px); pointer-events: none; transition: var(--t);
}
.wa-label::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--navy); }
.wa-fab:hover .wa-label { opacity: 1; transform: translateX(0); }

/* ════════ BACK TO TOP ════════ */
.back-top { position: fixed; bottom: calc(5.9rem + env(safe-area-inset-bottom, 0px)); right: 1.55rem; width: 46px; height: 46px; background: var(--gold); border: none; border-radius: 12px; color: var(--navy); font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: var(--t); z-index: 949; box-shadow: 0 4px 20px rgba(201,168,76,.4); pointer-events: none; }
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ════════ REVEAL ════════ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease var(--d,0s), transform .7s ease var(--d,0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1200px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  :root { --sidebar-w: 0px; }
  .topbar { display: flex; align-items: center; justify-content: space-between; position: fixed; top: 0; left: 0; right: 0; height: 60px; padding: 0 4vw; background: rgba(10,20,45,.97); backdrop-filter: blur(10px); z-index: 1100; border-bottom: 1px solid rgba(201,168,76,.15); }
  .topbar-logo img { height: 38px; background: #fff; border-radius: 7px; padding: 4px 7px; }
  .topbar-cta { background: var(--gold); color: var(--navy); font-family: 'Cinzel', serif; font-weight: 700; font-size: .76rem; padding: .5rem 1.1rem; border-radius: 50px; text-decoration: none; }
  .sidebar { transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); width: 280px; }
  .sidebar.open { transform: translateX(0); box-shadow: 0 0 60px rgba(0,0,0,.5); }
  .main { margin-left: 0; padding-top: 60px; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  /* offset anchor jumps so headings clear the fixed top bar */
  main section[id] { scroll-margin-top: 72px; }
  /* 16px inputs prevent iOS auto-zoom on focus */
  .form-group input, .form-group select, .form-group textarea, .nl-form input { font-size: 16px; }
  /* larger, comfier tap targets */
  .side-link { padding: .8rem .85rem; font-size: .96rem; }
}
@media (max-width: 760px) {
  .section, .dest-block { padding: 56px 5vw; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 10px; }
  .g-item.g-lg { grid-column: span 2; grid-row: span 1; }
  .g-item.g-wide { grid-column: span 2; }
  .hero { height: 88vh; min-height: 520px; }
  .hero-trust { gap: 1rem; }
  .hero-trust-item { font-size: .68rem; }
  .stat-divider { display: none; }
  .stat { padding: .6rem 1rem; min-width: 130px; }
  .stat-num { font-size: 2.1rem; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-guarantee { flex-direction: column; text-align: center; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .nl-form { justify-content: center; width: 100%; }
  .nl-form input { flex: 1; min-width: 0; }
  .lb-nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .tours-grid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-item.g-lg, .g-item.g-wide { grid-column: span 1; }
  .hero-title { font-size: 2rem; }
  .hero-cta { width: 100%; }
  .hero-cta a { flex: 1; }
  .footer-inner { grid-template-columns: 1fr; }
}
