/* =====================================================
   DEALSFARE / VOLRABAIS — Main Stylesheet
   Professional travel deal site design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #1a2f47;
  --navy-soft: #243850;
  --orange:    #F4811F;
  --orange-h:  #e06f10;
  --red:       #E63946;
  --green:     #10b981;
  --teal:      #2EC4B6;
  --bg:        #F0F4F8;
  --card:      #ffffff;
  --border:    #e2e8f0;
  --text:      #1a202c;
  --text-2:    #4a5568;
  --text-3:    #718096;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --radius:    12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

img { max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-h); }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.topbar-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-logo span { color: #fff; }
.topbar-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}
.topbar-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  list-style: none;
}
.topbar-nav a {
  color: #a0aec0;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.topbar-nav a:hover, .topbar-nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
}
.lang-toggle a {
  color: #718096;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.lang-toggle a.active { background: var(--orange); color: #fff; }

.btn-nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background .2s !important;
}
.btn-nav-cta:hover { background: var(--orange-h) !important; color: #fff !important; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #1a3a5c 50%, #0D1B2A 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
  text-align: center;
}
.hero::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.02'%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");
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: #a0aec0;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--orange); }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: var(--orange-h); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,129,31,.4); }
.btn-hero-secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.15); color: #fff; }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---- MAIN CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTIONS ---- */
.section { padding: 60px 0; }
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-3);
  font-size: 15px;
}

/* ---- FILTER BAR ---- */
.filter-bar {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar label { font-size: 13px; font-weight: 600; color: var(--text-2); margin-right: 4px; }
.filter-chip {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
.filter-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-sort select {
  padding: 6px 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

/* ---- DEAL CARDS GRID ---- */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* ---- DEAL CARD ---- */
.deal-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.deal-card.card--mega {
  border-color: var(--red);
  background: linear-gradient(to bottom, #fff9f9, #fff);
}
.deal-card.card--mega:hover { border-color: var(--red); }

.badge-mega {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, #c0392b, #E63946, #ff4757);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  padding: 5px 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: -16px -20px 10px -20px;
  border-radius: 10px 10px 0 0;
  animation: pulse-badge 2.5s infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.card-route {
  padding: 16px 20px 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Destination photo backgrounds per region */
.card-route[data-region="caribbean"] {
  background-image: linear-gradient(rgba(13,27,42,.72), rgba(13,27,42,.88)),
    url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=600&q=60&auto=format&fit=crop');
}
.card-route[data-region="europe"] {
  background-image: linear-gradient(rgba(13,27,42,.72), rgba(13,27,42,.88)),
    url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=600&q=60&auto=format&fit=crop');
}
.card-route[data-region="asia"] {
  background-image: linear-gradient(rgba(13,27,42,.72), rgba(13,27,42,.88)),
    url('https://images.unsplash.com/photo-1480796927426-f609979314bd?w=600&q=60&auto=format&fit=crop');
}
.card-route[data-region="usa"] {
  background-image: linear-gradient(rgba(13,27,42,.72), rgba(13,27,42,.88)),
    url('https://images.unsplash.com/photo-1485738422979-f5c462d49f74?w=600&q=60&auto=format&fit=crop');
}
.card-route[data-region="south_america"] {
  background-image: linear-gradient(rgba(13,27,42,.72), rgba(13,27,42,.88)),
    url('https://images.unsplash.com/photo-1544967082-d9d25d867d66?w=600&q=60&auto=format&fit=crop');
}
.card-city { text-align: center; }
.card-city--to { text-align: center; }
.city-code {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #fff;
}
.city-name {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}
.city-country {
  display: block;
  font-size: 10px;
  color: #64748b;
}
.card-flight-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}
.flight-date {
  font-size: 10px;
  color: #94a3b8;
  text-align: center;
  white-space: nowrap;
}
.flight-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.flight-icon {
  font-size: 18px;
  color: var(--orange);
}
.flight-dashes {
  flex: 1;
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,.2);
}

.card-details {
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.detail-item {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-footer {
  padding: 16px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-pricing { display: flex; flex-direction: column; gap: 2px; }
.price-regular { font-size: 13px; color: var(--text-3); }
.price-regular s { color: var(--red); }
.price-now {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-now .pp { font-size: 12px; font-weight: 500; color: var(--text-3); }

.savings-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 18px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.savings-badge--fire {
  background: linear-gradient(135deg, #fff0f0, #ffe4e1);
  color: var(--red);
}

.btn-book {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s;
  margin: 0;
  border-radius: 0 0 calc(var(--radius) - 2px) calc(var(--radius) - 2px);
}
.btn-book:hover { background: var(--orange-h); color: #fff; }

/* ---- PERSONALIZED ALERT SECTION ---- */
.alert-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.alert-section::after {
  content: '✈';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  opacity: .03;
  pointer-events: none;
}
.alert-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.alert-pitch h2 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.alert-pitch p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.alert-bullet {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alert-bullet li {
  color: #a0aec0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-bullet li::before {
  content: '✓';
  background: var(--orange);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.alert-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.alert-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

/* ---- FORM ELEMENTS ---- */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color .2s;
  background: #fff;
}
.form-input:focus {
  outline: none;
  border-color: var(--orange);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.checkbox-pill input[type=checkbox] { display: none; }
.checkbox-pill label {
  padding: 6px 14px;
  border: 2px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--text-2);
  white-space: nowrap;
  display: block;
}
.checkbox-pill input:checked + label {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--orange-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,129,31,.4);
}
.form-terms {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 10px;
}

/* ---- HOW IT WORKS ---- */
.howitworks { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ---- FLASH MESSAGE ---- */
.flash {
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 14px;
}
.flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.flash-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.flash-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: #718096;
  padding: 48px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: #718096;
  font-size: 13px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 11px;
  color: #4a5568;
  line-height: 1.6;
  text-align: center;
}

/* ---- NO DEALS ---- */
.no-deals {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-3);
}
.no-deals-icon { font-size: 48px; margin-bottom: 16px; display: block; }

/* ---- SUCCESS PAGE ---- */
.success-box {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;
  background: #fff;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.success-box .success-icon { font-size: 64px; margin-bottom: 16px; display: block; }
.success-box h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.success-box p { color: var(--text-3); font-size: 15px; line-height: 1.6; }

/* ---- HAMBURGER MOBILE ---- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .alert-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .alert-section::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar-nav, .topbar-right { display: none; }
  .topbar-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .topbar-inner { justify-content: space-between; }
  .hamburger { display: block; }
  .hero { padding: 60px 20px 80px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 24px; }
  .deals-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .filter-bar { padding: 12px 16px; }
  .filter-sort { margin-left: 0; width: 100%; }
  .filter-sort select { width: 100%; }
}

/* ---- LOADING ---- */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-3);
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- SUBSCRIBE PAGE ---- */
.subscribe-hero {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  padding: 60px 24px 40px;
  text-align: center;
}
.subscribe-hero h1 { color: #fff; font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.subscribe-hero p  { color: #94a3b8; font-size: 17px; }
.subscribe-body    { max-width: 700px; margin: -40px auto 60px; padding: 0 24px; }
.subscribe-card    { background: #fff; border-radius: 16px; padding: 40px; box-shadow: var(--shadow-lg); }
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: all .3s;
}
.step-dot.active { background: var(--orange); transform: scale(1.3); }
.step-dot.done   { background: var(--green); }

.form-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-section-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.airport-card input[type=checkbox] { display: none; }
.airport-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.airport-card label .ac-code { font-size: 20px; font-weight: 900; color: var(--navy); }
.airport-card label .ac-city { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.airport-card input:checked + label {
  border-color: var(--orange);
  background: #fff7ed;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.region-card input[type=checkbox] { display: none; }
.region-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.region-card label .rc-icon { font-size: 28px; }
.region-card label .rc-name { font-size: 12px; font-weight: 600; color: var(--text-2); margin-top: 6px; }
.region-card input:checked + label { border-color: var(--orange); background: #fff7ed; }

.flex-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flex-slider input[type=range] {
  flex: 1;
  accent-color: var(--orange);
}
.flex-value {
  font-weight: 700;
  color: var(--orange);
  min-width: 80px;
  font-size: 14px;
}

/* ---- DEALS PAGE ---- */
.deals-hero {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  padding: 40px 24px;
  text-align: center;
}
.deals-hero h1 { color: #fff; font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.deals-hero p  { color: #94a3b8; font-size: 15px; }
