/* ============================================================
   CompareFlights — Shared Site CSS
   All pages link this. Page-specific styles go inline.
   ============================================================ */

:root {
  --navy:    #050d1a;
  --navy2:   #0d1f3c;
  --blue:    #1a56db;
  --blue2:   #3b82f6;
  --blue3:   #60a5fa;
  --sky:     #eff6ff;
  --sky2:    #dbeafe;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --bg:      #f8fafc;
  --white:   #fff;
  --green:   #16a34a;
  --green2:  #dcfce7;
  --purple:  #7c3aed;
  --purple2: #f3e8ff;
  --gold:    #f59e0b;
  --gold2:   #fef3c7;
  --red:     #dc2626;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.site-nav-logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.site-nav-logo span { color: var(--blue3); }

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.site-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.site-nav-links a.active { color: #fff; border-bottom-color: var(--blue2); }

.site-nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  margin-left: 6px;
}

.site-nav-cta:hover { background: #1d4ed8 !important; }

/* Hamburger */
.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ── PAGE HERO (dark banner) ── */
.page-hero {
  background: var(--navy);
  padding: 104px 40px 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { max-width: 1280px; margin: 0 auto; }

.page-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue3);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.65;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.3; }

/* ── SECTIONS ── */
.section { padding: 64px 40px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-hd { margin-bottom: 32px; }
.section-hd h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.section-hd p { color: var(--muted); font-size: 0.95rem; }

.section-hd-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.see-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.see-all:hover { text-decoration: underline; }

.eyebrow-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue2);
  margin-bottom: 6px;
}

/* ── GRIDS ── */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,86,219,0.12);
  transform: translateY(-2px);
  border-color: var(--sky2);
}

/* Route card */
.route-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  display: block;
}
.route-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0;
  transition: opacity 0.2s;
}
.route-card:hover { box-shadow: 0 6px 24px rgba(26,86,219,0.13); transform: translateY(-2px); border-color: transparent; }
.route-card:hover::after { opacity: 1; }
.rc-flag { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.rc-route { font-weight: 800; font-size: 0.9rem; color: var(--navy); display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.rc-arrow { color: var(--blue2); font-size: 0.75rem; }
.rc-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 12px; }
.rc-price-from { font-size: 0.68rem; color: var(--muted); }
.rc-price { font-size: 1.5rem; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.rc-tags { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }

/* Tags */
.tag { background: var(--sky); color: var(--blue); font-size: 0.66rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.tag-green { background: var(--green2); color: #15803d; }
.tag-purple { background: var(--purple2); color: var(--purple); }
.tag-amber { background: var(--gold2); color: #92400e; }
.tag-red { background: #fee2e2; color: var(--red); }

/* Airport card */
.airport-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.airport-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--purple));
  opacity: 0;
  transition: opacity 0.2s;
}
.airport-card:hover { border-color: var(--blue2); box-shadow: 0 4px 16px rgba(26,86,219,0.1); transform: translateX(4px); }
.airport-card:hover::before { opacity: 1; }
.ap-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--sky), var(--sky2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.ap-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.ap-code { font-size: 0.73rem; color: var(--muted); margin-top: 2px; }

/* Destination card — page-specific styles defined inline on each page
   (homepage uses overlay pattern, /countries/ uses flow pattern).
   site.css intentionally has no .dest-card rules to avoid conflicts. */

/* ── DARK STRIP ── */
.dark-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #1a1040 100%);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.dark-strip::before {
  content: '';
  position: absolute;
  top: -50%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.dark-strip-inner { max-width: 1280px; margin: 0 auto; }
.dark-strip-hd { text-align: center; margin-bottom: 36px; }
.dark-strip-hd h2 { color: #fff; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.dark-strip-hd p { color: rgba(255,255,255,0.45); font-size: 0.9rem; }

/* Aff card */
.aff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s;
}
.aff-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.14); transform: translateY(-3px); }
.aff-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.aff-title { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.aff-sub { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-bottom: 10px; }
.aff-rate { display: inline-block; background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a, var(--blue));
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner-text { color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.cta-banner h3 { color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.cta-banner-btn { background: #fff; color: var(--blue); font-weight: 700; padding: 14px 32px; border-radius: 10px; font-size: 0.95rem; white-space: nowrap; transition: all 0.2s; flex-shrink: 0; }
.cta-banner-btn:hover { background: var(--sky); }

/* ── ARTICLE LAYOUT ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.article-body { min-width: 0; }
.article-body p { font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; }
.article-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 36px 0 12px; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 1rem; line-height: 1.7; margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--blue); padding: 12px 20px; background: var(--sky); border-radius: 0 8px 8px 0; margin: 24px 0; color: var(--navy); font-size: 0.95rem; line-height: 1.7; }
.article-sidebar { position: sticky; top: 88px; }

/* Article card */
.article-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.25s; display: block; }
.article-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.art-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.art-cat-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.9); color: var(--blue); font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em; }
.art-body { padding: 20px; }
.art-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.art-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.art-meta { font-size: 0.73rem; color: var(--muted); margin-top: 12px; display: flex; gap: 12px; }

/* ── FILTER PILLS ── */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── SEARCH WIDGET (glass) ── */
.search-glass {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 28px 22px;
  max-width: 860px;
}
.search-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 4px; }
.stab { flex: 1; padding: 8px 16px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.5); cursor: pointer; text-align: center; transition: all 0.2s; font-family: inherit; background: none; border: none; }
.stab.active { background: rgba(255,255,255,0.12); color: #fff; }
.search-row { display: grid; grid-template-columns: 1fr 1fr 130px 130px auto; gap: 10px; align-items: end; }
.sf { display: flex; flex-direction: column; gap: 5px; }
.sf label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }
/* Default .sf inputs (light contexts: sidebars, white cards) use dark text */
.sf input, .sf select { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 0.9rem; color: var(--text); font-family: inherit; transition: border-color 0.2s; }
.sf input::placeholder { color: var(--muted); }
.sf input:focus, .sf select:focus { outline: none; border-color: var(--blue); }

/* Dark hero contexts: glass search form uses translucent white-on-dark */
.search-glass .sf input, .search-glass .sf select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #fff; }
.search-glass .sf input::placeholder { color: rgba(255,255,255,0.3); }
.search-glass .sf input:focus, .search-glass .sf select:focus { border-color: rgba(96,165,250,0.6); background: rgba(255,255,255,0.12); }
.search-glass .sf label { color: rgba(255,255,255,0.4); }
.sf select option { background: #1e293b; color: #fff; }
.sbtn { background: linear-gradient(135deg, #1a56db, #7c3aed); color: #fff; border: none; padding: 13px 28px; border-radius: 10px; font-size: 0.92rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; box-shadow: 0 4px 20px rgba(26,86,219,0.4); white-space: nowrap; }
.sbtn:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(26,86,219,0.5); }

/* Related searches */
.rs-block { background: linear-gradient(135deg, var(--sky), #f0f9ff); border: 1.5px solid var(--sky2); border-radius: 16px; padding: 22px 24px; }
.rs-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 14px; }
.rs-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.rs-tag { background: #fff; border: 1.5px solid var(--sky2); border-radius: 100px; padding: 7px 18px; font-size: 0.82rem; font-weight: 500; color: var(--navy); cursor: pointer; transition: all 0.2s; }
.rs-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── VIATOR / ACTIVITY CARDS ── */
.activity-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  display: block;
}
.activity-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.activity-img { height: 160px; background: linear-gradient(135deg, var(--sky), var(--sky2)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.activity-body { padding: 16px; }
.activity-title { font-size: 0.88rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 6px; }
.activity-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 10px; }
.activity-price { font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.activity-price-from { font-size: 0.68rem; color: var(--muted); }
.activity-rating { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--muted); margin-top: 6px; }
.activity-rating-stars { color: var(--gold); }

/* Tour card */
.tour-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s;
  display: block;
}
.tour-card:hover { box-shadow: 0 6px 24px rgba(26,86,219,0.1); transform: translateY(-2px); border-color: var(--sky2); }
.tour-provider { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.tour-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.tour-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 10px; }
.tour-price { font-size: 1.1rem; font-weight: 800; color: var(--blue); }

/* Stats bar */
.stats-bar { display: flex; gap: 32px; flex-wrap: wrap; margin: 28px 0; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-value { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 16px; text-align: left; }
.info-table td { padding: 12px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: var(--bg); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  padding: 64px 40px 28px;
}

.site-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.site-footer-logo {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.site-footer-logo span { color: var(--blue3); }
.site-footer-desc { font-size: 0.83rem; line-height: 1.75; max-width: 280px; }

.site-footer-col h4 {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.site-footer-col a {
  display: block;
  font-size: 0.83rem;
  margin-bottom: 9px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.site-footer-col a:hover { color: #fff; }

.site-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
.site-footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.site-footer-bottom a:hover { color: #fff; }

.site-footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.site-footer-disclaimer p {
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.site-footer-disclaimer strong { color: rgba(255,255,255,0.7); font-weight: 700; }

/* ── TRAVELPAYOUTS WIDGET WRAPPER + THEME OVERRIDES ──
   Widget renders inline DOM with .mewtwo-* classes.
   Strip our wrapper shadow/padding (widget has its own container)
   and recolour the widget to match our brand. */
.tp-widget-wrap { max-width: 900px; min-height: 140px; position: relative; z-index: 3; }

/* Recolour the widget's form container from TP's light-blue to our brand navy */
.tp-widget-wrap .mewtwo-flights,
.tp-widget-wrap .mewtwo-flights--virgin {
  background: var(--navy) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Inputs (Origin / Destination / Dates / Passengers) — white cards with subtle border */
.tp-widget-wrap .mewtwo-flights-origin,
.tp-widget-wrap .mewtwo-flights-destination,
.tp-widget-wrap .mewtwo-flights-dates-depart,
.tp-widget-wrap .mewtwo-flights-dates-return,
.tp-widget-wrap .mewtwo-flights-trip_class {
  background: #fff !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

/* Submit button — brand blue gradient matching our CTA style */
.tp-widget-wrap .mewtwo-flights-submit_button button,
.tp-widget-wrap .mewtwo-flights-submit_button--new button {
  background: linear-gradient(135deg, #1a56db, #7c3aed) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(26,86,219,0.4) !important;
}
.tp-widget-wrap .mewtwo-flights-submit_button button:hover,
.tp-widget-wrap .mewtwo-flights-submit_button--new button:hover {
  box-shadow: 0 6px 24px rgba(26,86,219,0.55) !important;
}

/* Hide the "Show hotels" checkbox — we don't offer hotels yet */
.tp-widget-wrap .mewtwo-show_hotels-wrapper { display: none !important; }

/* Reduce bottom padding since hotels row is gone */
.tp-widget-wrap .mewtwo-flights { padding-bottom: 14px !important; }

@media (max-width: 768px) { .tp-widget-wrap { max-width: 100%; } }

/* ── WEATHER MONTHS GRID ── */
.wx-months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; }
.wx-m { border-radius: 8px; padding: 12px 4px; text-align: center; border: 2px solid transparent; transition: transform 0.15s; }
.wx-m[data-band="cool"] { background: #dbeafe; }
.wx-m[data-band="mild"] { background: #dcfce7; }
.wx-m[data-band="warm"] { background: #fef3c7; }
.wx-m[data-band="hot"]  { background: #fee2e2; }
.wx-m[data-best="1"]    { border-color: #16a34a; }
.wx-m .wx-lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); opacity: 0.7; }
.wx-m .wx-hi  { font-size: 1.15rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-top: 4px; }
.wx-m .wx-lo  { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
@media (max-width: 900px) { .wx-months { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 480px) { .wx-months { grid-template-columns: repeat(4, 1fr); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .site-footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-row .sbtn { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 16px; }
  .site-nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(5,13,26,0.98); padding: 16px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .site-nav-links.open { display: flex; }
  .site-nav-links a { padding: 10px 16px; border-radius: 8px; font-size: 0.9rem; border-bottom: none; }
  .site-nav-cta { margin-left: 0; }
  .site-nav-toggle { display: block; }

  .page-hero { padding: 88px 16px 40px; }
  .section { padding: 48px 16px; }
  .search-glass { padding: 18px 16px 16px; }
  .search-row { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 28px 24px; }
  .site-footer { padding: 48px 16px 24px; }
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer-bottom { flex-direction: column; gap: 8px; }
  .stats-bar { gap: 20px; }
}

@media (max-width: 480px) {
  .site-footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
