/* ============================================================
   MAWAKIB V3.0 — SHARED STYLES (cinematic dark luxury)
============================================================ */
:root {
  --gold-primary: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --gold-soft: rgba(201, 168, 76, 0.12);
  --black-deep: #0A0A0A;
  --black-rich: #111;
  --black-card: #181818;
  --black-surface: #1F1F1F;
  --white-pure: #fff;
  --white-soft: #F5F0E8;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --accent-red: #E63946;
  --text-muted: #999;
  --border-gold: 1px solid rgba(201,168,76,0.2);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.15);
  --shadow-gold-strong: 0 12px 48px rgba(201,168,76,0.35);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.6);
  --radius-card: 18px;
  --radius-btn: 50px;
  --radius-tag: 10px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}
[data-theme="light"] {
  --black-deep: #F5F2EC; --black-rich: #FAF7F1; --black-card: #fff;
  --black-surface: #F0EBE3; --white-pure: #0A0A0A; --white-soft: #1A1A1A;
  --text-muted: #666; --shadow-deep: 0 20px 60px rgba(0,0,0,0.08);
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: 'Cairo', system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
  background: var(--black-deep);
  color: var(--white-soft);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s, color 0.4s;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--gold-primary); color: var(--black-deep); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black-rich); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* UTILS */
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section { padding: 100px 0; position: relative; }
.section__header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px;
  position: relative; display: inline-block;
}
.section h2::after {
  content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.section__subtitle { color: var(--text-muted); font-size: 1.05rem; margin-top: 20px; }

/* ANIMATIONS */
@keyframes fadeInUp { from {opacity:0; transform: translateY(40px);} to {opacity:1; transform:none;} }
@keyframes slideInRight { from {opacity:0; transform: translateX(40px);} to {opacity:1; transform:none;} }
@keyframes slideInLeft  { from {opacity:0; transform: translateX(-40px);} to {opacity:1; transform:none;} }
@keyframes shimmer { 0% {background-position:-200% 0;} 100% {background-position:200% 0;} }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 var(--gold-glow), 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 20px transparent, 0 12px 48px rgba(37,211,102,0.6); }
}
@keyframes float { 0%,100% {transform:translateY(0);} 50% {transform:translateY(-10px);} }
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes blink { 50% { opacity: 0; } }
@keyframes bounce { 0%,100% {transform:translateY(0);opacity:.7;} 50% {transform:translateY(10px);opacity:1;} }
@keyframes marquee { from {transform:translateX(0);} to {transform:translateX(50%);} }
@keyframes ringPulse { 0%{transform:scale(1);opacity:.7;} 100%{transform:scale(1.8);opacity:0;} }
@keyframes particleFloat {
  0%{transform:translateY(100vh) translateX(0);opacity:0;}
  10%,90%{opacity:.7;}
  100%{transform:translateY(-100vh) translateX(50px);opacity:0;}
}
@keyframes flyPlane {
  0%{transform:translateX(100vw) translateY(20px) rotate(-15deg); opacity:0;}
  20%,80%{opacity:1;}
  100%{transform:translateX(-100vw) translateY(-20px) rotate(-15deg); opacity:0;}
}
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
[data-animate] { opacity: 0; }
[data-animate].animated { animation: fadeInUp 0.8s var(--ease) forwards; }
[data-animate="left"].animated { animation: slideInLeft 0.8s var(--ease) forwards; }
[data-animate="right"].animated { animation: slideInRight 0.8s var(--ease) forwards; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}

/* CURSOR GLOW */
.cursor-glow {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s;
  mix-blend-mode: screen;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* SCROLL PROGRESS */
.scroll-progress { position: fixed; top:0; left:0; right:0; height:3px; z-index:1000; pointer-events:none; }
.scroll-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-primary));
  transition: width 0.05s linear; box-shadow: 0 0 10px var(--gold-glow);
}

/* NAV */
.navbar {
  position: fixed; top:0; left:0; right:0; height: var(--nav-h); z-index: 999;
  display: flex; align-items: center;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom: var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
[data-theme="light"] .navbar { background: rgba(255,255,255,0.75); }
[data-theme="light"] .navbar.scrolled { background: rgba(255,255,255,0.95); }
.navbar__inner {
  width: 100%; max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; gap: 20px;
}
.navbar__logo { font-weight: 900; font-size: 1.2rem; display:flex; align-items:center; gap:8px; flex-shrink: 0; }
.navbar__links { display: flex; gap: 28px; }
.navbar__links a {
  font-size: 0.95rem; font-weight: 600; color: var(--white-soft);
  position: relative; transition: color 0.3s;
}
.navbar__links a::after {
  content:''; position:absolute; bottom:-6px; right:0; left:0; height:2px;
  background: var(--gold-primary); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--gold-light); }
.navbar__links a:hover::after, .navbar__links a.active::after { transform: scaleX(1); }
.navbar__right { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: var(--border-gold); color: var(--gold-light); font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}
.icon-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }
.navbar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--whatsapp); color: white;
  padding: 10px 18px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.navbar__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.6); }
.menu-toggle { display: none; }

/* MOBILE NAV */
@media (max-width: 900px) {
  .navbar__links {
    position: fixed; top: var(--nav-h); right: 0; left: 0;
    flex-direction: column; gap: 0;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: var(--border-gold);
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
  }
  .navbar__links.open { transform: translateY(0); }
  .navbar__links a { padding: 14px 28px; }
  .navbar__links a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .navbar__cta span { display: none; }
  .navbar__cta { padding: 10px 14px; }
}

/* BUTTONS */
.cta-primary {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--whatsapp); color: white;
  border-radius: var(--radius-btn); font-weight: 700; font-size: 1.05rem;
  overflow: hidden; transition: transform 0.3s;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.cta-primary::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
}
.cta-primary:hover { transform: translateY(-3px) scale(1.03); }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border: 2px solid var(--gold-primary);
  color: var(--gold-light); border-radius: var(--radius-btn);
  font-weight: 700; font-size: 1.05rem;
  transition: background 0.3s, transform 0.3s;
}
.cta-secondary:hover { background: var(--gold-soft); transform: translateY(-3px); }
.btn-text { background: none; border: none; color: var(--gold-light); font-weight: 600; cursor: pointer; }

/* HERO */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; isolation: isolate;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #0a1a3a, #000);
  background-size: 200% 200%;
  animation: heroScenes 25s infinite;
}
@keyframes heroScenes {
  0%   { background-image: linear-gradient(135deg, #0a1a3a, #000); }
  20%  { background-image: linear-gradient(135deg, #0e4d4d, #02132a); }
  40%  { background-image: linear-gradient(135deg, #5a3a1a, #1a0a0a); }
  60%  { background-image: linear-gradient(135deg, #1f3a6b, #0a1a2a); }
  80%  { background-image: linear-gradient(135deg, #6a2a0e, #2a0505); }
  100% { background-image: linear-gradient(135deg, #0a1a3a, #000); }
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero__media.active { opacity: 0.6; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.9) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.1; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__content { padding: 60px 24px 40px; max-width: 960px; position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border: 1px solid var(--gold-primary);
  border-radius: var(--radius-btn); font-size: 0.9rem; font-weight: 600;
  color: var(--gold-light); background: rgba(201,168,76,0.08); backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 24px;
  color: var(--white-pure); text-shadow: 0 4px 30px rgba(0,0,0,0.8);
  letter-spacing: -0.5px;
}
.hero h1 .gold-text {
  background-size: 200% 200%; animation: gradientShift 6s ease infinite;
}
.hero__typewriter {
  font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 400;
  color: var(--white-soft); margin-bottom: 32px; min-height: 1.6em;
}
.hero__typewriter::after {
  content: '|'; color: var(--gold-primary);
  animation: blink 1s steps(1) infinite; margin-right: 4px;
}
.hero__usps { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 36px; }
.usp-pill {
  padding: 10px 18px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-btn);
  font-size: 0.85rem; font-weight: 600; backdrop-filter: blur(10px);
}
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 1.8rem; color: var(--gold-primary);
  animation: bounce 2s infinite;
}

/* HERO SCENE DOTS */
.hero__dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); transition: all 0.3s;
}
.hero__dot.active { background: var(--gold-primary); width: 24px; border-radius: 4px; }

/* PAGE HERO (smaller, for inner pages) */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center; overflow: hidden; isolation: isolate;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.page-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.5), rgba(10,10,10,0.9));
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 900;
  margin-bottom: 16px; color: var(--white-pure);
}
.page-hero p { color: var(--white-soft); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumbs {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px; font-size: 0.85rem; color: var(--text-muted);
}
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span::before { content: '/'; margin: 0 8px; color: var(--gold-dark); }

/* TRUST TICKER */
.ticker {
  background: linear-gradient(90deg, var(--black-rich), var(--black-card), var(--black-rich));
  border-top: var(--border-gold); border-bottom: var(--border-gold);
  overflow: hidden; padding: 18px 0;
}
.ticker__track {
  display: inline-flex; white-space: nowrap;
  animation: marquee 30s linear infinite; gap: 40px;
}
.ticker__item {
  color: var(--gold-light); font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 14px;
}
.ticker__item::after { content:'◆'; color: var(--gold-primary); margin-right: 14px; }

/* SEARCH BAR */
.searchbar {
  display: flex; align-items: center; gap: 12px;
  background: var(--black-card); border: var(--border-gold);
  border-radius: var(--radius-btn); padding: 8px 16px;
  max-width: 600px; margin: 0 auto 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.searchbar:focus-within { border-color: var(--gold-primary); box-shadow: var(--shadow-gold); }
.searchbar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white-soft); font-size: 1rem; padding: 8px;
}
.searchbar__icon { color: var(--gold-light); font-size: 1.2rem; }
.searchbar__clear { color: var(--text-muted); cursor: pointer; padding: 4px 8px; }
.searchbar__clear:hover { color: var(--gold-light); }

/* FILTERS */
.filters {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 32px;
}
.filter-pill {
  padding: 10px 20px; border: 1px solid var(--gold-primary);
  border-radius: var(--radius-btn); color: var(--gold-light);
  font-weight: 600; font-size: 0.88rem; background: transparent;
  transition: all 0.3s; white-space: nowrap;
}
.filter-pill:hover { background: var(--gold-soft); }
.filter-pill.active {
  background: var(--gold-primary); color: var(--black-deep);
  box-shadow: var(--shadow-gold);
}
.filter-row {
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 28px;
  padding: 16px 20px; background: var(--black-card);
  border: var(--border-gold); border-radius: var(--radius-card);
}
.filter-row__group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { color: var(--text-muted); font-size: 0.9rem; }
.select-styled {
  padding: 8px 14px; background: var(--black-surface); color: var(--white-soft);
  border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-tag);
  cursor: pointer; outline: none; font-size: 0.9rem;
}
.select-styled:focus { border-color: var(--gold-primary); }
.range-slider {
  -webkit-appearance: none; appearance: none;
  width: 180px; height: 4px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-primary) var(--val, 50%), var(--black-surface) var(--val, 50%));
  border-radius: 2px; outline: none;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-primary); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.range-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-primary); cursor: pointer; border: none;
}
.results-count { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; }

/* DESTINATION CARDS */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.destinations.list-view { grid-template-columns: 1fr; }
.destinations.list-view .dest-card { aspect-ratio: auto; display: flex; height: 180px; }
.destinations.list-view .dest-card__bg-img { width: 280px; flex-shrink: 0; }
.destinations.list-view .dest-card__content { position: static; padding: 24px; flex: 1; background: var(--black-card); }
.destinations.list-view .dest-card__overlay { display: none; }
.dest-card {
  position: relative; border-radius: var(--radius-card);
  overflow: hidden; aspect-ratio: 4 / 5;
  border: var(--border-gold);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, opacity 0.4s;
  cursor: pointer; isolation: isolate;
  background: var(--black-card);
}
.dest-card.hidden { display: none; }
.dest-card__bg-img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
  background: linear-gradient(135deg, var(--black-surface), var(--black-card));
}
.dest-card__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.dest-card__content {
  position: absolute; bottom: 0; right: 0; left: 0;
  padding: 24px;
}
.dest-card__badges { position: absolute; top: 16px; right: 16px; display: flex; gap: 6px; z-index: 2; }
.dest-card__badge {
  padding: 4px 10px; background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
  color: var(--gold-light); font-size: 0.7rem; font-weight: 700;
  border-radius: 20px; border: 1px solid var(--gold-primary);
}
.dest-card__badge.popular { background: var(--gold-primary); color: var(--black-deep); }
.dest-card__wishlist {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform 0.3s, background 0.3s;
}
.dest-card__wishlist:hover { transform: scale(1.15); }
.dest-card__wishlist.active { background: var(--accent-red); }
.dest-card__flag { font-size: 1.8rem; margin-bottom: 6px; }
.dest-card__title {
  font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700;
  color: white; margin-bottom: 4px;
}
.dest-card__tagline { color: var(--white-soft); font-size: 0.88rem; opacity: 0.85; margin-bottom: 12px; }
.dest-card__meta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
  font-size: 0.78rem; color: var(--gold-light);
}
.dest-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.dest-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.dest-card__price { color: white; font-weight: 700; }
.dest-card__price small { color: var(--text-muted); font-weight: 400; font-size: 0.7rem; }
.dest-card__price b {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
}
.dest-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--whatsapp);
  color: white; font-weight: 700; font-size: 0.82rem;
  border-radius: var(--radius-btn); transition: transform 0.3s;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold-strong); border-color: var(--gold-primary); }
.dest-card:hover .dest-card__bg-img { transform: scale(1.08); }
.dest-card:hover .dest-card__cta { transform: translateY(-2px); }

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--black-card); border: var(--border-gold);
  border-radius: var(--radius-card); max-width: 800px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.9); transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-deep);
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal__close {
  position: absolute; top: 24px; left: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black-card); color: var(--gold-light);
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.modal__img {
  width: 100%; height: 320px; object-fit: cover;
  border-top-left-radius: var(--radius-card); border-top-right-radius: var(--radius-card);
}
.modal__body { padding: 28px; }
.modal__title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.modal__tagline { color: var(--gold-light); margin-bottom: 16px; }
.modal__desc { color: var(--white-soft); margin-bottom: 20px; line-height: 1.7; }
.modal__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  padding: 6px 12px; background: var(--gold-soft);
  border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-tag);
  font-size: 0.8rem; color: var(--gold-light);
}
.modal__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* COMPARE TRAY */
.compare-tray {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150%);
  background: var(--black-card); border: var(--border-gold);
  border-radius: var(--radius-card); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  z-index: 997; box-shadow: var(--shadow-deep);
  transition: transform 0.4s var(--ease);
  max-width: 90vw;
}
.compare-tray.visible { transform: translateX(-50%) translateY(0); }
.compare-tray__items { display: flex; gap: 8px; }
.compare-tray__item {
  width: 50px; height: 50px; border-radius: 12px;
  border: var(--border-gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background-size: cover; background-position: center;
  position: relative;
}
.compare-tray__item-empty { color: var(--text-muted); border-style: dashed; }
.compare-tray__item-remove {
  position: absolute; top: -6px; left: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-red); color: white; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}

/* COMPARE MODAL TABLE */
.compare-table {
  width: 100%; border-collapse: collapse; color: var(--white-soft); font-size: 0.9rem;
}
.compare-table th, .compare-table td {
  padding: 12px; text-align: right; border-bottom: 1px solid rgba(201,168,76,0.1);
}
.compare-table th { color: var(--gold-light); font-weight: 600; }

/* DETAIL PAGE */
.detail-hero {
  position: relative; min-height: 70vh; padding: calc(var(--nav-h) + 60px) 0 60px;
  overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
}
.detail-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.detail-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
}
.detail-hero h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 12px; color: white; }
.detail-hero__meta {
  display: flex; flex-wrap: wrap; gap: 20px; margin: 16px 0 24px;
  font-size: 0.95rem;
}
.detail-hero__meta span { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); }
.detail-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-card {
  background: var(--black-card); border: var(--border-gold);
  border-radius: var(--radius-card); padding: 28px; margin-bottom: 24px;
}
.detail-card h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; color: var(--gold-light); }
.detail-card ul { list-style: none; }
.detail-card ul li {
  padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex; align-items: center; gap: 10px;
}
.detail-card ul li::before { content: '✦'; color: var(--gold-primary); }
.detail-card ul li:last-child { border-bottom: none; }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.gallery img {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: 10px; cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery img:hover { transform: scale(1.04); box-shadow: var(--shadow-gold); }

.sticky-cta {
  position: sticky; top: calc(var(--nav-h) + 20px);
  background: var(--black-card); border: var(--border-gold);
  border-radius: var(--radius-card); padding: 28px;
  text-align: center;
}
.sticky-cta__price {
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.sticky-cta__price small { color: var(--text-muted); font-weight: 400; font-size: 0.7rem; display: block; }
.sticky-cta__rating { color: var(--gold-primary); margin: 8px 0 20px; letter-spacing: 2px; }
.sticky-cta button, .sticky-cta a {
  width: 100%; margin-bottom: 10px; justify-content: center;
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.lightbox__close, .lightbox__nav {
  position: absolute; color: white; font-size: 2rem;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: var(--border-gold);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox__close { top: 24px; left: 24px; }
.lightbox__prev { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { left: 24px; top: 50%; transform: translateY(-50%); }

/* HONEYMOON SECTION */
.honeymoon { background: var(--black-rich); position: relative; overflow: hidden; }
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; bottom: -10px;
  width: 4px; height: 4px; background: var(--gold-primary);
  border-radius: 50%; opacity: 0;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px var(--gold-glow);
}
.honeymoon__icon {
  text-align: center; font-size: 5rem; margin-bottom: 20px;
  filter: drop-shadow(0 0 30px var(--gold-glow));
  animation: float 4s ease-in-out infinite;
}
.inclusions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin: 50px 0;
}
.inclusion {
  text-align: center; padding: 30px 20px;
  background: rgba(255,255,255,0.03);
  border: var(--border-gold); border-radius: var(--radius-card);
  backdrop-filter: blur(10px);
  transition: transform 0.4s, border-color 0.4s;
}
.inclusion:hover { transform: translateY(-6px); border-color: var(--gold-primary); }
.inclusion__icon { font-size: 2.5rem; margin-bottom: 12px; }
.inclusion__title { font-weight: 700; color: var(--gold-light); margin-bottom: 8px; font-size: 1.05rem; }
.inclusion__desc { font-size: 0.9rem; color: var(--text-muted); }

/* WHY US */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; margin-bottom: 70px;
}
.stat { text-align: center; padding: 30px 20px; }
.stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat__label { color: var(--text-muted); font-size: 0.95rem; margin-top: 8px; }
.benefits {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.benefit {
  padding: 28px; background: var(--black-card);
  border: var(--border-gold); border-radius: var(--radius-card);
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.benefit:hover { transform: translateY(-6px); border-color: var(--gold-primary); box-shadow: var(--shadow-gold); }
.benefit__icon { font-size: 1.8rem; margin-bottom: 12px; }
.benefit__title { font-weight: 700; color: var(--gold-light); margin-bottom: 8px; font-size: 1.1rem; }
.benefit__desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials { background: var(--black-rich); }
.carousel { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.carousel__track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial { flex: 0 0 100%; padding: 0 12px; box-sizing: border-box; }
@media (min-width: 768px) { .testimonial { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial { flex: 0 0 33.333%; } }
.testimonial__card {
  position: relative; padding: 40px 30px 30px;
  background: rgba(255,255,255,0.04);
  border: var(--border-gold); border-radius: var(--radius-card);
  backdrop-filter: blur(20px); height: 100%;
}
.testimonial__card::before {
  content: '“'; position: absolute; top: -10px; right: 20px;
  font-size: 5rem; color: var(--gold-primary);
  opacity: 0.25; font-family: Georgia, serif; line-height: 1;
}
.testimonial__stars { color: var(--gold-primary); margin-bottom: 14px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial__quote { font-style: italic; font-size: 1.02rem; margin-bottom: 18px; line-height: 1.7; }
.testimonial__author { color: var(--gold-light); font-weight: 600; font-size: 0.95rem; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer; }
.dot.active { background: var(--gold-primary); transform: scale(1.3); }
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 50px;
}
.trust-badge {
  padding: 12px 22px; background: rgba(201,168,76,0.06);
  border: var(--border-gold); border-radius: var(--radius-btn);
  color: var(--gold-light); font-size: 0.9rem; font-weight: 600;
}

/* URGENCY */
.urgency {
  background: linear-gradient(135deg, #3a0a0a 0%, var(--black-deep) 100%);
  text-align: center;
}
.countdown { display: inline-flex; gap: 16px; margin: 30px 0 40px; flex-wrap: wrap; justify-content: center; }
.countdown__unit {
  min-width: 90px; padding: 20px 12px;
  background: rgba(0,0,0,0.5); border: 1px solid var(--gold-primary);
  border-radius: var(--radius-card); backdrop-filter: blur(10px);
}
.countdown__value {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.countdown__label { color: var(--text-muted); font-size: 0.8rem; margin-top: 6px; }
.urgency__messages { display: grid; gap: 12px; max-width: 600px; margin: 0 auto 40px; }
.urgency__msg {
  padding: 14px 20px;
  background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.4);
  border-radius: var(--radius-tag); font-weight: 600; font-size: 0.95rem;
}

/* FINAL CTA */
.final-cta {
  position: relative; background: var(--black-deep); text-align: center; overflow: hidden;
}
.plane-fly {
  position: absolute; top: 15%; right: 0;
  font-size: 4rem; pointer-events: none;
  animation: flyPlane 8s ease-in-out forwards;
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.final-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.final-cta__hours { margin-top: 30px; color: var(--text-muted); font-size: 0.95rem; }

/* FORM */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; }
.form-field input, .form-field textarea, .form-field select {
  padding: 12px 14px; background: var(--black-surface);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-tag);
  color: var(--white-soft); outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold-primary); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field.full { grid-column: 1 / -1; }
.form-success {
  background: rgba(37,211,102,0.15); border: 1px solid var(--whatsapp);
  color: #b6f7c8; padding: 16px; border-radius: var(--radius-tag);
  text-align: center; margin-top: 16px; display: none;
}
.form-success.visible { display: block; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1); padding: 18px 0; cursor: pointer;
}
.faq-q { display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-q::after { content: '+'; color: var(--gold-primary); font-size: 1.5rem; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; color: var(--text-muted); margin-top: 0;
  transition: max-height 0.4s var(--ease), margin-top 0.4s;
}
.faq-item.open .faq-a { max-height: 500px; margin-top: 12px; }

/* FOOTER */
.footer {
  background: var(--black-rich); border-top: var(--border-gold);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--gold-light); margin-bottom: 16px; font-size: 1rem; }
.footer__col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; line-height: 1.7; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { color: var(--white-soft); font-size: 0.9rem; transition: color 0.3s; }
.footer__col ul a:hover { color: var(--gold-primary); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: var(--border-gold); font-size: 1.2rem;
  transition: transform 0.3s, background 0.3s;
}
.footer__social a:hover { transform: translateY(-3px); background: var(--gold-soft); }
.footer__bottom {
  border-top: 1px solid rgba(201,168,76,0.1); padding-top: 20px;
  text-align: center; color: var(--text-muted); font-size: 0.85rem;
}

/* FLOATING UI */
.fab-whatsapp {
  position: fixed; bottom: 24px; left: 24px;
  width: 60px; height: 60px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white; z-index: 998;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: transform 0.3s;
}
.fab-whatsapp:hover { transform: scale(1.1); }
.fab-whatsapp::before, .fab-whatsapp::after {
  content:''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp); animation: ringPulse 2s ease-out infinite;
}
.fab-whatsapp::after { animation-delay: 1s; }
.fab-tooltip {
  position: absolute; bottom: 50%; right: 75px; transform: translateY(50%);
  background: var(--black-card); color: var(--gold-light);
  padding: 8px 14px; border-radius: var(--radius-tag);
  font-size: 0.85rem; white-space: nowrap;
  border: var(--border-gold); opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; }
.fab-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; background: var(--gold-primary);
  color: var(--black-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; z-index: 998;
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.fab-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-top:hover { transform: translateY(-3px); }

/* TOAST */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(150%);
  background: var(--black-card); border: var(--border-gold); color: var(--gold-light);
  padding: 14px 24px; border-radius: var(--radius-btn);
  z-index: 1300; box-shadow: var(--shadow-gold);
  font-weight: 600; font-size: 0.9rem;
  transition: transform 0.4s var(--ease);
}
.toast.visible { transform: translateX(-50%) translateY(0); }

/* EXIT-INTENT POPUP */
.exit-popup { position: fixed; inset: 0; z-index: 1400; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 16px; }
  .cta-primary, .cta-secondary { padding: 14px 28px; font-size: 1rem; }
  .fab-whatsapp { width: 56px; height: 56px; bottom: 16px; left: 16px; }
  .fab-top { bottom: 16px; right: 16px; }
  .countdown__unit { min-width: 70px; padding: 14px 8px; }
  .filters { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; }
  .filter-pill { flex-shrink: 0; }
  .filter-row { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .destinations { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dest-card__title { font-size: 1rem; }
  .dest-card__tagline { font-size: 0.75rem; }
  .dest-card__cta { font-size: 0.72rem; padding: 6px 10px; }
  .dest-card__meta { font-size: 0.7rem; }
  .navbar__logo { font-size: 0.95rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CINEMATIC TAKEOFF SCENE — hero background
============================================================ */
.takeoff {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden; isolation: isolate;
  perspective: 900px;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(201,168,76,0.12), transparent 55%),
    linear-gradient(180deg, #050610 0%, #0a1326 35%, #1a1a2a 55%, #2a1810 75%, #0a0808 100%);
  animation: skyShift 18s ease-in-out infinite alternate;
}
@keyframes skyShift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(-12deg) brightness(1.05); }
  100% { filter: hue-rotate(8deg) brightness(0.95); }
}

/* Stars layer */
.takeoff__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 12%, #fff, transparent),
    radial-gradient(1px 1px at 22% 28%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 35% 8%, var(--gold-light), transparent),
    radial-gradient(1px 1px at 47% 22%, #fff, transparent),
    radial-gradient(1px 1px at 58% 15%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 68% 30%, #fff, transparent),
    radial-gradient(1px 1px at 78% 10%, var(--gold-light), transparent),
    radial-gradient(1px 1px at 88% 25%, #fff, transparent),
    radial-gradient(1px 1px at 14% 5%, #fff, transparent),
    radial-gradient(1px 1px at 92% 18%, var(--gold-light), transparent);
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100%{opacity:0.4} 50%{opacity:0.9} }

/* Sun / horizon glow */
.takeoff__sun {
  position: absolute; left: 50%; bottom: 32%;
  width: 380px; height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232,201,106,0.6) 0%, rgba(201,168,76,0.25) 35%, transparent 70%);
  filter: blur(20px);
  animation: sunPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sunPulse {
  0%,100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

/* Distant city silhouette */
.takeoff__city {
  position: absolute; left: 0; right: 0; bottom: 30%;
  height: 60px;
  background:
    linear-gradient(to top, #000 30%, transparent 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 60' preserveAspectRatio='none'><path fill='%23000' d='M0,60 L0,40 L40,40 L40,25 L80,25 L80,42 L120,42 L120,15 L160,15 L160,30 L200,30 L200,8 L220,8 L220,28 L260,28 L260,38 L320,38 L320,22 L360,22 L360,5 L380,5 L380,32 L420,32 L420,18 L470,18 L470,28 L520,28 L520,12 L560,12 L560,35 L620,35 L620,25 L680,25 L680,18 L730,18 L730,30 L780,30 L780,5 L800,5 L800,28 L860,28 L860,38 L920,38 L920,15 L970,15 L970,30 L1020,30 L1020,20 L1080,20 L1080,32 L1140,32 L1140,12 L1180,12 L1180,28 L1240,28 L1240,40 L1300,40 L1300,22 L1360,22 L1360,8 L1380,8 L1380,30 L1440,30 L1440,38 L1500,38 L1500,25 L1560,25 L1560,40 L1600,40 L1600,60 Z'/></svg>");
  background-size: 100% 100%;
  opacity: 0.7;
  filter: drop-shadow(0 -2px 6px rgba(201,168,76,0.3));
}

/* RUNWAY (perspective floor) */
.takeoff__runway {
  position: absolute; left: 50%; bottom: 0;
  width: 220%; height: 70%;
  transform: translateX(-50%) rotateX(72deg);
  transform-origin: 50% 100%;
  background:
    linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,0.9) 80px 130px),
    linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  background-size: 100% 100%, 210px 8px, 100% 100%;
  background-position: 0 0, 50% 50%, 0 0;
  background-repeat: no-repeat, repeat-x, no-repeat;
  animation: dashesRun 0.6s linear infinite;
  box-shadow: inset 0 0 200px rgba(0,0,0,0.9);
}
@keyframes dashesRun {
  from { background-position: 0 0, 0 50%, 0 0; }
  to   { background-position: 0 0, -210px 50%, 0 0; }
}

/* Runway edge lights (left + right rows) */
.takeoff__lights {
  position: absolute; left: 50%; bottom: 0;
  width: 220%; height: 70%;
  transform: translateX(-50%) rotateX(72deg);
  transform-origin: 50% 100%;
  pointer-events: none;
}
.takeoff__lights::before, .takeoff__lights::after {
  content:''; position: absolute; top: 0; bottom: 0; width: 6px;
  background:
    repeating-linear-gradient(to bottom,
      var(--gold-primary) 0 6px,
      transparent 6px 70px);
  filter: drop-shadow(0 0 8px var(--gold-glow)) drop-shadow(0 0 16px var(--gold-glow));
  animation: dashesRun 0.6s linear infinite;
}
.takeoff__lights::before { left: 32%; }
.takeoff__lights::after  { right: 32%; }

/* Center bright glow on runway start (afterburner trail) */
.takeoff__afterglow {
  position: absolute; left: 50%; bottom: 0;
  width: 240px; height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%,
    rgba(255,140,0,0.6) 0%,
    rgba(255,80,0,0.35) 20%,
    rgba(201,168,76,0.2) 45%,
    transparent 75%);
  filter: blur(8px);
  animation: afterFlicker 0.12s steps(2) infinite;
  pointer-events: none;
}
@keyframes afterFlicker {
  0%,100% { opacity: 0.85; transform: translateX(-50%) scaleY(1); }
  50%     { opacity: 1;    transform: translateX(-50%) scaleY(1.06); }
}

/* CLOUDS streaking past */
.takeoff__clouds {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cloud {
  position: absolute; left: -20%;
  width: 280px; height: 90px;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 65% 60%, rgba(255,255,255,0.22) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
  filter: blur(6px);
  animation: cloudSweep linear infinite;
  border-radius: 50%;
}
.cloud:nth-child(1){ top: 10%; animation-duration: 9s;  animation-delay: 0s;   transform: scale(0.9); }
.cloud:nth-child(2){ top: 22%; animation-duration: 7s;  animation-delay: -2s;  transform: scale(1.4); opacity: 0.9; }
.cloud:nth-child(3){ top: 35%; animation-duration: 5s;  animation-delay: -1s;  transform: scale(0.7); opacity: 0.8; }
.cloud:nth-child(4){ top: 48%; animation-duration: 4s;  animation-delay: -3s;  transform: scale(1.1); }
.cloud:nth-child(5){ top: 60%; animation-duration: 3s;  animation-delay: -1.5s; transform: scale(1.6); opacity: 0.7; }
.cloud:nth-child(6){ top: 5%;  animation-duration: 11s; animation-delay: -5s;  transform: scale(0.6); opacity: 0.6; }
@keyframes cloudSweep {
  from { transform: translateX(0) scale(var(--s,1)); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  to   { transform: translateX(140vw) scale(var(--s,1)); opacity: 0; }
}

/* Light streaks (speed lines) */
.takeoff__streaks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.streak {
  position: absolute; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  filter: blur(1px);
  opacity: 0.7;
  animation: streakFly linear infinite;
}
@keyframes streakFly {
  from { transform: translateX(-200px) scaleX(0.4); opacity: 0; }
  20%  { opacity: 1; }
  to   { transform: translateX(110vw) scaleX(1); opacity: 0; }
}

/* PLANE — animated SVG container */
.takeoff__plane {
  position: absolute; left: 50%; bottom: 18%;
  width: 200px; height: 200px;
  transform: translate(-50%, 0);
  animation: planeTakeoff 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.7))
          drop-shadow(0 0 25px rgba(201,168,76,0.35));
  z-index: 1;
}
@keyframes planeTakeoff {
  /* 0-15% sit on runway, jitter */
  0%, 4%   { transform: translate(-50%, 0)    rotate(0deg)   scale(0.55); }
  /* 5-20%: taxi + accelerate */
  10%      { transform: translate(-50%, 0)    rotate(0deg)   scale(0.6); }
  20%      { transform: translate(-50%, -10px)rotate(-2deg)  scale(0.7); }
  /* 30%: rotation/liftoff */
  35%      { transform: translate(-50%, -80px) rotate(-15deg) scale(0.8); }
  /* 50%: climbing */
  55%      { transform: translate(-48%, -180px) rotate(-22deg) scale(0.65); }
  /* 75%: high in sky, banking right (curve away) */
  75%      { transform: translate(-30%, -280px) rotate(-18deg) scale(0.45); }
  /* 90%: shrink toward horizon */
  90%      { transform: translate(20%, -340px)  rotate(-12deg) scale(0.25); opacity: 0.7; }
  /* 100%: fade out */
  100%     { transform: translate(60%, -360px)  rotate(-10deg) scale(0.1);  opacity: 0; }
}
.takeoff__plane svg { width: 100%; height: 100%; display: block; }

/* Engine flame */
.plane-flame {
  transform-origin: 100% 50%;
  animation: flameLick 0.08s steps(2) infinite;
}
@keyframes flameLick {
  0%,100% { transform: scaleX(1) scaleY(1); opacity: 0.95; }
  50%     { transform: scaleX(1.25) scaleY(0.85); opacity: 1; }
}

/* Engine smoke trail */
.takeoff__trail {
  position: absolute; left: 50%; bottom: 18%;
  width: 4px; height: 4px;
  transform: translate(-50%, 0);
  pointer-events: none;
  animation: planeTakeoff 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.takeoff__trail::before {
  content:''; position: absolute; right: 100%; top: 50%;
  width: 320px; height: 4px;
  background: linear-gradient(to left, rgba(255,255,255,0.5), rgba(201,168,76,0.3) 40%, transparent 100%);
  filter: blur(2.5px);
  transform: translateY(-50%);
}

/* Vignette */
.takeoff__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 30%, rgba(0,0,0,0.85) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .takeoff__runway, .takeoff__lights::before, .takeoff__lights::after,
  .takeoff__plane, .takeoff__trail, .cloud, .streak, .plane-flame,
  .takeoff__afterglow, .takeoff__sun, .takeoff__stars { animation: none !important; }
}

@media (max-width: 768px) {
  .takeoff__plane { width: 140px; height: 140px; }
  .takeoff__sun { width: 240px; height: 240px; }
}

/* ============================================================
   MOBILE-FIRST POLISH (touch targets, fluid type, overflow fixes)
============================================================ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { overflow-x: clip; }
img, video, svg, iframe { max-width: 100%; height: auto; }

/* Ensure touch targets are at least 44x44 (WCAG 2.5.5) */
.cta-primary, .cta-secondary, .navbar__cta, .icon-btn,
.filter-pill, .dest-card__cta, .fab-whatsapp, .fab-top,
.dest-card__wishlist, .lightbox__close, .lightbox__nav, .modal__close,
.dot, button, [role="button"], input[type="submit"], input[type="button"] {
  min-height: 44px;
}
.dot { min-width: 18px; min-height: 18px; padding: 4px; }
.dest-card__wishlist { min-width: 44px; min-height: 44px; }
input, textarea, select { font-size: 16px; } /* prevent iOS zoom on focus */

/* Tablet ≤900px */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 18px; }
  .hero__content { padding: 40px 18px 30px; }
  .filter-row { padding: 14px 14px; gap: 10px; }
  .filter-row__group { gap: 8px; }
  .detail-grid { gap: 24px; }
  .sticky-cta { position: static; }
}

/* Mobile ≤768px — tighten everything */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  h1 { letter-spacing: 0; }
  .hero { min-height: 92dvh; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 18px; }
  .hero__typewriter { font-size: 0.95rem; min-height: 2.2em; margin-bottom: 22px; }
  .hero__badge { font-size: 0.78rem; padding: 8px 16px; margin-bottom: 20px; }
  .hero__usps { gap: 8px; margin-bottom: 26px; }
  .usp-pill { font-size: 0.75rem; padding: 8px 14px; }
  .hero__dots { bottom: 80px; }

  /* Takeoff scene scaled down for mobile */
  .takeoff__sun { width: 220px; height: 220px; bottom: 35%; }
  .takeoff__runway { width: 260%; height: 60%; }
  .takeoff__lights { width: 260%; height: 60%; }
  .takeoff__lights::before { left: 28%; }
  .takeoff__lights::after  { right: 28%; }
  .takeoff__afterglow { width: 160px; height: 220px; }

  .page-hero { padding: calc(var(--nav-h) + 50px) 0 50px; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .page-hero p { font-size: 0.95rem; padding: 0 8px; }

  .cta-primary, .cta-secondary { padding: 14px 24px; font-size: 0.95rem; width: 100%; justify-content: center; }
  .final-cta__buttons, .modal__buttons { flex-direction: column; }
  .final-cta__buttons a, .modal__buttons a, .modal__buttons button { width: 100%; justify-content: center; }

  .destinations { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
  .destinations.list-view .dest-card { flex-direction: column; height: auto; }
  .destinations.list-view .dest-card__bg-img { width: 100%; height: 200px; position: relative; }
  .destinations.list-view .dest-card__overlay { display: block; }

  .filter-row { flex-direction: column; align-items: stretch; }
  .filter-row__group { justify-content: space-between; }
  .filters { gap: 6px; padding: 0 4px; }
  .filter-pill { font-size: 0.78rem; padding: 8px 14px; }
  .searchbar { margin-bottom: 22px; }

  /* Modal full-screen on mobile */
  .modal-backdrop { padding: 0; align-items: stretch; }
  .modal { max-height: 100dvh; border-radius: 0; height: 100dvh; max-width: 100%; }
  .modal__img { height: 220px; border-radius: 0; }
  .modal__body { padding: 20px 18px; }
  .modal__close { top: 12px; left: 12px; width: 44px; height: 44px; }

  /* Compare tray scrollable */
  .compare-tray { left: 12px; right: 12px; transform: translateY(150%); max-width: none; flex-wrap: wrap; justify-content: center; }
  .compare-tray.visible { transform: translateY(0); }

  /* Sections */
  section { padding-left: 0; padding-right: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat { padding: 18px 10px; }
  .stat__number { font-size: clamp(2rem, 9vw, 2.6rem); }
  .benefits { grid-template-columns: 1fr; }
  .benefit { padding: 22px; }
  .inclusions { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .inclusion { padding: 22px 14px; }

  /* Testimonials wider on tap */
  .testimonial__card { padding: 30px 22px 22px; }

  /* Countdown */
  .countdown__unit { min-width: 70px; padding: 14px 8px; }
  .countdown__value { font-size: 1.8rem; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }

  /* Detail page */
  .detail-card { padding: 22px 18px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery img { height: 110px; }
  .detail-hero { min-height: auto; padding: calc(var(--nav-h) + 40px) 0 40px; }
  .detail-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Floating */
  .fab-whatsapp { width: 56px; height: 56px; bottom: 18px; left: 18px; font-size: 1.5rem; }
  .fab-top { bottom: 18px; right: 18px; }

  /* Footer */
  .footer { padding: 40px 0 20px; }
  .footer__grid { gap: 28px; }
}

/* Phone ≤480px */
@media (max-width: 480px) {
  .navbar__logo { font-size: 0.88rem; }
  .navbar__right { gap: 6px; }
  #currencySelect { display: none; }
  .icon-btn { width: 40px; height: 40px; font-size: 1rem; }
  .destinations { grid-template-columns: 1fr; }
  .dest-card { aspect-ratio: 16/12; }
  .stats { grid-template-columns: 1fr 1fr; }
  .inclusions { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.78rem; padding: 8px 14px; }
  .breadcrumbs { font-size: 0.78rem; flex-wrap: wrap; }
  .countdown { gap: 8px; }
  .countdown__unit { min-width: 64px; padding: 12px 6px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 8px 6px; }
}

/* Landscape phone */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: 110dvh; }
}

/* Safe area (iPhone notch) */
@supports (padding: env(safe-area-inset-bottom)) {
  .fab-whatsapp { bottom: calc(18px + env(safe-area-inset-bottom)); left: calc(18px + env(safe-area-inset-left)); }
  .fab-top { bottom: calc(18px + env(safe-area-inset-bottom)); right: calc(18px + env(safe-area-inset-right)); }
  .navbar__inner { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
}

/* Focus visibility (a11y + SEO/UX) */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Visually hidden util (for SEO H1/labels) */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; top: -80px; right: 12px; z-index: 9999;
  padding: 10px 18px; background: var(--gold-primary); color: var(--black-deep);
  font-weight: 700; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ============ LOGO IN HEADER ============ */
.navbar__logo-img {
  height: 52px; width: auto; display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(212,175,55,0.35));
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 4px 16px rgba(212,175,55,0.6));
}
@media (max-width: 900px) {
  .navbar__logo-img { height: 44px; }
}
@media (max-width: 480px) {
  .navbar__logo-img { height: 40px; }
}

/* ============ WHATSAPP REAL ICON ============ */
.wa-icon {
  display: inline-block;
  width: 1.2em; height: 1.2em;
  vertical-align: -0.22em;
  background-color: currentColor;
  -webkit-mask: var(--wa-mask) center / contain no-repeat;
          mask: var(--wa-mask) center / contain no-repeat;
  flex-shrink: 0;
}
:root {
  --wa-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16.003 0h-.006C7.17 0 0 7.171 0 16c0 3.504 1.13 6.752 3.052 9.388L1.053 31.36l6.176-1.974A15.918 15.918 0 0 0 16.003 32C24.836 32 32 24.827 32 16S24.836 0 16.003 0zm9.31 22.594c-.386 1.09-1.918 1.992-3.14 2.257-.836.178-1.928.32-5.604-1.204-4.7-1.948-7.726-6.725-7.962-7.035-.226-.31-1.898-2.527-1.898-4.82s1.166-3.41 1.636-3.89c.386-.394.832-.572 1.252-.572.302 0 .572.014.814.026.47.02.706.048 1.018.793.386.93 1.328 3.224 1.44 3.46.116.236.232.555.072.866-.15.32-.282.46-.518.736-.236.276-.46.486-.696.782-.216.258-.46.535-.188.998.272.452 1.21 1.992 2.598 3.226 1.79 1.59 3.244 2.098 3.756 2.31.382.158.836.122 1.116-.176.354-.386.792-1.024 1.236-1.652.314-.45.712-.504 1.13-.346.426.146 2.71 1.282 3.18 1.516.47.234.78.346.892.542.108.198.108 1.13-.278 2.22z'/></svg>");
}
/* WhatsApp button uses brand green */
.navbar__cta .wa-icon,
.fab-whatsapp .wa-icon { color: #fff; }
.cta-primary { background: #25D366; }
.cta-primary:hover { background: #1da851; }
.cta-primary .wa-icon { color: #fff; }

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}
.blog-card {
  background: linear-gradient(180deg, rgba(24,21,16,0.7), rgba(15,13,10,0.85));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.15);
}
.blog-card__img-link {
  position: relative; display: block; aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__img-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img-link img { transform: scale(1.07); }
.blog-card__cat {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  border: 1px solid rgba(212,175,55,0.4);
}
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.blog-card__meta { display: flex; gap: 10px; align-items: center; font-size: 0.82rem; color: var(--white-soft); }
.blog-card__title { font-size: 1.2rem; line-height: 1.5; margin: 0; }
.blog-card__title a { color: white; text-decoration: none; transition: color 0.2s; }
.blog-card__title a:hover { color: var(--gold-light); }
.blog-card__excerpt { color: var(--white-soft); font-size: 0.92rem; line-height: 1.75; flex: 1; }
.blog-card__more { color: var(--gold-light); font-weight: 700; text-decoration: none; margin-top: auto; align-self: flex-start; transition: gap 0.2s; }
.blog-card__more:hover { letter-spacing: 0.5px; }

/* ============ POST PAGE ============ */
.post-hero {
  position: relative;
  background: #0a0a0a center/cover no-repeat;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  color: white;
}
.post-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.4;
  margin: 18px 0 22px;
  max-width: 900px;
}
.post-hero__cat {
  display: inline-block; background: var(--gold-primary); color: #1a1205;
  padding: 6px 16px; border-radius: 999px; font-weight: 800; font-size: 0.85rem;
  margin-top: 16px;
}
.post-hero__meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--white-soft); font-size: 0.92rem; }

.post-body { padding: 60px 24px; max-width: 820px; }
.post-content { font-size: 1.08rem; line-height: 1.95; color: #e8e8e8; }
.post-content h2 {
  color: var(--gold-light); font-size: 1.55rem;
  margin: 38px 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.post-content h3 { color: var(--gold-light); font-size: 1.25rem; margin: 28px 0 12px; }
.post-content p { margin: 14px 0; }
.post-content ul, .post-content ol { margin: 14px 0; padding-right: 24px; }
.post-content li { margin: 8px 0; }
.post-content strong { color: var(--gold-light); }
.post-content a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0 24px; }
.post-tag {
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-light); padding: 6px 14px; border-radius: 999px;
  font-size: 0.84rem; text-decoration: none; transition: all 0.2s;
}
.post-tag:hover { background: rgba(212,175,55,0.2); }

.post-share {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding: 20px; border-radius: 14px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  margin: 24px 0;
}
.post-share span:first-child { font-weight: 700; color: var(--gold-light); margin-left: 8px; }
.post-share a, .post-share button {
  background: rgba(0,0,0,0.4); color: white; border: 1px solid rgba(212,175,55,0.25);
  padding: 8px 14px; border-radius: 10px; font-size: 0.88rem; text-decoration: none;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.post-share a:hover, .post-share button:hover { background: rgba(212,175,55,0.15); border-color: var(--gold-primary); }

.post-cta {
  text-align: center; padding: 40px 24px; margin: 40px 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.3); border-radius: 18px;
}
.post-cta h3 { color: var(--gold-light); margin-bottom: 10px; }
.post-cta p { color: var(--white-soft); margin-bottom: 22px; }

.post-related { margin-top: 60px; }
.post-related h2 { color: var(--gold-light); margin-bottom: 24px; }

.post-faq { margin-top: 60px; }
.post-faq h2 { color: var(--gold-light); margin-bottom: 20px; }
.faq-item {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(212,175,55,0.18);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 10px;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; color: white;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold-light); font-size: 1.4rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--white-soft); margin-top: 12px; line-height: 1.85; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .post-body { padding: 40px 18px; }
  .post-content { font-size: 1rem; line-height: 1.9; }
  .post-content h2 { font-size: 1.3rem; }
  .post-share { padding: 16px; }
  .post-share a, .post-share button { font-size: 0.82rem; padding: 8px 12px; }
}
