/* =====================================================
   WINGSEAST v2 — MODERN LIGHT DESIGN SYSTEM
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors — light teal palette */
  --sky: #38bdf8;
  --sky-dark: #0ea5e9;
  --sky-darker: #0284c7;
  --sky-light: #bae6fd;
  --sky-lighter: #f0f9ff;
  --purple: #7c3aed;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --emerald: #10b981;
  --rose: #f43f5e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  /* Semantic */
  --bg: var(--white);
  --bg2: var(--sky-lighter);
  --bg3: #e0f2fe;
  --text: var(--slate-900);
  --text2: var(--slate-600);
  --text3: var(--slate-400);
  --border: var(--slate-200);
  --border2: var(--slate-300);
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 4px 16px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.05);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.05);
  --shadow-lg: 0 20px 48px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-xl: 0 32px 64px rgba(15,23,42,0.16);
  /* Radius */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.25s var(--ease);
  --t-slow: all 0.4s var(--ease);
  /* Fonts */
  --font: 'Heebo', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-ltr { font-family: 'Inter', 'Heebo', sans-serif; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ===== UTILS ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -999px; left: 20px; z-index: 9999;
  background: var(--sky); color: white; padding: 8px 16px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.9rem;
}
.skip-link:focus { top: 8px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 8px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  color: var(--white); transition: var(--t); flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; transition: var(--t);
  box-shadow: 0 4px 16px rgba(14,165,233,0.45);
  flex-shrink: 0;
}
.logo-icon i { transform: rotate(-20deg); display: block; }
.logo:hover .logo-icon { transform: scale(1.08); box-shadow: 0 6px 22px rgba(14,165,233,0.6); }
.logo:hover .logo-icon i { transform: rotate(-20deg) translateX(-2px); }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-name { font-size: 1.35rem; font-weight: 900; color: white; letter-spacing: -0.5px; }
.logo-name em { font-style: normal; color: #bae6fd; }
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.55); font-weight: 400; letter-spacing: 0.4px; }
.navbar.scrolled .logo-name { color: var(--slate-900); }
.navbar.scrolled .logo-name em { color: var(--sky-dark); }
.navbar.scrolled .logo-sub { color: var(--text3); }

.nav-links {
  display: flex; gap: 4px; margin-inline-start: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 500;
  padding: 7px 12px; border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links a { color: var(--text2); }
.navbar.scrolled .nav-links a:hover { color: var(--sky); background: var(--sky-lighter); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 16px; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: var(--t);
}
.navbar.scrolled .lang-btn {
  background: var(--slate-100); border-color: var(--border);
  color: var(--text);
}
.lang-btn:hover { background: rgba(255,255,255,0.25); }
.navbar.scrolled .lang-btn:hover { background: var(--sky-lighter); border-color: var(--sky); }
.lang-btn i { font-size: 0.7rem; transition: transform 0.2s; }
.lang-switcher.open .lang-btn i { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  background: white; border-radius: var(--r); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); min-width: 160px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--t); z-index: 100;
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--t); color: var(--text);
  border-bottom: 1px solid var(--slate-50);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover, .lang-option.active { background: var(--sky-lighter); color: var(--sky-dark); }
.lang-option.active { font-weight: 700; }
.lang-flag { font-size: 1.1rem; }

.nav-cta {
  background: var(--sky-dark); color: white;
  padding: 9px 20px; border-radius: var(--r-full);
  font-size: 0.88rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  box-shadow: 0 2px 12px rgba(14,165,233,0.28);
}
.nav-cta:hover { background: var(--sky-darker); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(14,165,233,0.4); }

.hamburger {
  display: none; padding: 8px; border-radius: var(--r-sm);
  color: white; font-size: 1.2rem; background: rgba(255,255,255,0.15);
  transition: var(--t);
}
.navbar.scrolled .hamburger { color: var(--text); background: var(--slate-100); }
.hamburger:hover { background: rgba(255,255,255,0.25); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
}
.mobile-overlay {
  position: absolute; inset: 0; background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease;
}
.mobile-panel {
  position: absolute; top: 0; inset-inline-end: -320px; width: 300px; height: 100%;
  background: white; box-shadow: var(--shadow-xl); padding: 80px 24px 40px;
  transition: inset-inline-end 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-overlay { opacity: 1; }
.mobile-menu.open .mobile-panel { inset-inline-end: 0; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--r);
  color: var(--text); font-size: 1rem; font-weight: 500; transition: var(--t);
}
.mobile-links a:hover { background: var(--sky-lighter); color: var(--sky); }
.mobile-links a i { width: 20px; color: var(--sky); }
.mobile-close {
  position: absolute; top: 20px; inset-inline-end: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--slate-100); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--t);
}
.mobile-close:hover { background: var(--rose); color: white; }
.mobile-lang-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.mobile-lang-section h6 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 12px; }
.mobile-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-lang-btn {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border-radius: var(--r-sm); border: 1.5px solid var(--border);
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  transition: var(--t); cursor: pointer; background: white;
}
.mobile-lang-btn:hover, .mobile-lang-btn.active {
  border-color: var(--sky); background: var(--sky-lighter); color: var(--sky-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(2,8,23,0.08) 0%,
    rgba(2,8,23,0.18) 40%,
    rgba(2,8,23,0.52) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding-top: 70px; padding-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.2); border: 1px solid rgba(14,165,233,0.5);
  color: #7dd3fc; padding: 6px 16px; border-radius: var(--r-full);
  font-size: 0.82rem; font-weight: 700; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--amber); }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 900;
  color: white; line-height: 1.1; margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-highlight {
  background: linear-gradient(90deg, var(--amber), #f97316);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.82);
  margin-bottom: 18px; font-weight: 400; max-width: 540px;
}

/* ===== SEARCH SECTION ===== */
.search-section {
  background: white;
  padding: 28px 0 32px;
  box-shadow: 0 4px 24px rgba(14,165,233,0.10);
  border-bottom: 1px solid var(--sky-light);
  position: relative; z-index: 10;
}
.search-section-title {
  text-align: center;
  font-size: 0.8rem; font-weight: 700;
  color: var(--sky-dark); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.search-section-title::before,
.search-section-title::after {
  content: ''; flex: 1; max-width: 80px;
  height: 1px; background: var(--sky-light);
}

/* SEARCH WIDGET */
.search-widget {
  background: white; border-radius: var(--r-lg);
  box-shadow: 0 2px 20px rgba(14,165,233,0.12); overflow: hidden;
  max-width: 900px; margin: 0 auto;
  border: 1.5px solid var(--sky-light);
}
.search-tabs {
  display: flex; background: rgba(248,250,252,0.95);
  border-bottom: 1px solid var(--border); overflow-x: auto;
  scrollbar-width: none;
}
.search-tabs::-webkit-scrollbar { display: none; }
.s-tab {
  flex: 1; min-width: 70px; padding: 8px 4px;
  display: flex; align-items: center; justify-content: center;
  gap: 4px; font-size: 0.73rem; font-weight: 600;
  color: var(--text2); cursor: pointer;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: var(--t); background: none;
}
.s-tab i { font-size: 0.82rem; color: var(--sky-dark); }
.s-tab.active { color: var(--sky-dark); border-bottom-color: var(--sky-dark); background: white; }
.s-tab:hover:not(.active) { color: var(--sky-dark); background: var(--sky-lighter); }

.search-body { padding: 10px 12px 12px; }
.search-panel { display: none; }
.search-panel.active { display: block; }

.search-row {
  display: flex; gap: 8px; align-items: flex-end; flex-wrap: wrap;
}
.s-field {
  display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 110px;
}
.s-field label {
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.4px; color: var(--text3);
  display: flex; align-items: center; gap: 4px;
}
.s-field label i { color: var(--sky-dark); font-size: 0.7rem; }
.s-field input, .s-field select {
  height: 36px; padding: 0 9px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--slate-50);
  font-size: 0.83rem; color: var(--text); transition: var(--t);
  direction: inherit;
}
.s-field input:focus, .s-field select:focus {
  outline: none; border-color: var(--sky-dark);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.10);
  background: white;
}
.s-field input::placeholder { color: var(--text3); font-size: 0.82rem; }

.swap-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sky-lighter); border: 1.5px solid var(--sky-dark);
  color: var(--sky-dark); display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; flex-shrink: 0; transition: var(--t);
  align-self: flex-end; margin-bottom: 3px;
}
.swap-btn:hover { background: var(--sky-dark); color: white; }

.btn-search {
  height: 36px; padding: 0 18px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--sky-dark), var(--sky-darker));
  color: white; font-size: 0.88rem; font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap; transition: var(--t);
  box-shadow: 0 3px 12px rgba(14,165,233,0.35);
  align-self: flex-end;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(14,165,233,0.45); }

/* HERO STATS */
.hero-stats {
  display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap;
}
.h-stat { color: white; }
.h-stat strong {
  display: block; font-size: 1.35rem; font-weight: 900; color: var(--amber);
}
.h-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 1rem; z-index: 2;
  animation: bounce 2.5s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* Slide progress dots */
.hero-dots {
  position: absolute; bottom: 60px; inset-inline-start: 50%;
  transform: translateX(-50%); display: flex; gap: 7px; z-index: 2;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--t);
  border: none; padding: 0;
}
.hero-dot.active { background: white; width: 22px; border-radius: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--sky-lighter); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 18px; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--sky-lighter), #e0f2fe);
  color: var(--sky-darker); border: 1px solid var(--sky-light);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 14px; box-shadow: 0 2px 8px rgba(14,165,233,0.1);
}
.section-badge.amber { background: linear-gradient(135deg,#fffbeb,#fef3c7); color: #92400e; border-color: #fde68a; }
.section-badge.purple { background: linear-gradient(135deg,#f5f3ff,#ede9fe); color: #6d28d9; border-color: #ddd6fe; }
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900;
  color: var(--slate-900); line-height: 1.12; margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-header h2 span { color: var(--sky-dark); }
.section-header p { color: var(--text2); font-size: 1.02rem; max-width: 520px; margin: 0 auto; }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; border-radius: var(--r-full);
  border: 1.5px solid var(--border); background: white;
  font-size: 0.88rem; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: var(--t);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--sky); border-color: var(--sky); color: white;
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}

/* ===== DESTINATIONS GRID ===== */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 16px;
}
.dest-card {
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  position: relative; transition: var(--t-slow);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card.featured { grid-column: span 1; grid-row: span 2; }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.dest-tag {
  position: absolute; top: 12px; inset-inline-start: 12px;
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
}
.dest-tag.hot { background: var(--rose); color: white; }
.dest-tag.deal { background: var(--emerald); color: white; }
.dest-tag.new { background: var(--sky); color: white; }
.dest-tag.shop { background: var(--purple); color: white; }
.dest-tag.default { background: var(--amber); color: var(--slate-900); }

.dest-info h3 { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 3px; }
.dest-info .dest-loc { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.dest-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dest-price {
  display: flex; align-items: baseline; gap: 4px; color: white;
}
.dest-price .from { font-size: 0.72rem; color: rgba(255,255,255,0.65); }
.dest-price .amount { font-size: 1.1rem; font-weight: 900; color: var(--amber); }
.dest-book-btn {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
  color: white; padding: 5px 14px; border-radius: var(--r-full);
  font-size: 0.78rem; font-weight: 700; transition: var(--t);
  backdrop-filter: blur(8px);
}
.dest-book-btn:hover { background: var(--sky); border-color: var(--sky); color: var(--slate-900); }

.dest-card.hidden { display: none !important; }
.dest-guide-btn {
  display: inline-block; margin-top: 8px;
  color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 700;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: var(--t);
}
.dest-guide-btn:hover { color: var(--sky-light); border-color: var(--sky-light); }

.show-more-wrap { text-align: center; margin-top: 40px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; border-radius: var(--r-full);
  border: 2px solid var(--sky-dark); color: var(--sky-dark);
  font-size: 0.95rem; font-weight: 700; transition: var(--t);
  background: white;
}
.btn-outline:hover { background: var(--sky-dark); color: white; box-shadow: 0 4px 20px rgba(14,165,233,0.28); }

/* ===== DEALS ===== */
.deals-section { background: var(--slate-900); }
.deals-section .section-badge { background: rgba(245,158,11,0.15); color: var(--amber); }
.deals-section .section-header h2 { color: white; }
.deals-section .section-header p { color: var(--slate-400); }

.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.deal-card {
  background: var(--slate-800); border: 1px solid var(--slate-700);
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer; position: relative;
  transition: var(--t-slow);
}
.deal-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: 0 20px 48px rgba(14,165,233,0.15); }
.deal-ribbon {
  position: absolute; top: 14px; inset-inline-end: -2px; z-index: 2;
  background: var(--rose); color: white; font-size: 0.88rem; font-weight: 800;
  padding: 5px 14px; clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.deal-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.deal-card:hover .deal-img img { transform: scale(1.04); }
.deal-img-badge {
  position: absolute; bottom: 10px; inset-inline-start: 12px;
  background: rgba(15,23,42,0.75); backdrop-filter: blur(8px);
  color: var(--amber); font-size: 0.78rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full);
  display: flex; align-items: center; gap: 5px;
}
.deal-body { padding: 18px; }
.deal-body h4 { font-size: 1.05rem; font-weight: 800; color: white; margin-bottom: 5px; }
.deal-body > p { font-size: 0.82rem; color: var(--slate-400); margin-bottom: 14px; }

.countdown { display: flex; gap: 8px; margin-bottom: 14px; }
.cd-item {
  flex: 1; text-align: center; background: var(--slate-700);
  border-radius: var(--r-sm); padding: 8px 4px;
}
.cd-item b { display: block; font-size: 1.1rem; font-weight: 900; color: var(--amber); }
.cd-item span { font-size: 0.65rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.5px; }

.deal-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.deal-old { font-size: 0.88rem; color: var(--slate-500); text-decoration: line-through; }
.deal-new { font-size: 1.4rem; font-weight: 900; color: var(--amber); }
.deal-saving { background: rgba(16,185,129,0.15); color: var(--emerald); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); }

.btn-deal {
  width: 100%; height: 44px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--slate-900); font-weight: 800; font-size: 0.95rem;
  transition: var(--t);
}
.btn-deal:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.4); }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px;
}
.feat-card {
  background: white; border-radius: var(--r-lg); padding: 24px 18px;
  text-align: center; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--t-slow);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sky-light); }
.feat-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: var(--sky-lighter); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px; font-size: 1.3rem; color: var(--sky);
  transition: var(--t);
}
.feat-card:hover .feat-icon { background: var(--sky-dark); color: white; }
.feat-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.feat-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.55; }

/* ===== HOTELS ===== */
.hotels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.hotel-card {
  background: white; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  cursor: pointer; transition: var(--t-slow); position: relative;
}
.hotel-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  box-shadow: 0 0 0 2px var(--sky) inset;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hotel-card:hover::after { opacity: 1; }
.hotel-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.hotel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hotel-card:hover .hotel-img img { transform: scale(1.05); }
.hotel-stars {
  position: absolute; bottom: 10px; inset-inline-end: 10px;
  background: rgba(15,23,42,0.65); backdrop-filter: blur(6px);
  color: var(--amber); font-size: 0.72rem; padding: 3px 10px;
  border-radius: var(--r-full); font-weight: 700;
}
.hotel-badge {
  position: absolute; top: 10px; inset-inline-start: 10px;
  background: var(--rose); color: white; font-size: 0.72rem; font-weight: 800;
  padding: 3px 10px; border-radius: var(--r-full);
}
.hotel-body { padding: 16px; }
.hotel-body h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 5px; }
.hotel-loc { font-size: 0.82rem; color: var(--text2); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.hotel-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.rating-badge {
  background: var(--emerald); color: white; font-size: 0.82rem; font-weight: 800;
  padding: 3px 9px; border-radius: var(--r-sm);
}
.rating-text { font-size: 0.78rem; color: var(--text2); }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; }
.hotel-price { display: flex; align-items: baseline; gap: 4px; }
.hotel-price .per { font-size: 0.75rem; color: var(--text3); }
.hotel-price .amt { font-size: 1.2rem; font-weight: 900; color: var(--sky-darker); }
.btn-book {
  padding: 7px 16px; border-radius: var(--r-full);
  background: var(--sky-light); color: var(--sky-darker);
  font-size: 0.82rem; font-weight: 700; transition: var(--t);
}
.btn-book:hover { background: var(--sky-dark); color: white; }

/* ===== REVIEWS ===== */
.reviews-wrap { position: relative; overflow: hidden; }
.reviews-track {
  display: flex; gap: 16px; transition: transform 0.5s var(--ease);
}
.review-card {
  min-width: calc(33.333% - 11px); background: white;
  border-radius: var(--r-lg); padding: 22px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.review-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--text2); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--purple));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.reviewer-info span { font-size: 0.75rem; color: var(--text3); }
.reviews-nav { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.rev-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border);
  background: white; color: var(--sky); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.rev-btn:hover { background: var(--sky); color: white; border-color: var(--sky); }

/* ===== MAP ===== */
.map-section { background: var(--sky-lighter); }
#dest-map {
  height: 450px; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}

/* ===== TIPS ===== */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.tip-card {
  background: white; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  cursor: pointer; transition: var(--t-slow);
}
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tip-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s ease; }
.tip-card:hover img { transform: scale(1.04); }
.tip-body { padding: 16px; }
.tip-tag {
  display: inline-block; background: var(--sky-lighter); color: var(--sky-dark);
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-full); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.tip-body h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; line-height: 1.45; }
.tip-body p { font-size: 0.83rem; color: var(--text2); margin-bottom: 12px; line-height: 1.6; }
.read-more-link {
  font-size: 0.82rem; font-weight: 700; color: var(--sky);
  display: flex; align-items: center; gap: 5px; transition: var(--t);
}
.read-more-link:hover { gap: 8px; }

/* ===== PARTNERS ===== */
.partners-section { background: white; padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label { text-align: center; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 20px; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.partner-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 800; color: var(--slate-500);
  opacity: 1; transition: var(--t);
}
.partner-logo:hover { color: var(--sky-dark); }
.partner-logo i { font-size: 1.4rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--sky-darker) 0%, var(--sky-dark) 50%, var(--sky) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-inner { position: relative; text-align: center; }
.newsletter-inner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: white; margin-bottom: 10px; }
.newsletter-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; height: 50px; padding: 0 20px; border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.15);
  color: white; font-size: 0.95rem; backdrop-filter: blur(8px);
  direction: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-form input:focus { outline: none; border-color: white; background: rgba(255,255,255,0.25); }
.newsletter-form button {
  height: 50px; padding: 0 24px; border-radius: var(--r-full);
  background: white; color: var(--sky-darker); font-weight: 800; font-size: 0.9rem;
  white-space: nowrap; transition: var(--t); box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* ===== FOOTER ===== */
.footer { background: var(--slate-900); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--slate-700);
}
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: var(--slate-400); line-height: 1.65; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--slate-800); border: 1px solid var(--slate-700);
  color: var(--slate-400); display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; transition: var(--t);
}
.social-btn:hover { background: var(--sky); border-color: var(--sky); color: white; }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }
.social-btn.instagram:hover { background: #e1306c; border-color: #e1306c; }
.social-btn.tiktok:hover { background: #000; border-color: #69C9D0; }

.footer-col h5 { font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--slate-400); transition: var(--t); }
.footer-col a:hover { color: var(--sky); }

.footer-affiliate {
  padding: 16px 0; border-bottom: 1px solid var(--slate-700);
  display: flex; align-items: center; gap: 10px;
}
.footer-affiliate i { color: var(--amber); flex-shrink: 0; }
.footer-affiliate p { font-size: 0.78rem; color: var(--slate-500); line-height: 1.5; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 20px 0;
}
.footer-bottom p { font-size: 0.78rem; color: var(--slate-500); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--slate-500); transition: var(--t); }
.footer-bottom-links a:hover { color: var(--sky); }

/* ===== FIXED WIDGETS ===== */
.whatsapp-btn {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: white; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--t);
  animation: pop-in 0.5s 2s ease backwards;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
  position: absolute; inset-inline-end: calc(100% + 10px);
  background: var(--slate-900); color: white; font-size: 0.8rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--r-sm); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--t); top: 50%; transform: translateY(-50%);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed; bottom: 88px; inset-inline-end: 24px; z-index: 900;
  width: 40px; height: 40px; border-radius: 50%;
  background: white; color: var(--sky); font-size: 0.9rem;
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: var(--t);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--sky); color: white; border-color: var(--sky); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--slate-900); border-top: 1px solid var(--slate-700);
  padding: 16px 0; transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; color: var(--slate-300); flex: 1; line-height: 1.5; }
.cookie-inner a { color: var(--sky); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 8px 20px; border-radius: var(--r-full);
  background: var(--sky); color: white; font-size: 0.85rem; font-weight: 700; transition: var(--t);
}
.btn-cookie-accept:hover { background: var(--sky-dark); }
.btn-cookie-settings {
  padding: 8px 16px; border-radius: var(--r-full);
  background: var(--slate-700); color: var(--slate-300); font-size: 0.85rem; font-weight: 600; transition: var(--t);
}
.btn-cookie-settings:hover { background: var(--slate-600); }

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed; inset: 0; background: rgba(15,23,42,0.7);
  backdrop-filter: blur(6px); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup-overlay.visible { opacity: 1; pointer-events: all; }
.exit-popup {
  background: white; border-radius: var(--r-xl); padding: 40px;
  max-width: 460px; width: 100%; text-align: center; position: relative;
  transform: scale(0.9); transition: transform 0.3s var(--ease);
  box-shadow: var(--shadow-xl);
}
.exit-popup-overlay.visible .exit-popup { transform: scale(1); }
.exit-close-btn {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--slate-100); color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: var(--t);
}
.exit-close-btn:hover { background: var(--rose); color: white; }
.exit-emoji { font-size: 3rem; margin-bottom: 12px; display: block; }
.exit-popup h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; color: var(--slate-900); }
.exit-popup p { color: var(--text2); margin-bottom: 16px; }
.exit-coupon {
  display: inline-block; background: var(--sky-lighter); border: 2px dashed var(--sky);
  color: var(--sky-darker); font-size: 1.1rem; font-weight: 900;
  padding: 10px 24px; border-radius: var(--r); margin-bottom: 20px;
  letter-spacing: 2px;
}
.btn-exit-cta {
  display: block; width: 100%; height: 48px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--sky), var(--sky-darker));
  color: white; font-weight: 800; font-size: 1rem; margin-bottom: 10px; transition: var(--t);
}
.btn-exit-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,165,233,0.4); }
.exit-dismiss { font-size: 0.78rem; color: var(--text3); cursor: pointer; transition: var(--t); }
.exit-dismiss:hover { color: var(--text); }

/* ===== CHATBOT ===== */
.chatbot-widget {
  position: fixed; bottom: 100px; inset-inline-end: 24px; z-index: 950;
}
.chatbot-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-darker));
  color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(14,165,233,0.5); transition: var(--t);
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-unread {
  position: absolute; top: -4px; inset-inline-end: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--rose); color: white; font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.chatbot-box {
  position: absolute; bottom: calc(100% + 12px); inset-inline-end: 0;
  width: 320px; background: white; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
  overflow: hidden; display: none; flex-direction: column;
}
.chatbot-box.open { display: flex; }
.chatbot-head {
  background: linear-gradient(135deg, var(--sky), var(--sky-darker));
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.chatbot-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.25); display: flex; align-items: center;
  justify-content: center; color: white; font-size: 1rem;
}
.chatbot-head-info strong { display: block; font-size: 0.88rem; font-weight: 700; color: white; }
.chatbot-head-info span { font-size: 0.72rem; color: rgba(255,255,255,0.8); }
.chatbot-head-close {
  margin-inline-start: auto; color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: var(--t);
}
.chatbot-head-close:hover { color: white; }
.chatbot-messages {
  flex: 1; padding: 14px; overflow-y: auto; max-height: 250px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--slate-50);
}
.chat-msg { max-width: 85%; padding: 9px 13px; border-radius: var(--r); font-size: 0.85rem; line-height: 1.5; }
.chat-msg.bot { background: white; color: var(--text); align-self: flex-start; border: 1px solid var(--border); border-bottom-inline-start-radius: 4px; }
.chat-msg.user { background: var(--sky); color: white; align-self: flex-end; border-bottom-inline-end-radius: 4px; }
.chatbot-suggestions {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px;
  background: var(--slate-50);
}
.chat-sugg {
  padding: 5px 12px; border-radius: var(--r-full);
  background: white; border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 600; color: var(--sky-dark);
  cursor: pointer; transition: var(--t);
}
.chat-sugg:hover { background: var(--sky); color: white; border-color: var(--sky); }
.chatbot-input {
  display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border);
}
.chatbot-input input {
  flex: 1; height: 36px; padding: 0 12px; border-radius: var(--r-full);
  border: 1.5px solid var(--border); font-size: 0.85rem; direction: inherit;
}
.chatbot-input input:focus { outline: none; border-color: var(--sky); }
.chat-send-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sky); color: white; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; transition: var(--t);
}
.chat-send-btn:hover { background: var(--sky-dark); }

/* ===== TOAST ===== */
.toast {
  position: fixed; top: 80px; inset-inline-end: 20px; z-index: 2000;
  background: var(--slate-900); color: white;
  padding: 12px 20px; border-radius: var(--r);
  font-size: 0.88rem; font-weight: 600; max-width: 320px;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%); opacity: 0; transition: all 0.35s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast i { color: var(--emerald); flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
@keyframes pop-in { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulse-ring { 0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(56,189,248,0.5); } 70% { transform: scale(1); box-shadow: 0 0 0 14px rgba(56,189,248,0); } 100% { transform: scale(0.9); } }
.anim { opacity: 0; transform: translateY(32px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.18s; }
.anim-delay-3 { transition-delay: 0.26s; }
.anim-delay-4 { transition-delay: 0.34s; }
.anim-delay-5 { transition-delay: 0.42s; }

/* ===== PAGE HEADER (inner pages) ===== */

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #0284c7 60%, #38bdf8 100%);
  padding: 130px 0 70px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: white;
  margin-bottom: 10px; position: relative; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: 0.82rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--t); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { color: rgba(255,255,255,0.4); font-size: 0.6rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-card { min-width: calc(50% - 8px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .dest-card.featured { grid-column: span 1; grid-row: span 2; }
  .search-row { flex-direction: column; }
  .btn-search, .swap-btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .review-card { min-width: calc(100% - 0px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .chatbot-box { width: 290px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .deals-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos { gap: 24px; }
  .hero-stats { gap: 16px; }
  .h-stat strong { font-size: 1.3rem; }
}

/* ===== Season Table ===== */
.season-table { width:100%; border-collapse:collapse; margin:16px 0; font-size:0.88rem; }
.season-table th { background:var(--sky-lighter); color:var(--sky-darker); padding:10px 14px; text-align:right; font-weight:700; border-bottom:2px solid var(--sky-light); }
.season-table td { padding:10px 14px; border-bottom:1px solid var(--border); color:var(--text2); }
.season-table tr:last-child td { border-bottom:none; }
@media(max-width:600px){ .season-table th, .season-table td { padding:8px 8px; font-size:0.78rem; } }

/* ===== RTL overrides ===== */
[dir="rtl"] .swap-btn i { transform: scaleX(-1); }
[dir="rtl"] .hero-sub { max-width: 100%; }
[dir="ltr"] .search-widget { direction: ltr; }
[dir="ltr"] .s-field input, [dir="ltr"] .s-field select { direction: ltr; }
[dir="ltr"] .chatbot-input input { direction: ltr; }
[dir="ltr"] .newsletter-form input { direction: ltr; }
