/* ============================================================
   FirstBellHolidays.com – Main Stylesheet
   firstbellholidays.com | (866) 969-5849
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: #1e293b; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --primary:        #0044cc;
  --primary-dark:   #002f99;
  --primary-light:  #e8f0fe;
  --accent:         #ff6b35;
  --accent-dark:    #e5571f;
  --gold:           #f4b942;
  --dark:           #0a1628;
  --dark-2:         #1e293b;
  --gray:           #64748b;
  --mid-gray:       #94a3b8;
  --light-gray:     #f1f5f9;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --success:        #10b981;
  --warning:        #f59e0b;
  --shadow:         0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:      0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.14);
  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --transition:     0.22s ease;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p  { color: var(--gray); line-height: 1.75; }

/* ── UTILITIES ── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm   { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.text-center    { text-align: center; }
.text-white     { color: #fff !important; }
.fw-700         { font-weight: 700; }
.mt-8           { margin-top: 8px; }
.mt-16          { margin-top: 16px; }
.mt-24          { margin-top: 24px; }
.mb-8           { margin-bottom: 8px; }
.d-flex         { display: flex; }
.align-center   { align-items: center; }
.gap-8          { gap: 8px; }
.gap-12         { gap: 12px; }
.section        { padding: 80px 0; }
.section-alt    { padding: 80px 0; background: var(--light-gray); }

/* ── LABELS / TAGS ── */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag.orange { background: #fff3ee; color: var(--accent); }
.section-tag.gold   { background: #fffbea; color: #92680a; }

/* ── SECTION HEADER ── */
.section-header        { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header .section-title  { margin-bottom: 12px; }
.section-header .section-sub   { color: var(--gray); font-size: 1.05rem; max-width: 580px; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,68,204,0.28);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 24px rgba(0,68,204,0.38); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.32);
}
.btn-accent:hover { background: var(--accent-dark); box-shadow: 0 8px 24px rgba(255,107,53,0.42); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--gold); font-weight: 600; transition: color var(--transition); }
.top-bar a:hover { color: #fff; }
.top-bar .left, .top-bar .right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ── HEADER ── */
.site-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), #0066ff);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.logo-text .brand-name {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.logo-text .brand-tagline {
  font-size: 0.68rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* MAIN NAV */
.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav > a, .dropdown-toggle {
  color: var(--dark-2);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav > a:hover, .dropdown-toggle:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.87rem;
  color: var(--dark-2);
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-menu .dm-section {
  padding: 6px 14px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mid-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

/* ── HERO (HOMEPAGE) ── */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #0044cc 58%, #1a6fff 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 75% 50%, rgba(255,107,53,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-deco { position: absolute; right: -40px; bottom: -30px; font-size: 22rem; opacity: 0.04; transform: rotate(-18deg); pointer-events: none; user-select: none; }
.hero-content { position: relative; z-index: 2; padding: 90px 0 70px; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px; padding: 7px 18px;
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.12; }
.hero h1 span { color: var(--gold); }
.hero .hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 38px; max-width: 530px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 24px; margin-top: 50px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.72); font-size: 0.86rem; font-weight: 500; }
.trust-item .ti-icon { font-size: 1.25rem; }

/* ── PHONE STRIP ── */
.phone-strip { background: var(--gold); padding: 20px 0; }
.phone-strip .inner { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.phone-strip .ps-text { font-size: 1rem; font-weight: 600; color: var(--dark); }
.phone-strip .ps-num { font-size: 1.65rem; font-weight: 800; color: var(--primary-dark); display: flex; align-items: center; gap: 8px; }
.phone-strip .ps-avail { font-size: 0.82rem; color: #444; font-weight: 500; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { opacity: 1; }
.svc-icon { width: 56px; height: 56px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.65rem; margin-bottom: 18px; }
.svc-icon.blue   { background: var(--primary-light); }
.svc-icon.orange { background: #fff3ee; }
.svc-icon.green  { background: #e6f9f2; }
.svc-icon.purple { background: #f0e8ff; }
.svc-icon.red    { background: #fff0f0; }
.svc-icon.gold   { background: #fffbea; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.service-card p  { font-size: 0.9rem; margin-bottom: 16px; }
.svc-link { color: var(--primary); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 5px; transition: color var(--transition); }
.svc-link:hover { color: var(--accent); }

/* ── AIRLINES GRID ── */
.airlines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.airline-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.airline-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.airline-card .al-icon { font-size: 2.6rem; margin-bottom: 12px; }
.airline-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.airline-card .al-services { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.al-tag { background: var(--primary-light); color: var(--primary); font-size: 0.7rem; font-weight: 600; padding: 3px 9px; border-radius: 50px; }
.al-tag.orange { background: #fff3ee; color: var(--accent); }
.al-tag.green  { background: #e6f9f2; color: #0d8a5c; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.step-card { text-align: center; padding: 18px; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; color: #fff;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(0,68,204,0.32);
}
.step-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.step-card p  { font-size: 0.88rem; color: var(--gray); }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.why-card {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 22px; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.why-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.why-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.why-card p  { font-size: 0.87rem; color: var(--gray); margin: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 64px 52px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: '✈'; position: absolute; right: 50px; top: 50%; transform: translateY(-50%); font-size: 9rem; opacity: 0.05; pointer-events: none; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p  { color: rgba(255,255,255,0.78); margin-bottom: 32px; font-size: 1.05rem; }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.cd-icon { width: 46px; height: 46px; background: var(--primary-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cd-text strong { display: block; font-weight: 700; margin-bottom: 3px; color: var(--dark); font-size: 0.92rem; }
.cd-text a { color: var(--primary); font-weight: 500; font-size: 0.92rem; }
.cd-text a:hover { color: var(--accent); }
.cd-text span { color: var(--gray); font-size: 0.88rem; }
.contact-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl); padding: 44px 36px;
  color: #fff; text-align: center;
}
.contact-card .cc-num { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; color: var(--gold); margin: 14px 0 8px; letter-spacing: 1px; }
.contact-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.contact-card .cc-hours { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.86rem; line-height: 1.9; color: rgba(255,255,255,0.65); }

/* ── DISCLAIMER STRIP ── */
.disclaimer-strip { background: #fffde7; border-top: 3px solid var(--gold); padding: 28px 0; }
.disclaimer-strip p { font-size: 0.79rem; color: #555; line-height: 1.78; max-width: 1000px; margin: 0 auto; text-align: center; }
.disclaimer-strip strong { color: var(--dark); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 44px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.86rem; margin-top: 14px; line-height: 1.72; max-width: 270px; }
.footer-brand .fb-name { font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-brand .fb-iata { margin-top: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-col h4 { font-size: 0.83rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.58); font-size: 0.86rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-phone a { font-size: 1.2rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 8px; }
.footer-phone .fp-sub { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-contact-info { margin-top: 14px; font-size: 0.84rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-contact-info a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.4); }
.iata-badge { background: rgba(255,255,255,0.07); padding: 7px 16px; border-radius: 7px; font-size: 0.77rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }

/* ── POLICY PAGES ── */
.policy-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, #2979ff 100%); padding: 72px 0 50px; position: relative; overflow: hidden; }
.policy-hero::after { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); font-size: 8rem; opacity: 0.06; pointer-events: none; }
.policy-hero.terms::after  { content: '📋'; }
.policy-hero.privacy::after { content: '🔒'; }
.policy-hero.refund::after { content: '💲'; }
.policy-hero.disclaimer-pg::after { content: '⚖️'; }
.policy-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.58); margin-bottom: 12px; }
.policy-hero .breadcrumb a { color: var(--gold); }
.policy-hero .breadcrumb span { margin: 0 6px; }
.policy-hero h1 { color: #fff; margin-bottom: 10px; }
.policy-hero p.policy-date { color: rgba(255,255,255,0.68); font-size: 0.88rem; }
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 50px; padding: 60px 0 90px; align-items: start; }
.policy-sidebar { position: sticky; top: 88px; }
.psb-card { background: var(--light-gray); border-radius: var(--radius); padding: 22px; border: 1.5px solid var(--border); }
.psb-card h3 { font-size: 0.79rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 14px; }
.psb-card ul li a { color: var(--dark-2); font-size: 0.86rem; display: block; padding: 7px 12px; border-radius: 7px; transition: background var(--transition), color var(--transition); }
.psb-card ul li a:hover { background: var(--primary-light); color: var(--primary); }
.psb-phone { margin-top: 18px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius); padding: 20px; text-align: center; color: #fff; }
.psb-phone p { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-bottom: 8px; }
.psb-phone a { font-size: 1.05rem; font-weight: 800; color: var(--gold); display: block; }
.psb-phone span { font-size: 0.74rem; color: rgba(255,255,255,0.5); display: block; margin-top: 5px; }
.policy-body h2 { font-size: 1.15rem; color: var(--primary); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary-light); }
.policy-body p { font-size: 0.94rem; line-height: 1.82; margin-bottom: 14px; color: #374151; }
.policy-body ul { padding-left: 20px; margin-bottom: 16px; }
.policy-body ul li { font-size: 0.94rem; line-height: 1.82; margin-bottom: 8px; color: #374151; }
.policy-body ul li strong { color: var(--dark); }
.alert-box { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 8px; padding: 16px 20px; margin: 22px 0; }
.alert-box p { margin: 0; font-size: 0.9rem; color: var(--primary-dark); line-height: 1.65; }
.success-box { background: #e6f9f2; border-left: 4px solid var(--success); border-radius: 8px; padding: 16px 20px; margin: 22px 0; }
.success-box p { margin: 0; font-size: 0.9rem; color: #0d6b43; line-height: 1.65; }
.gold-box { background: #fffde7; border: 2px solid var(--gold); border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.gold-box h3 { font-size: 0.97rem; color: #7d5a00; margin-bottom: 8px; }
.gold-box p  { margin: 0; font-size: 0.9rem; color: #5d4037; line-height: 1.72; }
.sec-num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: var(--primary); color: #fff; border-radius: 50%; font-size: 0.76rem; font-weight: 700; margin-right: 8px; vertical-align: middle; }
.info-table { width: 100%; border-collapse: collapse; margin: 18px 0; border-radius: 10px; overflow: hidden; }
.info-table th { background: var(--primary); color: #fff; padding: 11px 15px; font-size: 0.86rem; text-align: left; }
.info-table td { padding: 10px 15px; font-size: 0.86rem; color: #374151; border-bottom: 1px solid var(--border); }
.info-table tr:nth-child(even) td { background: var(--light-gray); }

/* ── AIRLINE PAGES ── */
.airline-hero { padding: 80px 0 60px; position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.airline-hero .ah-overlay { position: absolute; inset: 0; z-index: 0; }
.airline-hero .container { position: relative; z-index: 2; }
.airline-hero .ah-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 6px 16px; color: var(--gold); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 20px; }
.airline-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.airline-hero .ah-sub { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 540px; line-height: 1.72; }
.airline-hero .ah-services { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.ah-svc-tag { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 50px; }
.service-section { padding: 60px 0; }
.service-section.alt { background: var(--light-gray); }
.ss-header { margin-bottom: 36px; }
.ss-header h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.ss-header p { color: var(--gray); max-width: 580px; font-size: 0.97rem; }
.ss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.ss-image-placeholder { background: linear-gradient(135deg, var(--primary-light), #dce8ff); border-radius: var(--radius-lg); height: 300px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.ss-points { display: flex; flex-direction: column; gap: 16px; }
.ss-point { display: flex; gap: 14px; align-items: flex-start; }
.ss-point-icon { width: 40px; height: 40px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.ss-point h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--dark); }
.ss-point p  { font-size: 0.88rem; margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.faq-item h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.faq-item h4::before { content: 'Q'; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--primary); color: #fff; border-radius: 50%; font-size: 0.74rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.faq-item p { font-size: 0.9rem; color: var(--gray); margin: 0; padding-left: 34px; }
.airline-cta-strip { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 48px 0; text-align: center; }
.airline-cta-strip h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.airline-cta-strip p { color: rgba(255,255,255,0.76); margin-bottom: 26px; }

/* ── AIRLINE HERO GRADIENTS ── */
.hero-aircanada      { background: linear-gradient(135deg, #8b0000 0%, #cc0000 60%, #e82020 100%); }
.hero-jetblue        { background: linear-gradient(135deg, #003087 0%, #0066cc 60%, #1a7fd4 100%); }
.hero-southwest      { background: linear-gradient(135deg, #2d3074 0%, #304cb2 55%, #4f6aca 100%); }
.hero-american       { background: linear-gradient(135deg, #001871 0%, #0058e6 58%, #1a6fff 100%); }
.hero-alaska         { background: linear-gradient(135deg, #00205b 0%, #0047bb 58%, #1a64d4 100%); }
.hero-copa           { background: linear-gradient(135deg, #00305e 0%, #005b8e 55%, #007ab5 100%); }
.hero-eva            { background: linear-gradient(135deg, #003b5c 0%, #006699 55%, #0086c3 100%); }
.hero-royaljordanian { background: linear-gradient(135deg, #012169 0%, #9b1c31 50%, #c0392b 100%); }
.hero-expedia        { background: linear-gradient(135deg, #003580 0%, #00355f 55%, #ffc72c 100%); }
.hero-aaa            { background: linear-gradient(135deg, #003087 0%, #002060 55%, #001540 100%); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { display: none; }
  .ss-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 0 50px; }
  .cta-banner { padding: 42px 24px; }
  .cta-banner::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .airlines-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .section, .section-alt { padding: 56px 0; }
}
@media (max-width: 380px) {
  .airlines-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}
.pulse { animation: pulse-phone 2.4s ease-in-out infinite; }

/* ── PRINT ── */
@media print {
  .site-header, .phone-strip, .site-footer, .disclaimer-strip, .cta-banner, .airline-cta-strip { display: none; }
  body { font-size: 12pt; }
}
