/* =========================================================
   Tibyan Travel & Tours Agency — stylesheet
   ========================================================= */

:root {
  --navy: #0b1220;
  --navy-2: #101a2e;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eef4ff;
  --amber: #d97706;
  --amber-light: #fff7ed;
  --green: #22c55e;
  --green-dark: #15803d;
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #0f172a;
  --text-muted: #5b6472;
  --text-soft: #8891a0;
  --border: #e6eaf0;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-card-hover: 0 20px 40px rgba(15, 23, 42, 0.12);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; color: var(--text-muted); line-height: 1.65; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 16px; z-index: 1000;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: 92px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.25);
}
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(11, 18, 32, 0.3); }

.btn-block { width: 100%; }

.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.28);
}
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(34, 197, 94, 0.32); }

.btn-whatsapp-ghost {
  background: #eafcf1;
  color: var(--green-dark);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-whatsapp-ghost:hover { background: #d8f9e4; transform: translateY(-1px); }

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.22); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-blue { background: var(--blue-light); color: var(--blue-dark); }

.text-gradient {
  background: linear-gradient(90deg, var(--blue) 0%, #4f8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  transition: padding .3s var(--ease);
}
.site-header.is-scrolled .header-inner { padding: 12px 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11,18,32,0.25);
  transition: transform .35s var(--ease);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand:hover .brand-mark { transform: scale(1.06) rotate(-2deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--text); }
.brand-name b { color: var(--blue); font-weight: 800; }
.brand-suffix { font-weight: 500; color: var(--text-soft); font-size: 0.82em; }
.brand-tagline { font-size: 0.68rem; color: var(--amber); font-weight: 700; letter-spacing: 0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.nav-links a { position: relative; padding: 6px 0; transition: color .2s var(--ease); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--blue-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 0 auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 76px 0 160px;
  background: linear-gradient(120deg, #eef3fc 0%, #f7f9fc 45%, #fdf3e8 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, #bcd4ff 0%, transparent 70%); top: -140px; left: -120px; }
.blob-2 { width: 480px; height: 480px; background: radial-gradient(circle, #ffdcb0 0%, transparent 70%); top: 60px; right: -160px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.06); }
}

.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.hero-title {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: 1.05rem;
  max-width: 660px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.stat-num .star { color: var(--amber); font-size: 0.9em; margin-right: 2px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* ---------- Search card ---------- */
.search-card {
  position: relative;
  margin-top: -84px;
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 30px 30px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  animation: rise .8s var(--ease-out) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.trip-tabs {
  display: inline-flex;
  background: #f1f4f9;
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 22px;
}
.trip-tab {
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.trip-tab.is-active { background: var(--navy); color: #fff; box-shadow: 0 6px 14px rgba(11,18,32,.25); }

.search-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
}

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field select, .field input {
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  background: #fbfcfe;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  width: 100%;
  min-width: 0;
}
.field select:hover, .field input:hover { border-color: #c7d2e2; }
.field select:focus, .field input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.swap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 2px;
  transition: transform .4s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  justify-self: center;
}
.swap-btn:hover { background: var(--blue-light); color: var(--blue-dark); border-color: #cfe0ff; }
.swap-btn.is-swapping { transform: rotate(180deg); }

#field-return { transition: opacity .3s var(--ease); }
#field-return.is-hidden { opacity: .35; pointer-events: none; }

/* ================= SECTIONS ================= */
.section { padding: 96px 0; }
.section-alt { background: #fff; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 16px; }
.section-head p { font-size: 1.02rem; }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #dbe6ff;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.94rem; }

/* ---------- Destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-grid-secondary { margin-top: 22px; }

.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 300px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  padding: 22px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .7s var(--ease-out);
  z-index: -2;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.dest-card:hover::after { transform: scale(1.08); }

.dest-tag {
  align-self: flex-start;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: auto;
}
.dest-title { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.35rem; margin-top: 12px; }
.dest-sub { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; margin-top: 4px; }

.dest-card-plain {
  height: 210px;
  padding: 0;
  align-items: center;
}
.dest-hover {
  position: relative;
  z-index: 1;
  margin: auto auto 18px 18px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(11,18,32,0.55);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.dest-card-plain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0) 45%, rgba(11,18,32,0.55) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 0;
}
.dest-card-plain:hover::before,
.dest-card-plain:hover .dest-hover { opacity: 1; transform: translateY(0); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-grid h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 4px 0 18px; }
.about-text { margin-bottom: 22px; font-size: 1rem; }
.about-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text);
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: inset 0 0 0 1px #cfe0ff;
}
.about-list li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 1px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.about-media { position: relative; }
.about-media-img {
  height: 380px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.about-media-card {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-media-card .star { color: var(--amber); font-size: 1.4rem; }
.about-media-card strong { display: block; font-size: 1rem; }
.about-media-card small { color: var(--text-soft); font-size: 0.76rem; }

/* ---------- CTA ---------- */
.cta {
  background: radial-gradient(circle at 20% 20%, #16243f 0%, var(--navy) 55%);
  padding: 96px 0;
}
.cta-box { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-box h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 34px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  overflow: hidden;
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 640px;
  height: 360px;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 70%);
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.footer-gradient-line {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--amber) 100%);
}

.footer-top { padding: 64px 0 44px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1fr 1.05fr;
  gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 0.92rem; max-width: 320px; }
.footer-brand .brand-suffix { color: rgba(255,255,255,0.55); }
.footer-brand .brand-tagline { color: var(--amber); }

.footer-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #8de8ac;
  font-size: 0.8rem;
  font-weight: 700;
}
.footer-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 rgba(74, 222, 128, 0.6);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a, .footer-line { color: rgba(255,255,255,0.65); font-size: 0.92rem; font-weight: 600; transition: color .2s var(--ease), transform .2s var(--ease); width: fit-content; }
.footer-col a { position: relative; }
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.footer-col a:hover { color: #fff; transform: translateX(2px); }
.footer-col a:hover::after { transform: scaleX(1); }

.footer-line { display: flex; align-items: center; gap: 9px; }
.footer-icon { flex-shrink: 0; color: rgba(255,255,255,0.45); }
.footer-phone { color: #7CE6A0; }
.footer-phone .footer-icon { color: #7CE6A0; }
.footer-phone:hover { color: #a2f0bc; }
.footer-phone:hover .footer-icon { color: #a2f0bc; }
.footer-muted { color: rgba(255,255,255,0.4); font-weight: 500; }
.footer-muted .footer-icon { color: rgba(255,255,255,0.3); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  font-size: 0.82rem;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.back-to-top svg { transition: transform .25s var(--ease); }
.back-to-top:hover { color: #fff; transform: translateY(-2px); }
.back-to-top:hover svg { transform: translateY(-2px); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 34px rgba(34, 197, 94, 0.5); }
.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-blob, .wa-float-ring, .search-card { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .search-grid { grid-template-columns: 1fr 1fr; }
  .swap-btn { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { order: -1; }
  .about-media-img { height: 300px; }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-toggle { display: flex; }
  .btn-whatsapp-ghost span { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid-secondary { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 56px 0 130px; }
  .hero-title { font-size: 1.7rem; }
  .search-card { padding: 22px 18px 24px; margin-top: -70px; }
  .search-grid { grid-template-columns: 1fr; gap: 14px; }
  .swap-btn { display: none; }
  .section { padding: 64px 0; }
  .about-media-card { left: 12px; bottom: -20px; padding: 12px 16px; }
  .dest-grid-secondary { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .stats { gap: 22px; }
}
