/* ═══════════════════════════════════════
   deals.css — Winair
   Destination cards + promo 3-col section
═══════════════════════════════════════ */

/* ── Section ── */
.deals-section { padding: 44px var(--page-pad) 40px; background: #fff; }
.deals-inner   { max-width: var(--page-max); margin: 0 auto; }

/* Heading */
.deals-heading-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.deals-title {
  font-size: 20px; font-weight: 800;
  color: #333; font-family: var(--font-display);
}

/* Destination cards carousel wrapper */
.deals-carousel { position: relative; }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Destination Card ── */
.deal-card {
  background: #fff; border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  border: 1px solid #e8e8e8;
  cursor: pointer; transition: all .2s;
}
.deal-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
  transform: translateY(-3px);
}

/* Image */
.deal-img { width: 100%; height: 195px; position: relative; overflow: hidden; }
.deal-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.deal-card:hover .deal-img img { transform: scale(1.06); }

/* Price badge — navy, top-left of image */
.deal-price-badge {
  position: absolute; top: 0; left: 0;
  background: var(--wa-navy);
  color: #fff; padding: 7px 11px;
  border-radius: 0 0 var(--radius-sm) 0;
  line-height: 1.2;
}
.badge-from { font-size: 9px; opacity: .75; font-weight: 400; display: block; margin-bottom: 1px; }
.badge-main { display: flex; align-items: baseline; gap: 1px; }
.badge-dollar { font-size: 11px; font-weight: 700; }
.badge-amt    { font-size: 18px; font-weight: 800; font-family: var(--font-display); }
.badge-cents  { font-size: 11px; font-weight: 700; vertical-align: super; font-size: 10px; }

/* Card body */
.deal-body   { padding: 14px 16px 16px; }
.deal-from-lbl { font-size: 12px; color: #999; margin-bottom: 3px; font-weight: 400; }
.deal-dest {
  font-size: 21px; font-weight: 800;
  color: #444; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 12px; line-height: 1.1;
}

/* Book now button */
.btn-book {
  background: var(--wa-red); color: #fff;
  border: none; padding: 8px 18px;
  font-size: 13px; font-weight: 700;
  border-radius: 3px; cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s;
}
.btn-book:hover { background: var(--wa-red-dark); }

/* ════════════════════════════════════
   PROMO SECTION — 3 cols (Flash, Car, Flying Blue)
   matches winair.sx screenshot exactly
════════════════════════════════════ */
.promo-section { padding: 0 var(--page-pad) 44px; background: #fff; }
.promo-inner   { max-width: var(--page-max); margin: 0 auto; }
.promo-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Promo card base */
.promo-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  border: 1px solid #e8e8e8;
  display: flex; flex-direction: column;
  background: #fff; transition: box-shadow .2s;
}
.promo-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }

/* Image/visual area */
.promo-img { width: 100%; height: 200px; position: relative; overflow: hidden; }
.promo-img img { width: 100%; height: 100%; object-fit: cover; }

/* Flash sale card — red bg */
.promo-img-flash {
  background: var(--wa-red);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.flash-routes {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 16px;
}
.flash-route-col { display: flex; flex-direction: column; gap: 2px; }
.flash-route-name { font-size: 18px; font-weight: 900; color: #fff; font-family: var(--font-display); text-transform: uppercase; }
.flash-route-arrow { font-size: 10px; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.flash-route-dates { font-size: 10px; color: rgba(255,255,255,.8); }
.flash-price-block { text-align: right; position: absolute; bottom: 14px; right: 14px; }
.flash-badge { font-size: 10px; font-weight: 700; color: #fff; background: rgba(0,0,0,.25); padding: 2px 8px; border-radius: 2px; margin-bottom: 4px; display: inline-block; letter-spacing: 1px; }
.flash-price { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; font-family: var(--font-display); }
.flash-price sup { font-size: 20px; vertical-align: super; }
.flash-note { font-size: 10px; color: rgba(255,255,255,.75); }

/* White card body (below image) */
.promo-body { padding: 18px 20px 20px; }
.promo-title {
  font-size: 18px; font-weight: 900;
  color: var(--wa-navy); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 8px;
}
.promo-desc { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 14px; }
.btn-more {
  background: #e8e8e8; color: #555;
  border: none; padding: 8px 16px;
  font-size: 13px; font-weight: 600;
  border-radius: 3px; cursor: pointer;
  font-family: var(--font-body);
  transition: background .14s;
}
.btn-more:hover { background: #d5d5d5; }

/* Car rental card image area */
.promo-img-car {
  height: 200px; background: #F8F8F8;
  display: flex; align-items: center;
  justify-content: center; padding: 20px;
  flex-direction: column; gap: 12px;
}
.car-headline { font-size: 15px; color: #333; font-weight: 700; text-align: center; }
.car-sub      { font-size: 12px; color: #888; text-align: center; }
.car-logos    { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.car-logo     { font-size: 15px; font-weight: 900; padding: 4px 8px; border: 1.5px solid currentColor; border-radius: 2px; letter-spacing: 1px; }
.car-logo-avis   { color: #C8102E; }
.car-logo-budget { color: #F04E23; font-size: 14px; }

/* Flying Blue card */
.promo-img-fb {
  height: 200px;
  background: linear-gradient(135deg, #F0F4FF 0%, #D8E4F8 100%);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.fb-cards-stack { position: relative; width: 180px; height: 110px; }
.fb-card-back, .fb-card-front {
  position: absolute; width: 160px; height: 96px;
  border-radius: 8px; background: var(--wa-navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.fb-card-back  { top: 14px; left: 20px; transform: rotate(6deg); opacity: .7; }
.fb-card-front { top: 0; left: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 10px 14px; }
.fb-brand { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.1; }
.fb-brand span { font-size: 9px; color: rgba(255,255,255,.65); font-weight: 400; display: block; }