/* ============================================================
   WINGSEAST PREMIUM LAYER — UI/UX Polish & Conversion
   ============================================================ */

/* ── 1. HERO REBUILD ─────────────────────────────────── */

.hero { min-height: 85vh; }

.hero-live-row {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(14,165,233,.18); border: 1px solid rgba(14,165,233,.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 5px 14px 5px 10px; border-radius: 99px;
  margin-bottom: 22px;
}
.hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100%{ box-shadow: 0 0 0 3px rgba(74,222,128,.3); }
  50%{ box-shadow: 0 0 0 6px rgba(74,222,128,.12); }
}
.hero-live-text { font-size: .78rem; font-weight: 700; color: #7dd3fc; }
.hero-live-updated {
  font-size: .7rem; color: rgba(255,255,255,.5);
  padding-right: 10px; border-right: 1px solid rgba(255,255,255,.2);
}

.hero-title-main {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900; color: #fff; line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-title-accent {
  background: linear-gradient(90deg, #38bdf8, #7dd3fc, #bae6fd);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-sub-main {
  font-size: 1.08rem; color: rgba(255,255,255,.82);
  font-weight: 400; max-width: 520px; margin-bottom: 26px;
  line-height: 1.6;
}

/* Destination quick chips */
.hero-chips {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.hero-chips-label {
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 700;
  cursor: pointer; transition: all .2s; backdrop-filter: blur(8px);
  font-family: inherit;
}
.hero-chip:hover {
  background: rgba(14,165,233,.5); border-color: #38bdf8; color: #fff;
  transform: translateY(-2px);
}

/* AI teaser in hero */
.hero-ai-teaser {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
}
.hero-ai-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px; border-radius: 99px;
  background: linear-gradient(135deg, rgba(124,58,237,.75), rgba(76,29,149,.75));
  border: 1px solid rgba(167,139,250,.45);
  color: #fff; font-size: .88rem; font-weight: 700;
  backdrop-filter: blur(12px); text-decoration: none; transition: all .25s;
  cursor: pointer; font-family: inherit;
}
.hero-ai-btn:hover {
  background: linear-gradient(135deg,#7c3aed,#4c1d95);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.45);
}
.hero-ai-btn i { font-size: .95rem; }

/* ── 2. LIVE DEAL INDICATORS ────────────────────────── */

.deal-live-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; flex-wrap: wrap;
}
.deal-viewers {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; color: #94a3b8; font-weight: 600;
}
.deal-viewers i { color: #f59e0b; font-size: .7rem; }
.deal-spots {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(244,63,94,.12); color: #fb7185;
  font-size: .72rem; font-weight: 700;
  padding: 2px 8px; border-radius: 99px;
}
.deal-updated {
  font-size: .68rem; color: #64748b; margin-right: auto;
}

/* Hot badge pulse */
.deal-card.is-hot .deal-ribbon {
  animation: ribbonPulse 2.5s ease infinite;
}
@keyframes ribbonPulse {
  0%,100%{ box-shadow: none; }
  50%{ box-shadow: 0 0 12px rgba(244,63,94,.6); }
}

/* Price drop indicator */
.deal-price-drop {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; color: #4ade80; font-weight: 700;
}
.deal-price-drop i { font-size: .68rem; }

/* ── 3. ENHANCED BADGE SYSTEM ────────────────────────── */

.badge-editor { background: linear-gradient(135deg,#7c3aed,#a855f7); color:#fff; }
.badge-hot    { background: #f43f5e; color:#fff; animation: badgePulse 2s infinite; }
.badge-couple { background: linear-gradient(135deg,#ec4899,#f43f5e); color:#fff; }
.badge-luggage{ background: linear-gradient(135deg,#0ea5e9,#38bdf8); color:#fff; }
.badge-cancel { background: linear-gradient(135deg,#10b981,#34d399); color:#fff; }
.badge-fast   { background: linear-gradient(135deg,#f59e0b,#f97316); color:#fff; }

@keyframes badgePulse {
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
}

.deal-badges {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px;
}
.deal-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 99px;
  font-size: .68rem; font-weight: 800; letter-spacing: .3px;
}

/* ── 4. DEAL CARD SOCIAL PROOF FOOTER ─────────────────── */

.deal-social-proof {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}
.dsp-avatars { display: flex; }
.dsp-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--purple));
  border: 2px solid #1e293b; margin-inline-end: -7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; font-weight: 800;
}
.dsp-text { font-size: .72rem; color: #64748b; margin-inline-start: 14px; }
.dsp-text strong { color: #94a3b8; }

/* ── 5. HOTEL TAGS ────────────────────────────────────── */

.hotel-tags {
  display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px;
}
.hotel-tag {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 3px 9px; border-radius: 99px;
  font-size: .68rem; font-weight: 700;
  background: #f0f9ff; color: #0284c7;
  border: 1px solid #bae6fd;
}
.hotel-tag.green { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.hotel-tag.rose  { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.hotel-tag.amber { background: #fffbeb; color: #b45309; border-color: #fde68a; }

/* Larger hotel imagery */
.hotel-img { aspect-ratio: 16/9; }

/* ── 6. AI ASSISTANT SECTION ─────────────────────────── */

.ai-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(124,58,237,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(14,165,233,.18) 0%, transparent 60%);
}
.ai-section-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 60px;
}
.ai-section-left { flex: 1; }
.ai-section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,.25); border: 1px solid rgba(167,139,250,.4);
  color: #c4b5fd; padding: 5px 16px; border-radius: 99px;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.ai-section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.ai-section-title span { color: #c4b5fd; }
.ai-section-sub {
  font-size: 1rem; color: rgba(255,255,255,.72);
  line-height: 1.65; margin-bottom: 28px; max-width: 460px;
}
.ai-section-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 99px;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  color: #fff; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 24px rgba(124,58,237,.4);
}
.ai-section-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.55); }
.ai-section-right { flex-shrink: 0; width: 340px; }
.ai-demo-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 20px;
  backdrop-filter: blur(16px);
}
.ai-demo-msg {
  padding: 10px 14px; border-radius: 14px;
  font-size: .85rem; line-height: 1.55; margin-bottom: 10px;
  direction: rtl;
}
.ai-demo-msg.user {
  background: rgba(124,58,237,.35); color: #e9d5ff;
  border-bottom-right-radius: 4px;
}
.ai-demo-msg.bot {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.88);
  border-bottom-left-radius: 4px;
}
.ai-demo-msg.bot a { color: #7dd3fc; font-weight: 700; }
.ai-demo-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(14,165,233,.2); border: 1px solid rgba(14,165,233,.4);
  color: #7dd3fc; font-size: .78rem; font-weight: 700; cursor: pointer;
  transition: all .2s; font-family: inherit;
}
.ai-demo-chip:hover { background: rgba(14,165,233,.35); }

/* ── 7. TRUST STRIP ───────────────────────────────────── */

.trust-strip {
  background: #fff; border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9; padding: 32px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: #64748b; font-size: .85rem; font-weight: 600; min-width: 0;
}
.trust-item i { font-size: 1.2rem; color: #0ea5e9; }
.trust-divider { width: 1px; height: 32px; background: #e2e8f0; }
.trust-count-wrap { text-align: center; }
.trust-count { font-size: 1.6rem; font-weight: 900; color: #0f172a; line-height: 1; }
.trust-count-label { font-size: .72rem; color: #94a3b8; font-weight: 600; margin-top: 2px; }

/* Payment icons */
.payment-icons {
  display: flex; align-items: center; gap: 10px;
  padding-right: 20px; border-right: 1px solid #e2e8f0;
}
.pay-icon {
  height: 24px; padding: 3px 8px; border-radius: 5px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  font-size: .68rem; font-weight: 800; color: #334155;
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.pay-icon.visa { color: #1a1f71; }
.pay-icon.mc   { color: #eb001b; }
.pay-icon.bit  { color: #ff6b00; }

/* Customer reviews ticker */
.reviews-ticker {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-top: 1px solid #bae6fd; padding: 14px 0; overflow: hidden; min-width: 0; max-width: 100%; flex: 1 1 100%;
}
.ticker-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: #0369a1; flex-shrink: 0;
}
.ticker-item i { color: #f59e0b; }
.ticker-item strong { color: #0f172a; }

/* ── 8. MOBILE STICKY BOTTOM NAV ─────────────────────── */

.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid #e2e8f0;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(15,23,42,.1);
}
.mobile-bottom-nav-inner {
  display: flex; align-items: center; justify-content: space-around;
}
.mbn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 14px; border-radius: 12px; cursor: pointer;
  color: #94a3b8; font-size: .62rem; font-weight: 700;
  text-decoration: none; transition: all .2s; letter-spacing: .3px;
  text-transform: uppercase;
}
.mbn-item i { font-size: 1.15rem; transition: transform .2s; }
.mbn-item:hover, .mbn-item.active { color: #0ea5e9; }
.mbn-item:hover i { transform: translateY(-2px); }
.mbn-cta {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff !important; padding: 8px 20px; border-radius: 99px;
  font-size: .72rem; font-weight: 800; text-transform: none !important;
  box-shadow: 0 4px 16px rgba(14,165,233,.4);
}
.mbn-cta i { color: #fff; }
@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 72px; }
}

/* ── 9. MICRO ANIMATIONS ─────────────────────────────── */

/* Scroll reveal — use .reveal class */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Shimmer skeleton */
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

/* Animated counter (JS driven) */
.counter-animate { transition: all .6s ease; }

/* Glowing search focus */
.s-field input:focus,
.s-field select:focus {
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 4px rgba(14,165,233,.15) !important;
}

/* Enhanced card lift */
.deal-card { transition: transform .3s cubic-bezier(.34,1.56,.64,1), border-color .3s ease, box-shadow .3s ease; }
.deal-card:hover { transform: translateY(-8px) scale(1.01); }
.hotel-card { transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
.hotel-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(15,23,42,.14); }
.dest-card:hover { transform: translateY(-6px) scale(1.01); }

/* Shimmering CTA buttons */
.btn-deal::after, .nav-cta::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0; transition: opacity .3s;
}
.btn-deal { position: relative; overflow: hidden; }
.btn-deal:hover::after { opacity: 1; animation: shimmer 1s infinite; }

/* ── 10. NAVBAR HOVER UNDERLINE ──────────────────────── */

.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--sky); border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}
.navbar.scrolled .nav-links a:hover::after { left: 8px; right: 8px; }

/* Glassmorphism on non-scrolled state (when page loads) */
.navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(15,23,42,.45), transparent);
  backdrop-filter: blur(2px);
}

/* ── 11. TYPOGRAPHY IMPROVEMENTS ─────────────────────── */

.section-header h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: -0.6px;
}
.deal-body h4 { font-size: 1.1rem; letter-spacing: -.3px; }
.deal-new { font-size: 1.5rem; }

/* ── 12. HOT DEALS DARK SECTION POLISH ────────────────── */

.deals-section {
  position: relative;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #1e1b4b 0%, #0f172a 60%) !important;
}
.deals-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}
.deals-fire-title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 6px;
}
.deals-fire-title .fire-icon {
  font-size: 1.4rem; animation: fireWobble 1.5s ease infinite;
}
@keyframes fireWobble {
  0%,100%{ transform: rotate(-4deg) scale(1); }
  50%{ transform: rotate(4deg) scale(1.1); }
}
.deals-section-meta {
  font-size: .8rem; color: #64748b;
  text-align: center; margin-bottom: 32px;
}

/* ── 13. DEPARTURE BOARD TICKER ──────────────────────── */

.dep-board {
  background: #020917;
  border-bottom: 1px solid rgba(56,189,248,.18);
  display: flex; align-items: center;
  height: 38px; overflow: hidden;
  position: relative; z-index: 98;
}
.dep-board-badge {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 7px;
  padding: 0 18px;
  background: rgba(14,165,233,.18);
  border-left: 1px solid rgba(56,189,248,.25);
  height: 100%;
  font-size: .63rem; font-weight: 900;
  letter-spacing: 2px; color: #38bdf8;
  text-transform: uppercase; white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.dep-board-badge i { animation: livePulse 2s infinite; font-size: .55rem; color: #4ade80; }
.dep-board-overflow { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.dep-board-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap; direction: ltr;
  animation: depTicker 45s linear infinite;
}
.dep-board-track:hover { animation-play-state: paused; }
@keyframes depTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.dep-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px; cursor: pointer;
  border-right: 1px solid rgba(56,189,248,.1);
}
.dep-item:hover .dep-price { color: #7dd3fc; }
.dep-route {
  color: #64748b; font-weight: 700;
  font-size: .72rem; letter-spacing: 1.5px;
  font-family: 'Courier New', Courier, monospace;
}
.dep-price {
  color: #4ade80; font-weight: 900;
  font-size: .8rem; letter-spacing: .5px;
  transition: color .2s;
  font-family: 'Inter', sans-serif;
}
.dep-status {
  padding: 1px 7px; border-radius: 3px;
  font-size: .58rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
}
.dep-status.open { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
.dep-status.deal { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.dep-status.hot  { background: rgba(248,113,113,.12); color: #f87171; border: 1px solid rgba(248,113,113,.25); }
.dep-sep { color: rgba(56,189,248,.2); font-size: .6rem; padding: 0 4px; flex-shrink: 0; }

/* ── 14. AMBIENT FLYING PLANE ─────────────────────────── */

/* Left -> right, gentle curved climb-and-descend; nose (right-facing SVG) always leads */
@keyframes planeFly {
  0%   { transform: translate(-14vw, 24px)  rotate(-7deg); opacity: 0; }
  8%   { opacity: .9; }
  50%  { transform: translate(50vw, -28px)  rotate(0deg);  opacity: .9; }
  92%  { opacity: .9; }
  100% { transform: translate(114vw, 18px)  rotate(7deg);  opacity: 0; }
}
@keyframes trailFade {
  0%   { transform: translateX(120vw); opacity: 0; width: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { transform: translateX(-25vw); opacity: 0; }
}
.ambient-plane {
  position: fixed;
  top: 16vh; left: 0;
  width: 46px; height: 46px;
  color: #e0f2fe;
  pointer-events: none; z-index: 9;
  animation: planeFly 26s ease-in-out infinite;
  animation-delay: 3s;
  filter: drop-shadow(0 0 11px rgba(125,211,252,.7));
  will-change: transform;
}
.ambient-plane svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.ambient-trail {
  position: fixed;
  top: calc(20vh + 1.3rem); right: 0;
  height: 2px; width: 120px;
  background: linear-gradient(to right, transparent, rgba(56,189,248,.35));
  pointer-events: none; z-index: 8;
  animation: trailFade 20s ease-in-out infinite;
  animation-delay: 6s;
  border-radius: 99px;
  will-change: transform;
}

/* ── 15. FLIGHT PATH DIVIDERS ─────────────────────────── */

.flight-path-div {
  padding: 18px 0; overflow: visible;
  position: relative; background: transparent;
}
.fpd-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  position: relative; height: 30px;
  display: flex; align-items: center; gap: 12px;
}
.fpd-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
  flex-shrink: 0;
}
.fpd-line {
  flex: 1; height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(14,165,233,.4) 0px, rgba(14,165,233,.4) 6px,
    transparent 6px, transparent 18px
  );
  position: relative; overflow: visible;
}
.fpd-plane {
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%) scaleX(-1);
  font-size: 1.3rem; color: #0ea5e9;
  filter: drop-shadow(0 0 8px rgba(14,165,233,.6));
  transition: right 2.8s cubic-bezier(.25,.46,.45,.94);
}
.fpd-label {
  position: absolute; bottom: calc(100% + 4px);
  left: 50%; transform: translateX(-50%);
  font-size: .6rem; color: rgba(14,165,233,.5);
  font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; white-space: nowrap;
}
.flight-path-div.fpd-active .fpd-plane {
  right: calc(100% - 20px);
}

/* ── 17. RESPONSIVE ───────────────────────────────────── */

@media (max-width: 900px) {
  .ai-section-inner { flex-direction: column; gap: 36px; }
  .ai-section-right { width: 100%; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-chips { gap: 6px; }
  .hero-chip  { font-size: .78rem; padding: 5px 11px; }
  .hero-title-main { font-size: clamp(2rem,8vw,3rem); }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }
  .ticker-track { animation-duration: 18s; }
  .dep-board { height: 34px; }
  .dep-board-badge { padding: 0 12px; font-size: .58rem; letter-spacing: 1px; }
  .dep-item { padding: 0 18px; }
  .dep-route { font-size: .68rem; }
  .dep-price { font-size: .74rem; }
  .dep-status { display: none; }
  .ambient-plane { width: 34px; height: 34px; top: 24vh; }
  .flight-path-div { padding: 12px 0; }
  .fpd-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-plane, .ambient-trail, .dep-board-track,
  .fpd-plane, .ticker-track { animation: none !important; transition: none !important; }
}

/* ════════════════════════════════════════════════════════════
   VISUAL SYSTEM 2.0 — Complete Polish Pass
   Sea-Blue Brand · Gradient Flow · Commercial Energy
   ════════════════════════════════════════════════════════════ */

/* ── VS2: PALETTE ─────────────────────────────────────────── */
:root {
  --vs-ocean:  #062B4F;
  --vs-navy:   #071C33;
  --vs-sea:    #0E7CB8;
  --vs-sky:    #38BDF8;
  --vs-aqua:   #67E8F9;
  --vs-ice:    #EEF9FF;
  --vs-ice2:   #D8EFFF;
  --vs-gold:   #FBBF24;
  --vs-coral:  #FF5A5F;
  --vs-card:   rgba(255,255,255,0.92);
}

/* ── VS2: PAGE BACKGROUND ─────────────────────────────────── */
body {
  background: var(--vs-ice) !important;
}

/* ── VS2: SECTION PADDING RHYTHM ─────────────────────────── */
.section          { padding: 72px 0 !important; }
.section-alt      { padding: 72px 0 !important; }
@media (max-width: 768px) {
  .section, .section-alt { padding: 44px 0 !important; }
}

/* ── VS2: GLOBAL TYPOGRAPHY ────────────────────────────────  */
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.4px !important;
  color: var(--vs-ocean) !important;
  margin-bottom: 10px !important;
}
.section-header p {
  font-size: 1.05rem !important;
  color: #3a5d7a !important;
}
.section-header { margin-bottom: 48px !important; }

.hero-title-main {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  display: block;
}
.hero-title-accent {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem) !important;
  margin-top: -6px;
}
.hero-sub-main {
  font-size: 1.12rem !important;
  color: rgba(255,255,255,.86) !important;
  max-width: 560px;
  margin-bottom: 28px !important;
}

/* Deal/Hotel/Dest typography */
.deal-body h4   { font-size: 1.18rem !important; font-weight: 800 !important; color: #fff !important; }
.deal-new       { font-size: 1.65rem !important; font-weight: 900 !important; color: var(--vs-gold) !important; }
.deal-old       { font-size: .85rem  !important; color: rgba(255,255,255,.38) !important; }
.deal-saving    { color: #4ade80 !important; font-weight: 800 !important; font-size: .85rem !important; }
.hotel-body h4  { font-size: 1.12rem !important; font-weight: 800 !important; color: var(--vs-ocean) !important; }
.hotel-price .amt { font-size: 1.45rem !important; font-weight: 900 !important; color: var(--vs-sea) !important; }
.cd-item b      { font-size: 1.4rem !important; font-weight: 900 !important; color: var(--vs-sky) !important; }
.cd-item span   { font-size: .7rem !important; color: rgba(255,255,255,.5) !important; }

/* ── VS2: SECTION BACKGROUNDS ─────────────────────────────── */

/* Search section: ice gradient */
.search-section {
  background: linear-gradient(180deg, var(--vs-ice2) 0%, var(--vs-ice) 100%) !important;
}

/* Destinations */
#destinations {
  background: var(--vs-ice) !important;
}

/* Flight path divider 1: ice → navy transition */
#fpd1 {
  background: linear-gradient(180deg, var(--vs-ice) 0%, var(--vs-navy) 100%);
  padding: 0 !important;
  height: 64px;
}
#fpd1 .fpd-label { color: rgba(56,189,248,.4); }
#fpd1 .fpd-dot   { background: var(--vs-sky); }
#fpd1 .fpd-line  {
  background: repeating-linear-gradient(
    90deg, rgba(56,189,248,.45) 0px, rgba(56,189,248,.45) 6px,
    transparent 6px, transparent 18px
  );
}
#fpd1 .fpd-plane { color: var(--vs-sky); }

/* Hot deals: pure dark */
.deals-section {
  background: linear-gradient(160deg, var(--vs-navy) 0%, var(--vs-ocean) 100%) !important;
}
.deals-section::before {
  background: linear-gradient(90deg, transparent, var(--vs-gold), transparent) !important;
  height: 2px !important; top: 0 !important;
}

/* Flight path divider 2: ice → navy (before hotels) */
#fpd2 {
  background: var(--vs-ice);
  padding: 18px 0;
}

/* Features / Why section: branded ice */
#features {
  background: linear-gradient(160deg, #1a3a5a 0%, #0d2b44 6%, var(--vs-ice2) 24%, var(--vs-ice) 100%) !important;
}
#features .section-header h2 { color: var(--vs-ocean) !important; }

/* Tools section: aqua tint */
#tools {
  background: linear-gradient(135deg, var(--vs-ice) 0%, #C8EEFF 100%) !important;
}
#tools .section-header h2 { color: var(--vs-ocean) !important; }

/* Hotels: sky aqua */
#hotels {
  background: linear-gradient(150deg, var(--vs-ice) 0%, #C5E9FF 50%, var(--vs-ice2) 100%) !important;
}

/* Reviews: deep navy */
#reviews {
  background: linear-gradient(170deg, var(--vs-navy) 0%, var(--vs-ocean) 100%) !important;
}
#reviews .section-header h2 { color: #fff !important; }
#reviews .section-header p  { color: rgba(255,255,255,.65) !important; }

/* Map: navy into ice */
.map-section {
  background: linear-gradient(170deg, var(--vs-ocean) 0%, #0d3d5c 35%, var(--vs-ice2) 100%) !important;
}
.map-section .section-header h2 { color: var(--vs-ocean) !important; }

/* Tips: ice */
#tips {
  background: linear-gradient(135deg, var(--vs-ice2) 0%, var(--vs-ice) 100%) !important;
}
#tips .section-header h2 { color: var(--vs-ocean) !important; }

/* Travel widget embed section */
section.section[style*="sky-lighter"],
section[style*="background:var(--sky-lighter)"] {
  background: linear-gradient(135deg, var(--vs-ice2) 0%, var(--vs-ice) 100%) !important;
}

/* Partners: dark navy */
.partners-section {
  background: linear-gradient(135deg, var(--vs-navy) 0%, var(--vs-ocean) 100%) !important;
}
.partners-label { color: rgba(255,255,255,.45) !important; }
.partner-logo   { color: rgba(255,255,255,.65) !important; border-color: rgba(255,255,255,.12) !important; }

/* Newsletter: deep ocean */
.newsletter-section {
  background: linear-gradient(135deg, var(--vs-ocean) 0%, var(--vs-navy) 100%) !important;
}

/* SEO section at bottom */
section[style*="background:var(--sky-lighter)"] {
  background: var(--vs-ice2) !important;
}

/* Footer */
.footer { background: var(--vs-navy) !important; }

/* ── VS2: NAVBAR ──────────────────────────────────────────── */
.navbar.scrolled {
  background: rgba(6,43,79,.93) !important;
  border-bottom: 1px solid rgba(56,189,248,.14) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}
.navbar.scrolled .logo-name,
.navbar.scrolled .nav-links a { color: rgba(255,255,255,.88) !important; }
.navbar.scrolled .nav-links a:hover { color: var(--vs-sky) !important; }
.navbar.scrolled .logo-sub { color: rgba(255,255,255,.45) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  box-shadow: 0 4px 18px rgba(14,124,184,.45) !important;
  color: #fff !important; font-weight: 800 !important;
}
.nav-cta:hover { box-shadow: 0 6px 24px rgba(56,189,248,.55) !important; }

/* ── VS2: HERO CTA BUTTONS ────────────────────────────────── */
.hero-primary-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 99px;
  background: linear-gradient(135deg, var(--vs-gold), #f97316);
  color: #1a0f00; font-weight: 900; font-size: 1.1rem;
  cursor: pointer; border: none; font-family: inherit;
  box-shadow: 0 6px 28px rgba(251,191,36,.45);
  transition: all .25s; text-decoration: none;
  letter-spacing: -.2px;
}
.hero-primary-cta:hover {
  transform: translateY(-3px); color: #1a0f00;
  box-shadow: 0 14px 44px rgba(251,191,36,.55);
}
.hero-secondary-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 99px;
  background: rgba(255,255,255,.11);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff; font-weight: 700; font-size: 1rem;
  cursor: pointer; font-family: inherit;
  backdrop-filter: blur(8px);
  transition: all .25s; text-decoration: none;
}
.hero-secondary-cta:hover {
  background: rgba(255,255,255,.2); color: #fff;
  border-color: rgba(255,255,255,.65);
}
.hero-cta-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-top: 32px;
}
@media (max-width: 600px) {
  .hero-primary-cta  { padding: 14px 28px; font-size: 1rem; }
  .hero-secondary-cta{ padding: 12px 22px; font-size: .9rem; }
  .hero-cta-row { gap: 12px; }
}

/* Remove old AI teaser row */
.hero-ai-teaser { display: none; }

/* ── VS2: SEARCH AREA ─────────────────────────────────────── */
.search-widget {
  background: rgba(255,255,255,.96) !important;
  border: 1.5px solid rgba(14,124,184,.22) !important;
  box-shadow: 0 8px 48px rgba(6,43,79,.13), 0 0 0 1px rgba(56,189,248,.08) !important;
  border-radius: 24px !important;
}
.s-tab.active {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important;
}
.s-tab:not(.active) { color: #3a5d7a !important; }
.btn-search {
  background: linear-gradient(135deg, var(--vs-ocean), var(--vs-sea)) !important;
  box-shadow: 0 4px 22px rgba(6,43,79,.35) !important;
  border-radius: 14px !important;
}
.btn-search:hover { background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important; }
.search-section-title { color: var(--vs-ocean) !important; }
.s-field input:focus,
.s-field select:focus {
  border-color: var(--vs-sea) !important;
  box-shadow: 0 0 0 4px rgba(14,124,184,.14) !important;
}

/* ── VS2: SECTION BADGES ──────────────────────────────────── */
.section-badge {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important;
}
.section-badge.amber {
  background: linear-gradient(135deg, var(--vs-gold), #f97316) !important;
  color: #1a0f00 !important;
}
.section-badge.purple {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important;
}

/* ── VS2: FEAT CARDS (Why WingsEast) ──────────────────────── */
.feat-card {
  background: var(--vs-card) !important;
  border: 1px solid rgba(14,124,184,.14) !important;
  box-shadow: 0 4px 20px rgba(6,43,79,.07) !important;
  border-radius: 20px !important;
}
.feat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(14,124,184,.18) !important;
  border-color: rgba(14,124,184,.3) !important;
}
.feat-icon {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  box-shadow: 0 8px 28px rgba(14,124,184,.38) !important;
}
.feat-card h4 { color: var(--vs-ocean) !important; font-weight: 800 !important; }
.feat-card p  { color: #3a5d7a !important; line-height: 1.65 !important; }

/* ── VS2: DEAL CARDS (inside dark section) ────────────────── */
.deal-card {
  border-radius: 20px !important;
  border: 1px solid rgba(56,189,248,.14) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.38) !important;
  overflow: hidden;
}
.deal-card:first-child {
  border-color: rgba(251,191,36,.3) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(251,191,36,.18) !important;
}
.deal-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(56,189,248,.3) !important;
}
.deal-ribbon {
  background: linear-gradient(135deg, var(--vs-coral), #e53e43) !important;
  font-weight: 900 !important; font-size: 1rem !important;
  box-shadow: 4px 4px 16px rgba(255,90,95,.45) !important;
}
.btn-deal {
  width: 100%;
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  box-shadow: 0 4px 22px rgba(14,124,184,.45) !important;
  font-weight: 800 !important; font-size: .95rem !important;
  border-radius: 12px !important;
}
.btn-deal:hover { box-shadow: 0 8px 36px rgba(56,189,248,.55) !important; }
.deal-live-row { border-color: rgba(255,255,255,.07) !important; }
.deal-viewers, .deal-updated { color: rgba(255,255,255,.45) !important; }
.deal-spots { color: #f87171 !important; font-weight: 700 !important; }
.deal-social-proof { border-color: rgba(255,255,255,.07) !important; }
.dsp-text { color: rgba(255,255,255,.45) !important; }
.deal-body { padding: 20px 20px 16px !important; }

/* ── VS2: HOTEL CARDS ─────────────────────────────────────── */
.hotel-card {
  border-radius: 20px !important;
  border: 1px solid rgba(14,124,184,.14) !important;
  box-shadow: 0 4px 24px rgba(6,43,79,.09) !important;
  overflow: hidden;
  background: var(--vs-card) !important;
}
.hotel-card:hover {
  border-color: rgba(14,124,184,.32) !important;
  box-shadow: 0 20px 52px rgba(14,124,184,.18) !important;
}
.hotel-img { aspect-ratio: 4/3 !important; overflow: hidden; }
.hotel-img img { object-fit: cover; width: 100%; height: 100%; transition: transform .45s ease; }
.hotel-card:hover .hotel-img img { transform: scale(1.06); }
.hotel-badge {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important; font-weight: 800 !important;
}
.hotel-stars { color: var(--vs-gold) !important; letter-spacing: 2px; }
.rating-badge {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important; font-weight: 900 !important;
}
.hotel-body h4 { color: var(--vs-ocean) !important; }
.hotel-loc { color: #4a7a9a !important; }
.hotel-price .per { color: #4a7a9a !important; }
.btn-book {
  background: linear-gradient(135deg, var(--vs-ocean), var(--vs-sea)) !important;
  color: #fff !important; font-weight: 800 !important;
  border-radius: 12px !important;
}
.btn-book:hover { background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important; }

/* ── VS2: DESTINATION CARDS ───────────────────────────────── */
.dest-card { border-radius: 20px !important; }
.dest-book-btn {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important; font-weight: 800 !important;
}
/* Dual CTA: flight + hotel, EQUAL size / weight / visibility (side by side, never stacked) */
.dest-cta-row {
  display: flex !important; flex-direction: row !important;
  gap: 8px; margin-top: 10px; width: 100%;
}
.dest-cta {
  flex: 1 1 0 !important; min-width: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 6px; border: none; border-radius: 12px; cursor: pointer;
  font-family: inherit; font-size: 0.82rem; font-weight: 800; color: #fff !important;
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  transition: transform .15s ease, filter .15s ease; white-space: nowrap; line-height: 1.1;
}
.dest-cta i { font-size: 0.95em; }
.dest-cta:hover { transform: translateY(-2px); filter: brightness(1.08); }
.dest-cta:active { transform: translateY(0); }
@media (max-width: 600px) {
  /* stay side-by-side on mobile, just tighter — no deep stacking under the image */
  .dest-cta-row { gap: 6px; margin-top: 8px; }
  .dest-cta { padding: 10px 4px; font-size: 0.8rem; }
}
.dest-tag.hot   { background: var(--vs-coral) !important; }
.dest-tag.deal  { background: linear-gradient(135deg, var(--vs-gold), #f59e0b) !important; color: #1a0f00 !important; }
.dest-tag.new   { background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important; }

/* ── VS2: REVIEW CARDS ────────────────────────────────────── */
#reviews .review-card {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
}
#reviews .review-text { color: rgba(255,255,255,.85) !important; }
#reviews .reviewer-info strong { color: #fff !important; }
#reviews .reviewer-info span { color: rgba(255,255,255,.5) !important; }
#reviews .reviewer-avatar {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
  color: #fff !important;
}
#reviews .rev-btn {
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.8) !important;
}
#reviews .rev-btn:hover {
  background: rgba(56,189,248,.2) !important;
  color: #fff !important;
}

/* ── VS2: BUTTONS (global) ────────────────────────────────── */
.btn-outline {
  border-color: rgba(14,124,184,.4) !important;
  color: var(--vs-sea) !important;
}
.btn-outline:hover {
  background: var(--vs-sea) !important;
  color: #fff !important;
  border-color: var(--vs-sea) !important;
}
/* Override inline purple buttons in tools */
#tools [style*="7c3aed"],
#tools [style*="a855f7"] {
  background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important;
}
#tools [style*="16a34a"],
#tools [style*="22c55e"] {
  background: linear-gradient(135deg, var(--vs-ocean), var(--vs-sea)) !important;
}

/* ── VS2: JET BANNER ─────────────────────────────────────── */
.jet-banner {
  position: relative; overflow: hidden;
  height: 320px; background: var(--vs-ocean);
}
.jet-banner-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 38%;
  transition: transform 7s ease;
}
.jet-banner:hover .jet-banner-img { transform: scale(1.05); }
.jet-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,43,79,.92) 0%,
    rgba(6,43,79,.65) 45%,
    rgba(7,28,51,.2)  100%
  );
}
.jet-banner-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0;
}
.jet-banner-content h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  font-weight: 900; color: #fff; margin-bottom: 10px;
  line-height: 1.12; text-shadow: 0 2px 20px rgba(0,0,0,.4);
  letter-spacing: -.4px;
}
.jet-banner-content p {
  font-size: 1rem; color: rgba(255,255,255,.78);
  margin-bottom: 28px; line-height: 1.65; max-width: 480px;
}
.jet-banner-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px; border-radius: 99px;
  background: linear-gradient(135deg, var(--vs-gold), #f97316);
  color: #1a0f00; font-weight: 900; font-size: 1rem;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 26px rgba(251,191,36,.45); transition: all .25s;
}
.jet-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(251,191,36,.55); }
@media (max-width: 768px) {
  .jet-banner { height: 220px; }
  .jet-banner-content h2 { font-size: 1.45rem; }
  .jet-banner-content p  { font-size: .88rem; margin-bottom: 18px; }
  .jet-banner-overlay { background: rgba(6,43,79,.82); }
}

/* ── VS2: TRUST STRIP (on light bg) ──────────────────────── */
.trust-strip { background: #fff !important; border-color: rgba(14,124,184,.12) !important; }
.trust-item { color: var(--vs-ocean) !important; }

/* ── VS2: AI SECTION stays dark, harmonize ──────────────── */
.ai-section { background: linear-gradient(135deg, var(--vs-navy) 0%, #1e1b4b 50%, var(--vs-navy) 100%) !important; }

/* ── VS2: PARTNERS SECTION ────────────────────────────────── */
.partner-logo {
  color: rgba(255,255,255,.7) !important;
  font-weight: 700 !important;
}

/* ── VS2: NEWSLETTER FORM ─────────────────────────────────── */
.newsletter-form input {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: #fff !important;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45) !important; }
.newsletter-form button {
  background: linear-gradient(135deg, var(--vs-sky), var(--vs-sea)) !important;
  font-weight: 800 !important;
}

/* ── VS2: MOBILE BOTTOM NAV on ice bg ──────────────────────  */
.mobile-bottom-nav {
  background: rgba(6,43,79,.96) !important;
  border-top-color: rgba(56,189,248,.15) !important;
}
.mbn-item { color: rgba(255,255,255,.5) !important; }
.mbn-item:hover, .mbn-item.active { color: var(--vs-sky) !important; }
.mbn-cta { background: linear-gradient(135deg, var(--vs-sea), var(--vs-sky)) !important; color: #fff !important; }

/* ── VS2: RESPONSIVE FINE-TUNE ────────────────────────────── */
@media (max-width: 768px) {
  .section-header { margin-bottom: 32px !important; }
  .section-header h2 { font-size: clamp(1.6rem,5.5vw,2.1rem) !important; }
  #features .section-header h2,
  #hotels .section-header h2,
  #tips .section-header h2,
  #destinations .section-header h2 { color: var(--vs-ocean) !important; }
  #reviews .section-header h2 { color: #fff !important; }
}

/* ════════════════════════════════════════════════════════════
   OCEAN TONE — Replace dark-mode navy with sea-blue elegance
   Fresh · Airy · Blue · Premium · Alive
   ════════════════════════════════════════════════════════════ */

/* ── OT: OCEAN PALETTE ────────────────────────────────────── */
:root {
  --ot-deep:   #084F72;   /* deep ocean — replaces near-black navy */
  --ot-ocean:  #0B6FA0;   /* ocean blue  */
  --ot-sea:    #0E7CB8;   /* sea blue    */
  --ot-sky:    #38BDF8;   /* sky blue    */
  --ot-aqua:   #67E8F9;   /* aqua        */
  --ot-mist:   #B8E8F9;   /* light mist  */
  --ot-ice:    #EEF9FF;   /* ice         */
  --ot-ice2:   #DDF4FF;   /* ice soft    */
}

/* ── OT: HOT DEALS — ocean gradient, not near-black ───────── */
.deals-section {
  background: linear-gradient(160deg, #084F72 0%, #0E7CB8 65%, #1a8fd1 100%) !important;
}
/* amber accent top line stays */
.deals-section::before {
  background: linear-gradient(90deg, transparent, #FBBF24 50%, transparent) !important;
  height: 2px; top: 0;
}
/* Deal cards: blue-glass on ocean background */
.deal-card {
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
.deal-card:first-child {
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(251,191,36,.5) !important;
  box-shadow: 0 4px 32px rgba(8,79,114,.35), 0 0 0 1px rgba(251,191,36,.28), inset 0 1px 0 rgba(255,255,255,.15) !important;
}
.deal-card:hover {
  background: rgba(255,255,255,.18) !important;
  box-shadow: 0 20px 56px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.35) !important;
  transform: translateY(-10px) scale(1.015) !important;
}
.deal-card .deal-img-badge {
  background: rgba(8,79,114,.75) !important;
  backdrop-filter: blur(8px);
}
.btn-deal {
  background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.12)) !important;
  border: 1.5px solid rgba(255,255,255,.45) !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px);
}
.btn-deal:hover {
  background: rgba(255,255,255,.35) !important;
  border-color: rgba(255,255,255,.7) !important;
  box-shadow: 0 4px 20px rgba(255,255,255,.2) !important;
}
/* Countdown on ocean bg */
.cd-item b    { color: #67E8F9 !important; }
.cd-item span { color: rgba(255,255,255,.6) !important; }
/* Deal live row */
.deal-live-row  { border-color: rgba(255,255,255,.12) !important; }
.deal-viewers, .deal-updated { color: rgba(255,255,255,.55) !important; }
.deal-spots   { color: #fde68a !important; }
.dsp-text     { color: rgba(255,255,255,.55) !important; }
.deal-badges .deal-badge {
  background: rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.9) !important;
  border-color: rgba(255,255,255,.2) !important;
}
.deal-social-proof { border-color: rgba(255,255,255,.12) !important; }
/* Section header on ocean bg */
.deals-section .section-header h2 { color: #fff !important; }
.deals-section .section-header p  { color: rgba(255,255,255,.8) !important; }
.deals-section .section-badge.amber { /* stays gold */ }
/* "לכל הדילים" button on ocean */
.deals-section .btn-outline {
  border-color: rgba(255,255,255,.45) !important;
  color: #fff !important;
}
.deals-section .btn-outline:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.7) !important;
}

/* ── OT: FLIGHT PATH DIVIDER 1 — ice → ocean (not navy) ──── */
#fpd1 {
  background: linear-gradient(180deg, var(--ot-ice) 0%, #084F72 100%) !important;
}

/* ── OT: FEATURES — ocean start, not near-black ───────────── */
#features {
  background: linear-gradient(180deg, #0B6FA0 0%, #0E7CB8 5%, #DDF4FF 22%, var(--ot-ice) 100%) !important;
}

/* ── OT: REVIEWS — ocean blue, not dark navy ──────────────── */
#reviews {
  background: linear-gradient(160deg, #084F72 0%, #0B6FA0 55%, #0E7CB8 100%) !important;
}
#reviews .review-card {
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  backdrop-filter: blur(10px);
}
#reviews .reviewer-avatar {
  background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.1)) !important;
  color: #fff !important; font-weight: 900 !important;
}
#reviews .rev-btn {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.25) !important;
  color: rgba(255,255,255,.85) !important;
}

/* ── OT: MAP — ocean into ice, airy ───────────────────────── */
.map-section {
  background: linear-gradient(180deg, #0E7CB8 0%, #38BDF8 35%, #B8E8F9 65%, var(--ot-ice) 100%) !important;
}
.map-section .section-header h2 { color: #fff !important; }
.map-section .section-header p  { color: rgba(255,255,255,.8) !important; }
.map-section .section-badge { background: rgba(255,255,255,.2) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.3) !important; }

/* ── OT: AI SECTION — ocean gradient, not dark room ──────── */
.ai-section {
  background: linear-gradient(135deg, #084F72 0%, #0E7CB8 55%, #1a8fd1 100%) !important;
}
.ai-section::before {
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(56,189,248,.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(103,232,249,.18) 0%, transparent 60%) !important;
}
.ai-demo-card {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.22) !important;
  backdrop-filter: blur(16px);
}
.ai-demo-msg.user {
  background: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.95) !important;
}
.ai-demo-msg.bot {
  background: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.9) !important;
}
.ai-demo-chip {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.9) !important;
}
.ai-demo-chip:hover { background: rgba(255,255,255,.25) !important; }

/* ── OT: PARTNERS — ocean blue, not near-black ─────────────── */
.partners-section {
  background: linear-gradient(135deg, #0B6FA0 0%, #084F72 100%) !important;
}
.partner-logo {
  color: rgba(255,255,255,.75) !important;
  border-color: rgba(255,255,255,.15) !important;
}
.partners-label { color: rgba(255,255,255,.5) !important; }

/* ── OT: NEWSLETTER — ocean blue, not near-black ───────────── */
.newsletter-section {
  background: linear-gradient(135deg, #084F72 0%, #0E7CB8 100%) !important;
}

/* ── OT: FOOTER — deep ocean, not black ────────────────────── */
.footer { background: linear-gradient(180deg, #084F72 0%, #062B4F 100%) !important; }

/* ── OT: DEPARTURE BOARD — ocean header not black ──────────── */
.dep-board {
  background: linear-gradient(90deg, #084F72, #0B6FA0) !important;
  border-bottom-color: rgba(103,232,249,.2) !important;
}
.dep-board-badge {
  background: rgba(0,0,0,.2) !important;
  border-left-color: rgba(103,232,249,.25) !important;
  color: #67E8F9 !important;
}
.dep-board-badge i { color: #4ade80 !important; }
.dep-route { color: rgba(255,255,255,.6) !important; }

/* ── OT: NAVBAR — ocean glass, not near-black glass ─────────── */
.navbar.scrolled {
  background: rgba(8,79,114,.92) !important;
  border-bottom-color: rgba(103,232,249,.18) !important;
}

/* ── OT: MOBILE BOTTOM NAV — ocean not black ────────────────── */
.mobile-bottom-nav {
  background: rgba(8,79,114,.96) !important;
  border-top-color: rgba(103,232,249,.18) !important;
}

/* ── OT: HERO LIVE ROW — ocean tint ─────────────────────────── */
.hero-live-row {
  background: rgba(11,111,160,.28) !important;
  border-color: rgba(56,189,248,.4) !important;
}

/* ── OT: JET BANNER — ocean overlay not black ───────────────── */
.jet-banner-overlay {
  background: linear-gradient(
    100deg,
    rgba(8,79,114,.88) 0%,
    rgba(14,124,184,.62) 45%,
    rgba(14,124,184,.18) 100%
  ) !important;
}

/* ── OT: TRUST STRIP — light aqua tint ──────────────────────── */
.trust-strip {
  background: linear-gradient(135deg, #fff 0%, #F0FBFF 100%) !important;
  border-color: rgba(14,124,184,.1) !important;
}

/* ── OT: AMBIENT PLANE — brighter aqua ──────────────────────── */
.ambient-plane { color: rgba(103,232,249,.65) !important; }
.ambient-trail { background: linear-gradient(to right, transparent, rgba(103,232,249,.45)) !important; }

/* ── OT: RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .deals-section { background: linear-gradient(180deg, #084F72 0%, #0E7CB8 100%) !important; }
  #reviews       { background: linear-gradient(180deg, #084F72 0%, #0B6FA0 100%) !important; }
  .map-section   { background: linear-gradient(180deg, #0E7CB8 0%, #DDF4FF 100%) !important; }
  .map-section .section-header h2 { color: #fff !important; }
}
