/* ════════════════════════════════════════
   AIRLINES BUZZ — REDESIGN
   White background · Red accent · Navy text
   ════════════════════════════════════════ */

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

:root {
  --navy:      #1a2e5e;
  --navy-dark: #0f1e40;
  --red:       #e63946;
  --red-dark:  #c0282f;
  --white:     #ffffff;
  --light:     #f4f7fb;
  --light2:    #eef1f8;
  --border:    #dde3ef;
  --muted:     #64748b;
  --text:      #1e293b;
  --teal-bg:   #e8f4f4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(26,46,94,0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.logo-icon svg { width: 22px; height: 22px; }

.logo-text {
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.logo-text strong { font-weight: 900; color: var(--red); }

.header-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-call-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-call-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.35);
}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  max-height: 780px;
}

/* Left side */
.hero-left {
  background: var(--white);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Agent row */
.agent-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.agent-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, #22c55e, #16a34a, #f5a623, #1a2e5e) border-box;
  overflow: hidden;
  flex-shrink: 0;
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #d1d5db;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.4px;
  background: var(--white);
}

.agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.85; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Hero headline */
.hero-headline {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

/* Subline with red underbar */
.hero-subline {
  display: inline-block;
  margin-bottom: 20px;
}

.hero-subline span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.subline-bar {
  height: 5px;
  background: var(--red);
  border-radius: 3px;
  width: 100%;
}

/* CTA label */
.hero-cta-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.hero-cta-label em {
  font-style: italic;
  font-weight: 800;
  color: var(--text);
}

/* Big call button */
.hero-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 8px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  max-width: 440px;
}

.hero-call-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.hero-call-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230,57,70,0.35);
}

/* Service items */
.hero-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.hero-service {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.svc-sq {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Right side: airplane image */
.hero-right {
  overflow: hidden;
  position: relative;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─── SEARCH SECTION ─── */
.search-section {
  background: #e8eef6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 40px;
}

.search-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.search-controls-top {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.trip-select {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.trip-select:focus { border-color: var(--red); }

.search-fields {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.field-divider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.field-group input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.field-group input:focus { border-color: var(--red); }
.field-group input::placeholder { color: #a0aec0; }

.search-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  height: 48px;
  align-self: flex-end;
  transition: background 0.2s, transform 0.2s;
}

.search-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.search-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.search-note svg { flex-shrink: 0; fill: var(--muted); }
.search-note a { color: var(--red); font-weight: 600; text-decoration: none; }
.search-note a:hover { text-decoration: underline; }

/* ─── SHARED ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--navy); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 520px; }
.section-head { margin-bottom: 52px; }

/* ─── FEATURES ─── */
.features {
  background: var(--light);
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26,46,94,0.1);
  border-color: rgba(230,57,70,0.3);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: rgba(230,57,70,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--red);
}

.feature-icon svg { width: 30px; height: 30px; }

.feature-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── BENEFITS BAR ─── */
.benefits-bar {
  background: var(--white);
  padding: 52px 24px;
  border-bottom: 1px solid var(--border);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--light);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 6px 24px rgba(26,46,94,0.07);
}

.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(230,57,70,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.benefit-icon-wrap svg { width: 22px; height: 22px; }

.benefit-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.benefit-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── WHY SECTION ─── */
.why-section {
  background: var(--light);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.why-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.why-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.why-cta-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}

.why-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.why-call-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.why-call-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.3);
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 64px rgba(26,46,94,0.12);
}

.why-badge-card {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 10px 32px rgba(26,46,94,0.12);
}

.why-badge-card { bottom: 24px; left: -24px; }
.wbc2 { bottom: auto; top: 24px; right: -24px; left: auto; }

.wbc-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.wbc-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: var(--white);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.how-section .section-head { text-align: center; }
.how-section .section-sub { max-width: 100%; text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26,46,94,0.1);
}

.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #f97171);
  position: relative;
  margin: 0 4px;
  margin-top: -20px;
}

.step-connector::after {
  content: '→';
  position: absolute;
  background: var(--white);
  padding: 0 6px;
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
}

/* ─── POPULAR ROUTES ─── */
.routes-section {
  background: var(--light);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.routes-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.view-all-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(230,57,70,0.3);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}

.view-all-link:hover {
  background: rgba(230,57,70,0.07);
  border-color: var(--red);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,46,94,0.1);
  border-color: rgba(230,57,70,0.25);
}

.route-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.route-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: var(--light2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.route-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.route-badge.hot  { background: rgba(230,57,70,0.1); color: var(--red); }
.route-badge.sale { background: rgba(234,179,8,0.12); color: #b45309; }
.route-badge.new  { background: rgba(16,185,129,0.1); color: #059669; }

.route-cities {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.route-city { flex-shrink: 0; }
.route-city.right { text-align: right; }
.city-code { font-size: 30px; font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; }
.city-name { font-size: 11px; color: var(--muted); margin-top: 2px; }

.route-arrow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.route-arrow::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--border), var(--red), var(--border));
}

.route-arrow span {
  font-size: 16px;
  background: var(--white);
  padding: 0 6px;
  position: relative;
  z-index: 1;
}

.route-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.route-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.from-label { font-size: 11px; color: var(--muted); margin-right: 4px; }
.route-price { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.pp-label { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; }

.route-book-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.route-book-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--white);
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.faq-left .section-sub { margin-bottom: 28px; }

.faq-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(230,57,70,0.3);
  padding: 11px 22px;
  border-radius: 8px;
  transition: all 0.2s;
}

.faq-call-link svg { width: 16px; height: 16px; }
.faq-call-link:hover { background: rgba(230,57,70,0.06); border-color: var(--red); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(230,57,70,0.4); }

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 14px;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--light); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230,57,70,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--red);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 18px; }

/* ─── BOTTOM CTA ─── */
.cta-section {
  background: var(--navy);
  padding: 80px 24px;
}

.cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-badges span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.cta-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-call-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.cta-call-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230,57,70,0.4);
}

/* ─── FOOTER ─── */
footer {
  background: #0d1a38;
  padding: 60px 24px 0;
  color: rgba(255,255,255,0.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand .logo { margin-bottom: 16px; }
.logo-icon-footer { background: rgba(230,57,70,0.2); color: var(--red); }
.footer-logo-text { color: var(--white); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact div { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.footer-contact svg { flex-shrink: 0; stroke: rgba(255,255,255,0.5); }
.footer-contact a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--red); }

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.support-hours .sh-badge {
  display: inline-block;
  background: rgba(230,57,70,0.2);
  color: #f87171;
  border: 1px solid rgba(230,57,70,0.3);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.support-hours p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }

.footer-call-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
}

.footer-call-btn:hover { background: var(--red-dark); }

.footer-disclaimer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(230,57,70,0.4);
  transition: background 0.2s, transform 0.2s;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero { max-height: none; }
  .search-fields { grid-template-columns: 1fr 40px 1fr 1fr; }
  .search-fields .return-field { display: none; }
  .search-fields .search-btn { grid-column: span 4; }
  .benefits-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; max-height: none; min-height: auto; }
  .hero-right { height: 300px; }
  .hero-left { padding: 48px 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { padding: 0 16px; }
  .header-call-btn { font-size: 12px; padding: 9px 14px; }
  .hero-left { padding: 36px 20px; }
  .hero-headline { font-size: 28px; text-align:center;}
  .hero-call-btn { font-size: 18px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .features { padding: 60px 16px; }
  .benefits-list { grid-template-columns: 1fr; gap: 12px; }
  .benefits-bar { padding: 40px 16px; }
  .routes-grid { grid-template-columns: 1fr; }
  .routes-section { padding: 70px 16px; }
  .why-section { padding: 70px 16px; }
  .how-section { padding: 70px 16px; }
  .faq-section { padding: 70px 16px; }
  .cta-section { padding: 60px 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .search-fields { grid-template-columns: 1fr; }
  .search-fields .search-btn { grid-column: 1; }
  .field-divider { display: none; }
  .search-section { padding: 24px 16px; }
  .cta-call-btn { font-size: 18px; padding: 16px 32px; }
  .routes-section .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-services { grid-template-columns: 1fr 1fr; }
  .cta-badges { flex-direction: column; gap: 8px; align-items: center; }
  .footer-links { flex-direction: column; align-items: center; gap: 10px; }
}
