/* ═══════════════════════════════════════════
   NIZAM'S LEGACY — COMPLETE STYLESHEET
   Design System: Luxury Dark Heritage
   Year: 2026
═══════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────── */
:root {
  --bg-void:      #ffffff;
  --bg-deep:      #f2fafa;
  --bg-card:      #ccd8d9;
  --bg-glass:     rgba(255, 255, 255, 0.85);
  --gold-bright:  #00b3a6;
  --gold-mid:     #00938c;
  --gold-dark:    #007d73;
  --gold-glow:    rgba(0, 147, 140, 0.18);
  --gold-subtle:  rgba(0, 147, 140, 0.08);
  --teal:         #00938c;
  --teal-light:   #00b3a6;
  --rose:         #D4785A;
  --cream:        #1a1a1a;
  --white:        #000000;
  --muted:        #4a4a4a;
  --border:       rgba(0, 147, 140, 0.3);
  --border-light: rgba(0, 147, 140, 0.15);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Outfit', system-ui, sans-serif;
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-sharp:   cubic-bezier(0.76, 0, 0.24, 1);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-void);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; background: transparent; }
input, select, textarea { outline: none; border: none; background: transparent; font-family: var(--font-sans); }
ul { list-style: none; }
::selection { background: var(--gold-mid); color: var(--bg-void); }

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-mid); border-radius: 2px; }


/* ─── LOADER ─────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-emblem {
  width: 80px;
  height: 80px;
  animation: loader-spin 4s linear infinite;
}
.loader-star {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: loader-draw 2s ease forwards;
}
@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}
.loader-text {
  display: flex;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.loader-text .accent { color: var(--gold-mid); }
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(0, 147, 140, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  border-radius: 2px;
  transition: width 0.1s linear;
}
.loader-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── NAVIGATION ─────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.4s var(--ease-smooth),
              background 0.4s,
              backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 16px 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-mid);
  transition: width 0.3s var(--ease-smooth);
}
.nav-link:hover { color: var(--gold-mid); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-mid);
  color: var(--bg-void);
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-sharp);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-link.gold { color: var(--gold-mid); }
.mobile-link:hover { color: var(--gold-bright); }

/* ─── HERO ───────────────────────────────── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/charminar.jpeg');
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
}
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, #1A0E00 0%, var(--bg-void) 70%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,147,140,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,92,92,0.15) 0%, transparent 70%);
  bottom: 0px; right: -80px;
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,120,90,0.08) 0%, transparent 70%);
  top: 30%; left: 50%;
  animation: orb-drift 10s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}
.hero-monument {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  animation: monument-float 6s ease-in-out infinite alternate;
}
@keyframes monument-float {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-10px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin-top: -60px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
}
.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold-mid);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
}
.hero-word { display: block; opacity: 0; transform: translateY(60px); color: #ffffff; }
.hero-word.italic { font-style: italic; color: var(--gold-bright); }
.hero-subtitle {
  font-size: clamp(0.95rem, calc(4.5vw - 8px), 18px);
  color: #C8962A;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero-title {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    font-size: clamp(1.2rem, 6vw, 2rem);
  }
  .hero-subtitle { font-size: clamp(0.85rem, 3.8vw, 1rem); max-width: 90%; line-height: 1.6; padding: 0 8px; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-title { font-size: clamp(1.4rem, 5vw, 2rem); }

  .hero-word {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-eyebrow {
    opacity: 1 !important;
  }

  .hero-subtitle {
    opacity: 1 !important;
  }

  .hero-scroll-hint {
    opacity: 1 !important;
  }
}
@media (max-width: 768px) {
  .cta-desc {
    text-align: justify;
  }
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-void);
  transition: transform 0.3s var(--ease-bounce),
              box-shadow 0.3s,
              background 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 147, 140, 0.4);
}
.btn-primary svg { width: 18px; height: 18px; position: relative; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary span { position: relative; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
   background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  border: 1px solid rgba(245, 236, 215, 0.2);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
   color: var(--bg-void);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
  position: relative;
}
.btn-ghost-circle {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-mid);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,147,140,0.4); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(0,147,140,0); }
}
.btn-ghost:hover { border-color: var(--gold-mid); color: var(--gold-bright); transform: translateY(-2px); }
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(0,147,140,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold-mid);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Floating badges */
.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  opacity: 0;
}
.badge-left { bottom: 120px; left: 60px; }
.badge-right { bottom: 120px; right: 60px; }
.badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-deep);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  white-space: nowrap;
}
.marquee-content span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot { color: var(--gold-mid) !important; font-size: 0.65rem !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────── */
.about {
  padding: 55px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
/* Visual side */
.about-visual { position: relative; }
.about-image-stack { position: relative; height: 520px; }
.about-img-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.card-back {
  width: 320px; height: 380px;
  top: 0; left: 0;
  transform: rotate(-4deg);
}
.card-front {
  width: 300px; height: 360px;
  top: 80px; left: 100px;
  transform: rotate(2deg);
  transition: transform 0.5s var(--ease-smooth);
}
.about-visual:hover .card-front { transform: rotate(0deg) translateY(-8px); }
.img-placeholder {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.ip-1 { background: linear-gradient(135deg, #1A0F00 0%, #2E1A00 40%, #0D2626 100%); }
.ip-2 { background: linear-gradient(135deg, #1A0500 0%, #3D1600 40%, #1A0A00 100%); }
.ip-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,147,140,0.06) 0px, rgba(0,147,140,0.06) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(0,147,140,0.06) 0px, rgba(0,147,140,0.06) 1px, transparent 1px, transparent 12px);
}
.ip-pattern-2 {
  background-image:
    radial-gradient(circle at 30% 40%, rgba(0,147,140,0.1) 0%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(0,147,140,0.04) 0px, rgba(0,147,140,0.04) 1px, transparent 1px, transparent 20px);
}
.ip-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
}
.about-float-tag {
  position: absolute;
  bottom: 20px; right: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.float-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.float-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Content side */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-tag svg { width: 12px; height: 12px; fill: var(--gold-mid); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--gold-bright); }
.about-text {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover { border-color: var(--border); transform: translateX(6px); }
.pillar-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: var(--gold-mid);
}
.pillar-icon svg { width: 18px; height: 18px; stroke: currentColor; }
.pillar-text { display: flex; flex-direction: column; }
.pillar-text strong { font-size: 1.1rem; font-weight: 600; color: var(--cream); }
.pillar-text span { font-size: 0.95rem; color: var(--muted); }

/* ─── TOURS ──────────────────────────────── */
.tours {
  padding: 55px 60px;
  background: var(--bg-deep);
}
.section-header {
  max-width: 600px;
  margin-bottom: 70px;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 16px;
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
/* 3D flip card */
.tour-card {
  perspective: 1000px;
  position: relative;
}
.tour-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 5px 18px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid));
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-void);
  white-space: nowrap;
}
.tour-card-inner {
  position: relative;
  width: 100%;
  height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-sharp);
  border-radius: var(--r-lg);
}
.tour-card:hover .tour-card-inner { transform: rotateY(180deg); }
.tour-card-front, .tour-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.tour-card-front {
  display: flex;
  flex-direction: column;
}
/* Image grid: 1 big left + 2 stacked right */
.tour-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 110px 110px;
  height: 220px;
  flex-shrink: 0;
  gap: 2px;
}
.tour-img-main {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-img-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 5-image grid: big left + 4 thumbs in 2 cols right */
.tour-img-grid-5 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 110px 110px;
}
.tour-img-grid-5 .tour-img-main { grid-column: 1; grid-row: 1 / 3; }
.tour-img-grid-5 .tour-img-thumb:nth-child(2) { grid-column: 2; grid-row: 1; }
.tour-img-grid-5 .tour-img-thumb:nth-child(3) { grid-column: 2; grid-row: 2; }
.tour-img-grid-5 .tour-img-thumb:nth-child(4) { grid-column: 3; grid-row: 1; }
.tour-img-grid-5 .tour-img-thumb:nth-child(5) { grid-column: 3; grid-row: 2; }
/* Single image */
.tour-img-single {
  grid-template-columns: 1fr;
  grid-template-rows: 220px;
}
.tour-img-single .tour-img-main { grid-row: 1; }
.tour-card-back {
  transform: rotateY(180deg);
  background: var(--bg-card);
  border-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tb-1 { background: linear-gradient(160deg, #0A1A1A 0%, #0D3030 50%, #1A0800 100%); }
.tb-2 { background: linear-gradient(160deg, #1A0800 0%, #3D1800 50%, #0A0A1A 100%); }
.tb-3 { background: linear-gradient(160deg, #1A0A00 0%, #3A1500 40%, #1A0A10 100%); }
.tb-4 { background: linear-gradient(160deg, #030310 0%, #0A0A2A 50%, #1A0A00 100%); }
.tb-5 { background: linear-gradient(160deg, #0A0A10 0%, #1A1000 50%, #2A0800 100%); }
.tb-6 { background: linear-gradient(160deg, #050518 0%, #0A1A2A 50%, #1A0500 100%); }
.tour-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 80%, rgba(0,147,140,0.12) 0%, transparent 60%),
    repeating-linear-gradient(60deg, rgba(0,147,140,0.03) 0px, rgba(0,147,140,0.03) 1px, transparent 1px, transparent 18px);
}
.tour-card-content {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
}
.tour-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.tour-duration, .tour-type {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.tour-duration {
  background: rgba(0,147,140,0.15);
  color: var(--gold-bright);
  border: 1px solid rgba(0,147,140,0.25);
}
.tour-type {
  background: rgba(245,236,215,0.08);
  color: var(--muted);
  border: 1px solid rgba(245,236,215,0.1);
}
.tour-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.tour-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tour-highlights span {
  padding: 3px 10px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-price {
  display: flex;
  flex-direction: column;
}
.tour-price-both {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tour-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-hrs {
  font-size: 1rem;
  color: #000000;
  min-width: 42px;
  font-weight: 400;
}
.price-from {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-val {
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
 color: #000000;
  line-height: 1;
}
.tour-btn {
  padding: 10px 22px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.tour-btn:hover { background: var(--gold-mid); color: var(--bg-void); transform: scale(1.03); }
/* Card back */
.tour-back-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: center;
}
.tour-back-content h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.tour-back-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-back-content ul li {
  font-size: 0.85rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.tour-back-content ul li:last-child { border-bottom: none; }
.tour-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-void);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 8px;
}
.tour-btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,147,140,0.3);
}

/* ─── STATS ──────────────────────────────── */
.stats {
  position: relative;
  padding: 50px 60px;
  overflow: hidden;
}
.stats-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,147,140,0.05);
  pointer-events: none;
  user-select: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-smooth);
}
.stat-item:hover { border-color: var(--border); transform: translateY(-4px); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 900;
  color: #000000;
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 900;
  color:#000000;
  display: inline;
}
.stat-label {
  margin-top: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── GALLERY ────────────────────────────── */
.gallery {
  padding: 140px 60px;
  background: var(--bg-deep);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.gallery-item { border-radius: var(--r-lg); overflow: hidden; cursor: pointer; }
.gi-large { grid-column: 1; grid-row: 1 / 3; }
.gi-tall { grid-column: 2; grid-row: 1 / 3; }
.gi-small { grid-column: 3; grid-row: span 1; }
.gi-wide { grid-column: 1 / 3; }
.gi-medium { grid-column: 3; }
.gi-inner {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.gi-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery-item:hover .gi-bg { transform: scale(1.08); }
.gib-1 {
  background-image: radial-gradient(circle at 40% 60%, rgba(0,147,140,0.2) 0%, transparent 60%),
    repeating-linear-gradient(30deg, rgba(0,147,140,0.04) 0, rgba(0,147,140,0.04) 1px, transparent 1px, transparent 20px),
    linear-gradient(160deg, #2A1000 0%, #5A2A00 40%, #1A1A30 100%);
}
.gib-2 {
  background-image: radial-gradient(circle at 50% 50%, rgba(18,162,162,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #0A1A10 0%, #0A3020 40%, #1A0A00 100%);
}
.gib-3 {
  background-image: radial-gradient(circle at 70% 30%, rgba(0,147,140,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #1A0A00 0%, #3D1A00 100%);
}
.gib-4 {
  background-image: radial-gradient(circle at 30% 70%, rgba(212,120,90,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #1A0500 0%, #2A0A00 50%, #0A1A1A 100%);
}
.gib-5 {
  background-image: radial-gradient(ellipse at 50% 50%, rgba(0,147,140,0.15) 0%, transparent 70%),
    linear-gradient(135deg, #0A0A1A 0%, #1A1000 40%, #2A0A00 100%);
}
.gib-6 {
  background-image: radial-gradient(circle at 60% 40%, rgba(13,92,92,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #000A1A 0%, #0A1A10 40%, #2A1A00 100%);
}
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,11,0.85) 0%, transparent 50%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.gi-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials {
  padding: 55px 60px;
}
.testimonials-track-wrap {
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s var(--ease-sharp);
  will-change: transform;
}
.testimonial-card {
  min-width: 0;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  transition: border-color 0.3s;
  flex-shrink: 0;
  text-align: center;
}
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.tc-stars {
  font-size: 0.85rem;
  color: var(--gold-mid);
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 28px;
}
.tc-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.tca-1 { background: linear-gradient(135deg, #8B4513, #C8962A); }
.tca-2 { background: linear-gradient(135deg, #2A4A8B, #4A7AC8); }
.tca-3 { background: linear-gradient(135deg, #4A8B4A, #7AC87A); }
.tca-4 { background: linear-gradient(135deg, #8B2A8B, #C87AC8); }
.tca-5 { background: linear-gradient(135deg, #2A8B8B, #4AC8C8); }
.tca-6 { background: linear-gradient(135deg, #8B8B2A, #C8C84A); }
.tc-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.tc-author span {
  font-size: 0.75rem;
  color: var(--muted);
}
/* Testimonials nav */
.tnav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.tnav-btn svg { width: 18px; height: 18px; }
.tnav-btn:hover {
  border-color: var(--gold-mid);
  color: var(--gold-bright);
  background: var(--gold-subtle);
}
.tnav-dots {
  display: flex;
  gap: 8px;
}
.tnav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.tnav-dot.active {
  background: var(--gold-mid);
  transform: scale(1.4);
}

/* ─── CTA / BOOK ─────────────────────────── */
.cta-section {
  position: relative;
  padding: 55px 60px;
  background: var(--bg-deep);
  overflow: hidden;
}
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
  z-index: 0;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,147,140,0.1) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,92,92,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-bright); }
.cta-desc {
  font-size: 1.21rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 56px;
}
/* Booking form */
.booking-form {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-full { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 500;
}
.form-group input,
.form-group select {
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  color: var(--cream);
  transition: border-color 0.3s, background 0.3s;
  font-family: var(--font-sans);
}
.form-group input::placeholder { color: rgba(245,236,215,0.3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-mid);
  background: rgba(0,147,140,0.05);
}
.form-group select option { background: var(--bg-deep); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
  opacity: 1;
  width: 20px;
  height: 20px;
  display: block;
}
/* Guest counter */
.guests-counter {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.gc-btn {
  width: 44px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-mid);
  background: rgba(0,147,140,0.05);
  transition: background 0.2s, color 0.2s;
}
.gc-btn:hover { background: var(--gold-subtle); color: var(--gold-bright); }
.gc-num {
  min-width: 56px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  padding: 0 8px;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-void);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
  opacity: 0;
  transition: opacity 0.3s;
}
.form-submit:hover::before { opacity: 1; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,147,140,0.35); }
.form-submit span, .form-submit svg { position: relative; }
.form-submit svg { width: 18px; height: 18px; transition: transform 0.3s; }
.form-submit:hover svg { transform: translateX(4px); }
/* Success */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 40px;
  text-align: center;
}
.booking-success.show { display: flex; }
.bs-icon svg { width: 60px; height: 60px; animation: bs-pop 0.5s var(--ease-bounce) both; }
@keyframes bs-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.booking-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-bright);
}
.booking-success p { color: var(--muted); font-size: 1rem; max-width: 400px; line-height: 1.6; }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: linear-gradient(to right, #a8edea, #fed6e3);
  border-top: 1px solid var(--border-light);
  padding: 80px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.9fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-brand p {
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link svg { width: 16px; height: 16px; stroke: currentColor; }
.social-link:hover { opacity: 0.85; transform: scale(1.08); }
.social-instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); color: #fff; border: none; }
.social-instagram svg { stroke: #fff; }
.social-facebook { background: linear-gradient(180deg, #1877F2, #0C63D4); color: #fff; border: none; }
.social-facebook svg { stroke: none; fill: #fff; }
.social-youtube { background: linear-gradient(180deg, #FF0000, #CC0000); color: #fff; border: none; }
.social-youtube svg { stroke: none; fill: #FF0000; }
.footer-col:last-child { margin-left: -40px; }
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: #000000;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}
.footer-col ul li a:hover { color: var(--gold-mid); padding-left: 6px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: #000000;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.footer-contact li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-mid);
  stroke: currentColor;
}
.footer-bottom {
  max-width: 1320px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #000000;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: #000000;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--muted); }
.footer-dev {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.footer-dev a {
  color: var(--gold-mid);
  text-decoration: none;
  font-weight: 600;
}
.footer-dev a:hover { text-decoration: underline; }

/* ─── CONTACT LINKS ─────────────────────────── */
.footer-contact-link {
  display: flex;
  align-items: flex-start;
  color: #000000;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color 0.3s;
}
.footer-contact-link:hover { color: var(--gold-bright); }
.footer-contact-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-mid);
}

/* ─── LEGAL MODALS ───────────────────────────── */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,11,0.85);
  z-index: 9000;
  overflow-y: auto;
  padding: 40px 20px;
}
.legal-modal.active { display: flex; align-items: flex-start; justify-content: center; }
.legal-modal-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  max-width: 720px;
  width: 100%;
  padding: 48px;
  margin: auto;
}
.legal-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1;
  transition: color 0.2s;
}
.legal-modal-close:hover { color: var(--gold-bright); }
.legal-modal-box h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.legal-updated { font-size: 0.78rem; color: var(--muted); margin-bottom: 28px; }
.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 24px 0 8px;
}
.legal-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── FLOATING CONTACT BUTTONS ──────────────── */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 8000;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(0,0,0,0.5);
}
.float-btn svg { width: 22px; height: 22px; }
.float-call {
  background: #1a73e8;
  color: #fff;
}
.float-whatsapp {
  background: #25d366;
  color: #fff;
}
.float-email {
  background: var(--gold-mid);
  color: var(--bg-void);
}

/* ─── SCROLL ANIMATIONS (initial states set via JS) ─── */

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1200px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: block; }
  .about-image-stack { height: 320px; }
  .card-back { width: 220px; height: 260px; }
  .card-front { width: 200px; height: 240px; top: 60px; left: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-large { grid-column: 1 / 3; grid-row: span 1; height: 280px; }
  .gi-tall { grid-column: span 1; grid-row: span 1; height: 240px; }
  .gi-wide { grid-column: 1 / 3; grid-row: span 1; height: 200px; }
  .gi-small, .gi-medium { height: 200px; }
}
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 3.2rem); }
  .hero-badge { display: none; }
  .about, .tours, .stats, .gallery, .testimonials, .cta-section, .footer { padding: 36px 24px; }
  .tours-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .booking-form { padding: 24px 16px; }
  .cta-section { padding: 80px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-col:last-child { margin-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .nav { padding: 16px 20px; }
  .hero-title { font-size: clamp(1.6rem, 6.5vw, 2.8rem); flex-direction: row; flex-wrap: nowrap; }
  .hero-subtitle { font-size: clamp(0.82rem, 3.5vw, 0.95rem); max-width: 95%; line-height: 1.65; padding: 0 4px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .booking-form { padding: 20px 12px; }
  .cta-section { padding: 60px 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gi-large, .gi-tall, .gi-small, .gi-medium, .gi-wide { grid-column: 1; grid-row: span 1; height: 220px; }
}
