/* ═══════════════════════════════════════════════════════════
   JUST FLY TOURS & TRAVELS — PREMIUM TRAVEL PLATFORM
   Design: Sahara Dusk palette · Cormorant Garamond + Plus Jakarta Sans
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Sahara Dusk Palette */
  --gold:        #E6C07B;
  --gold-deep:   #C9956B;
  --brown-dark:  #5B3A29;
  --brown-mid:   #7D4E35;
  --cream:       #F9F3EB;
  --cream-dark:  #EDE4D6;
  --ink:         #2C1810;
  --ink-soft:    #4A2E1E;

  /* Semantic tokens — Light Mode */
  --bg:          #F9F3EB;
  --bg-alt:      #EDE4D6;
  --bg-card:     #FFFFFF;
  --bg-nav:      rgba(249, 243, 235, 0.92);
  --text:        #2C1810;
  --text-muted:  #7D5A45;
  --text-light:  #A07858;
  --border:      rgba(92, 58, 41, 0.12);
  --border-mid:  rgba(92, 58, 41, 0.2);
  --shadow-sm:   0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md:   0 8px 32px rgba(44, 24, 16, 0.12);
  --shadow-lg:   0 24px 64px rgba(44, 24, 16, 0.16);
  --shadow-gold: 0 8px 32px rgba(230, 192, 123, 0.3);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py:  clamp(4rem, 8vw, 7rem);
  --container:   1280px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-mid:     300ms;
  --dur-slow:    600ms;
}

/* Dark Mode */
[data-theme="dark"] {
  --bg:          #1A0E08;
  --bg-alt:      #241408;
  --bg-card:     #2C1810;
  --bg-nav:      rgba(26, 14, 8, 0.95);
  --text:        #F9F3EB;
  --text-muted:  #C9A87C;
  --text-light:  #A07858;
  --border:      rgba(230, 192, 123, 0.12);
  --border-mid:  rgba(230, 192, 123, 0.2);
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:   0 24px 64px rgba(0, 0, 0, 0.5);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--dur-mid) var(--ease), color var(--dur-mid) var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(230, 192, 123, 0.12);
  border: 1px solid rgba(230, 192, 123, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-mid) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--brown-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 149, 107, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 149, 107, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}

.btn--outline:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; border-radius: var(--radius-md); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--dur-mid) var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.nav__logo-icon {
  font-size: 1.3rem;
  color: var(--gold-deep);
}

.nav__logo-text em {
  font-style: italic;
  color: var(--gold-deep);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
}

.nav__link:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur-fast);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--border);
  transform: rotate(20deg);
}

.theme-toggle__icon {
  position: absolute;
  transition: all var(--dur-mid) var(--ease);
}

.theme-toggle__moon { opacity: 0; transform: translateY(10px); }

[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: translateY(-10px); }
[data-theme="dark"] .theme-toggle__moon { opacity: 1; transform: translateY(0); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--dur-mid) var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0.5rem;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0 2rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 1rem;
  transition: color var(--dur-fast);
}

.mobile-menu__link:hover { color: var(--gold-deep); }

.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: 0 2rem;
  max-width: 320px;
  margin-top: 1rem;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(68px + 4rem) clamp(1rem, 4vw, 2.5rem) 4rem;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
  bottom: 10%;
  left: -100px;
  animation-delay: -3s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--brown-dark) 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -6s;
  opacity: 0.2;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 58, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 58, 41, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

[data-theme="dark"] .hero__grid {
  background-image:
    linear-gradient(rgba(230, 192, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 192, 123, 0.04) 1px, transparent 1px);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-deep);
  position: relative;
}

.hero__headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  border-radius: 2px;
  opacity: 0.5;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-md);
  gap: 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-deep);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── SEARCH WIDGET ──────────────────────────────────────── */
.search-widget {
  width: 100%;
  max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.search-widget__tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.search-widget__tabs::-webkit-scrollbar { display: none; }

.search-tab {
  flex: 1;
  min-width: 100px;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.search-tab:hover { color: var(--text); background: var(--bg-alt); }

.search-tab.active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
  background: rgba(230, 192, 123, 0.06);
}

.search-widget__body {
  padding: 1.5rem;
}

.search-widget__body.hidden { display: none; }

.search-type {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.radio-pill {
  cursor: pointer;
}

.radio-pill input { display: none; }

.radio-pill span {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: all var(--dur-fast);
}

.radio-pill input:checked + span {
  background: var(--gold-deep);
  color: white;
  border-color: var(--gold-deep);
}

.search-fields {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}

.search-field--wide { flex: 2; min-width: 200px; }

.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--dur-fast);
  outline: none;
}

.search-input:focus {
  border-color: var(--gold-deep);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(201, 149, 107, 0.15);
}

.search-input::placeholder { color: var(--text-light); }

.swap-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
  transition: all var(--dur-fast);
}

.swap-btn:hover {
  background: var(--gold-deep);
  color: white;
  border-color: var(--gold-deep);
  transform: rotate(180deg);
}

.search-btn {
  flex-shrink: 0;
  padding: 0.7rem 1.5rem;
  white-space: nowrap;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.trust-badge img {
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.3);
}

.trust-badge--text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-inner span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FEATURES SECTION ───────────────────────────────────── */
.features {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--dur-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-card__tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(230, 192, 123, 0.1);
  border: 1px solid rgba(230, 192, 123, 0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

.feature-card__visual {
  margin-top: 1.5rem;
}

/* AI Chat Visual */
.ai-chat {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-chat__msg {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 85%;
}

.ai-chat__msg--bot {
  background: linear-gradient(135deg, var(--gold-deep), var(--brown-dark));
  color: white;
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
  align-self: flex-start;
}

.ai-chat__msg--user {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
  align-self: flex-end;
}

/* Tour Preview Visual */
.tour-preview {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tour-preview__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast);
}

.tour-preview__item:last-child { border-bottom: none; }
.tour-preview__item:hover { background: var(--bg-card); }

.tour-preview__flag { font-size: 1.5rem; }

.tour-preview__item div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-preview__item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.tour-preview__item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tour-preview__badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white;
}

/* ─── DESTINATIONS SECTION ───────────────────────────────── */
.destinations {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  min-height: 220px;
  cursor: pointer;
  transition: transform var(--dur-mid) var(--ease);
}

.dest-card--tall {
  grid-row: span 2;
  min-height: 460px;
}

.dest-card:hover { transform: scale(1.02); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.1) 60%, transparent 100%);
  transition: opacity var(--dur-mid);
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(to top, rgba(44, 24, 16, 0.9) 0%, rgba(44, 24, 16, 0.3) 60%, transparent 100%);
}

.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.dest-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(230, 192, 123, 0.15);
  border: 1px solid rgba(230, 192, 123, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(8px);
}

.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.dest-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.destinations__cta {
  text-align: center;
}

/* ─── TESTIMONIALS SECTION ───────────────────────────────── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--dur-slow) var(--ease);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--dur-mid) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-mid);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  quotes: "\201C" "\201D";
}

.testimonial-card__quote::before { content: open-quote; color: var(--gold-deep); }
.testimonial-card__quote::after { content: close-quote; color: var(--gold-deep); }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
}

.carousel__btn:hover {
  background: var(--gold-deep);
  color: white;
  border-color: var(--gold-deep);
  transform: scale(1.1);
}

.carousel__dots {
  display: flex;
  gap: 6px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-mid);
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast);
}

.carousel__dot.active {
  background: var(--gold-deep);
  width: 24px;
  border-radius: 4px;
}

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.rating-summary__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.rating-summary__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.rating-summary__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-summary__score > div span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-summary__platforms {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}

.rating-platform {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-platform > span:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 70px;
  flex-shrink: 0;
}

.rating-platform > span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.rating-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  border-radius: 3px;
  animation: barFill 1.5s var(--ease) forwards;
  transform-origin: left;
}

@keyframes barFill {
  from { width: 0; }
  to { width: var(--w); }
}

/* ─── PRICING SECTION ────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing__toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing__save-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 2px 8px;
  border-radius: 100px;
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--border-mid);
  border-radius: 13px;
  position: relative;
  transition: background var(--dur-mid);
}

.toggle-switch[aria-checked="true"] {
  background: linear-gradient(135deg, var(--gold-deep), var(--brown-dark));
}

.toggle-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform var(--dur-mid) var(--ease-spring);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch[aria-checked="true"] .toggle-switch__thumb {
  transform: translateX(22px);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: all var(--dur-mid) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--gold-deep), var(--brown-dark));
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 1.5rem;
}

.pricing-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  transition: all var(--dur-mid) var(--ease);
}

.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.feat--yes {
  color: var(--text) !important;
}

.feat--yes::before {
  background-color: rgba(34, 197, 94, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2322c55e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feat--no {
  opacity: 0.45;
}

.feat--no::before {
  background-color: rgba(0,0,0,0.06);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pricing__enterprise {
  background: linear-gradient(135deg, var(--brown-dark), var(--ink));
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing__enterprise-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.pricing__enterprise-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.pricing__enterprise-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.pricing__enterprise-content p {
  font-size: 0.875rem;
  color: rgba(249, 243, 235, 0.65);
  line-height: 1.6;
}

/* ─── FAQ SECTION ────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}

.faq-item.open {
  border-color: var(--gold-deep);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--dur-fast);
}

.faq-item__question:hover { color: var(--gold-deep); }

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform var(--dur-mid) var(--ease-spring);
  font-weight: 300;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), padding var(--dur-mid);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem;
}

.faq-item.open .faq-item__answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.cta-block {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--ink) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-block__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}

.cta-block__orb--1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  right: 200px;
}

.cta-block__orb--2 {
  width: 300px;
  height: 300px;
  background: var(--gold-deep);
  bottom: -100px;
  left: 100px;
}

.cta-block__content {
  position: relative;
  z-index: 1;
}

.cta-block__content .section-tag {
  color: var(--gold);
  background: rgba(230, 192, 123, 0.15);
  border-color: rgba(230, 192, 123, 0.3);
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-block__title em {
  font-style: italic;
  color: var(--gold);
}

.cta-block__sub {
  font-size: 1rem;
  color: rgba(249, 243, 235, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.cta-block__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: white;
  outline: none;
  transition: all var(--dur-fast);
  backdrop-filter: blur(8px);
}

.cta-input::placeholder { color: rgba(255,255,255,0.45); }

.cta-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

.cta-block__note {
  font-size: 0.78rem;
  color: rgba(249, 243, 235, 0.45);
}

/* CTA Phone Visual */
.cta-block__visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cta-phone {
  width: 220px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  padding: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}

.cta-phone__screen {
  background: var(--ink);
  border-radius: 20px;
  padding: 1.25rem 1rem;
  min-height: 280px;
  position: relative;
}

.cta-phone__notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 1.25rem;
}

.cta-phone__header {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.cta-phone__booking {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.cta-phone__route {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.cta-phone__detail {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.cta-phone__status {
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}

.cta-phone__msg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  line-height: 1.5;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(249, 243, 235, 0.1);
}

.footer__logo .nav__logo-text { color: var(--cream); }
.footer__logo .nav__logo-icon { color: var(--gold); }

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(249, 243, 235, 0.55);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249, 243, 235, 0.6);
  transition: all var(--dur-fast);
}

.footer__social:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: white;
  transform: translateY(-2px);
}

.footer__links-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(249, 243, 235, 0.55);
  transition: color var(--dur-fast);
}

.footer__links a:hover { color: var(--gold); }

.footer__newsletter p {
  font-size: 0.875rem;
  color: rgba(249, 243, 235, 0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: white;
  outline: none;
  transition: border-color var(--dur-fast);
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__newsletter-input:focus { border-color: var(--gold); }

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-info a,
.footer__contact-info span {
  font-size: 0.82rem;
  color: rgba(249, 243, 235, 0.55);
  transition: color var(--dur-fast);
}

.footer__contact-info a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(249, 243, 235, 0.4);
}

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

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(249, 243, 235, 0.4);
  transition: color var(--dur-fast);
}

.footer__bottom-links a:hover { color: var(--gold); }

.footer__certifications {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__certifications span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 243, 235, 0.35);
  border: 1px solid rgba(249, 243, 235, 0.15);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ─── FLOATING ELEMENTS ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--dur-mid) var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-mid) var(--ease);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-deep);
  color: white;
  border-color: var(--gold-deep);
  transform: translateY(-4px);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE — TABLET ────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--large {
    grid-column: span 2;
  }

  .destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-card--tall {
    grid-row: span 1;
    min-height: 220px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .pricing__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card:last-child {
    grid-column: span 2;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: span 3;
  }

  .footer__newsletter {
    grid-column: span 3;
  }

  .cta-block {
    grid-template-columns: 1fr;
  }

  .cta-block__visual {
    display: none;
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn--outline,
  .nav__actions .btn--primary { display: none; }
}

/* ─── RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 640px) {
  .hero__stats {
    gap: 0;
    padding: 1rem;
  }

  .hero__stat {
    padding: 0 1rem;
  }

  .hero__stat-divider {
    height: 30px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing-card:last-child {
    grid-column: span 1;
  }

  .pricing-card--featured {
    transform: none;
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .footer__newsletter {
    grid-column: span 2;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .rating-summary {
    flex-direction: column;
    gap: 1.5rem;
  }

  .search-fields {
    flex-direction: column;
  }

  .search-field { min-width: 100%; }
  .swap-btn { display: none; }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    justify-content: center;
  }

  .cta-block__form {
    flex-direction: column;
  }

  .cta-input { min-width: 100%; }

  .pricing__enterprise {
    flex-direction: column;
    text-align: center;
  }

  .pricing__enterprise-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .nav, .whatsapp-float, .back-to-top { display: none; }
  .hero { min-height: auto; padding-top: 2rem; }
}