/* =============================================
   FLIGHTASSIST — REDESIGNED STYLESHEET v2
   Premium travel brand aesthetic
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&display=swap');

:root {
  --ink:         #08112B;
  --navy:        #0D2252;
  --navy-mid:    #1A3470;
  --cobalt:      #1547C0;
  --cobalt-lite: #2E5FD4;
  --sky:         #3B8EFF;
  --sky-pale:    #E8F1FF;
  --gold:        #F5A623;
  --gold-warm:   #FFBE4A;
  --gold-deep:   #D4881A;
  --gold-tint:   #FFF8EC;
  --coral:       #FF5B3E;
  --white:       #FFFFFF;
  --snow:        #F7F9FD;
  --mist:        #EDF1F9;
  --silver:      #C8D2E5;
  --slate:       #8494B5;
  --body:        #3D4F72;
  --success:     #16A34A;
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;
  --r-xs: 4px; --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 36px; --r-pill: 100px;
  --shadow-sm: 0 1px 4px rgba(8,17,43,0.07), 0 2px 8px rgba(8,17,43,0.05);
  --shadow-md: 0 4px 16px rgba(8,17,43,0.10), 0 1px 4px rgba(8,17,43,0.06);
  --shadow-lg: 0 12px 40px rgba(8,17,43,0.14), 0 4px 12px rgba(8,17,43,0.08);
  --shadow-xl: 0 24px 64px rgba(8,17,43,0.18), 0 8px 24px rgba(8,17,43,0.10);
  --shadow-gold: 0 6px 28px rgba(245,166,35,0.40);
  --shadow-sky: 0 6px 24px rgba(59,142,255,0.32);
  --t-fast: 0.16s cubic-bezier(0.4,0,0.2,1);
  --t-base: 0.24s cubic-bezier(0.4,0,0.2,1);
  --t-slow: 0.40s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--body); background: var(--snow); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--body); line-height: 1.78; }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cobalt); background: var(--sky-pale);
  padding: 0.3rem 0.9rem; border-radius: var(--r-pill);
  border: 1px solid rgba(59,142,255,0.2); margin-bottom: 1rem;
}
.section-label-white { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.section-label-gold  { color: var(--gold-deep); background: var(--gold-tint); border-color: rgba(245,166,35,0.25); }

/* --- LAYOUT --- */
.container        { max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 6rem 0; }
.section-sm  { padding: 3.5rem 0; }
.section-alt { background: var(--mist); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  padding: 0.9rem 2rem; border-radius: var(--r-md); border: none; cursor: pointer;
  transition: var(--t-base); white-space: nowrap; min-height: 52px;
  text-decoration: none; line-height: 1; letter-spacing: -0.01em;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%);
  color: var(--ink); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-warm) 0%, #FFCF6A 100%); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,166,35,0.50); }
.btn-gold:active { transform: scale(0.98); }
.btn-cobalt { background: linear-gradient(135deg, var(--cobalt) 0%, var(--cobalt-lite) 100%); color: var(--white); box-shadow: var(--shadow-sky); }
.btn-cobalt:hover { background: linear-gradient(135deg, var(--cobalt-lite) 0%, var(--sky) 100%); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-ghost { background: transparent; color: var(--cobalt); border: 1.5px solid var(--silver); }
.btn-ghost:hover { background: var(--sky-pale); border-color: var(--cobalt); }
.btn-lg  { padding: 1.1rem 2.6rem; font-size: 1.05rem; min-height: 58px; }
.btn-sm  { padding: 0.55rem 1.2rem; font-size: 0.85rem; min-height: 40px; }
.btn-xl  { padding: 1.25rem 3rem; font-size: 1.15rem; min-height: 64px; }

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.55), var(--shadow-gold); }
  50%      { box-shadow: 0 0 0 14px rgba(245,166,35,0), var(--shadow-gold); }
}
.btn-pulse { animation: pulse-glow 2.4s ease infinite; }

/* --- HEADER --- */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,17,43,0.96); backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--t-base);
}
#site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1.5rem; }
.logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 10px; letter-spacing: -0.03em; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 12px rgba(245,166,35,0.45); }
.logo-mark svg { width: 20px; height: 20px; color: var(--ink); }
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.header-nav a { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.65); padding: 0.45rem 0.9rem; border-radius: var(--r-sm); transition: var(--t-fast); }
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header-nav a.active { color: var(--gold); }
.header-phone { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%); color: var(--ink); padding: 0.55rem 1.25rem; border-radius: var(--r-md); font-weight: 800; font-size: 0.92rem; transition: var(--t-base); box-shadow: 0 3px 14px rgba(245,166,35,0.4); flex-shrink: 0; }
.header-phone:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,166,35,0.52); }
.header-phone svg { width: 16px; height: 16px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); padding: 4px; }
.mobile-toggle svg { width: 26px; height: 26px; }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 2000; background: var(--ink); flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.6rem; font-weight: 700; color: rgba(255,255,255,0.8); padding: 0.8rem 2rem; transition: var(--t-fast); letter-spacing: -0.03em; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 1.25rem; right: 1.5rem; background: rgba(255,255,255,0.08); border: none; color: var(--white); cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--t-fast); }
.mobile-nav-close:hover { background: rgba(255,255,255,0.16); }

@media (max-width: 960px) { .header-nav { display: none; } .mobile-toggle { display: flex; } .header-phone .phone-text { display: none; } }

/* --- HERO --- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&q=85&auto=format'); background-size: cover; background-position: center 40%; opacity: 0.28; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,17,43,0.97) 0%, rgba(13,34,82,0.88) 45%, rgba(21,71,192,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding: 5rem 0 4rem; max-width: 700px; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.hero h1 .gold-word { color: var(--gold-warm); }
.hero h1 .italic-word { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 0.95em; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.72; }
.hero-phone-row { display: flex; align-items: center; gap: 14px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-number { font-family: var(--font-head); font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 800; color: var(--gold-warm); letter-spacing: -0.03em; line-height: 1; }
.hero-number-meta { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 3px; }
.live-pill { display: inline-flex; align-items: center; gap: 5px; background: rgba(22,163,74,0.16); border: 1px solid rgba(22,163,74,0.38); border-radius: var(--r-pill); padding: 0.28rem 0.7rem; font-size: 0.73rem; font-weight: 700; color: #4ade80; letter-spacing: 0.06em; text-transform: uppercase; }
.live-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: blink 1.4s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 3.5rem; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.trust-chip { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--r-pill); padding: 0.38rem 0.9rem; font-size: 0.79rem; font-weight: 600; color: rgba(255,255,255,0.82); }
.trust-chip svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* Hero visual cards — right side */
.hero-visual { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 380px; z-index: 2; padding-right: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.hero-img-stack-top { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 2px solid rgba(255,255,255,0.1); height: 195px; margin-left: 40px; }
.hero-img-stack-top img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-stack-bot { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); border: 2px solid rgba(255,255,255,0.1); height: 165px; }
.hero-img-stack-bot img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card { position: absolute; right: 370px; bottom: 22%; z-index: 3; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(14px); border-radius: var(--r-md); padding: 0.9rem 1.2rem; color: var(--white); }
.hero-float-card .fc-num { font-size: 1.6rem; font-weight: 800; color: var(--gold-warm); line-height: 1; letter-spacing: -0.03em; }
.hero-float-card .fc-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

@media (max-width: 1140px) { .hero-visual, .hero-float-card { display: none; } .hero { min-height: auto; } .hero-content { padding: 5rem 0 4rem; } }
@media (max-width: 600px) { .hero-actions { flex-direction: column; align-items: flex-start; } .hero-phone-row { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* --- AIRLINE STRIP --- */
.airline-strip { background: var(--navy); padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.airline-strip-inner { display: flex; align-items: center; gap: 1.75rem; justify-content: center; flex-wrap: wrap; }
.airline-strip-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); white-space: nowrap; }
.airline-pill { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.48); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-pill); padding: 0.28rem 0.9rem; transition: var(--t-fast); white-space: nowrap; }
.airline-pill:hover { color: var(--white); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }

/* --- STATS BAND --- */
.stats-band { background: linear-gradient(135deg, var(--cobalt) 0%, var(--navy-mid) 50%, var(--navy) 100%); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-block { text-align: center; padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-block:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; font-weight: 500; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); } .stat-block:nth-child(3), .stat-block:nth-child(4) { border-bottom: none; } }

/* --- SERVICE CARDS --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.25rem; }
.service-card { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); transition: var(--t-base); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cobalt), var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform var(--t-base); }
.service-card:hover { border-color: rgba(59,142,255,0.35); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }
/*.service-icon */
/*{ width: 54px; height: 54px; background: var(--sky-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--cobalt); transition: var(--t-base); flex-shrink: 0;*/
/*}*/
/*.service-icon svg { width: 26px; height: 26px; }*/
.service-card .service-icon img {
    max-width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}
.service-card:hover .service-icon { color: var(--white); box-shadow: var(--shadow-sky); }
.service-card h3 { margin-bottom: 0.65rem; font-size: 1.15rem; }
.service-card p  { font-size: 0.92rem; margin-bottom: 1.5rem; flex: 1; }
.service-card-dark { background: linear-gradient(145deg, var(--ink) 0%, var(--navy-mid) 100%); border-color: transparent; }
.service-card-dark h3 { color: var(--white); }
.service-card-dark p  { color: rgba(255,255,255,0.62); }
.service-card-dark .service-icon { background: rgba(245,166,35,0.15); color: var(--gold-warm); }
.service-card-dark:hover { border-color: rgba(245,166,35,0.3); }
.service-card-dark::after { background: linear-gradient(90deg, var(--gold), var(--gold-warm)); }

/* --- SPLIT IMAGE SECTIONS --- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.split-image img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.split-image:hover img { transform: scale(1.03); }
.img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--white); border-radius: var(--r-md); padding: 0.9rem 1.2rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; max-width: 230px; }
.img-badge-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: linear-gradient(135deg, var(--gold), var(--gold-warm)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.img-badge-icon svg { width: 19px; height: 19px; color: var(--ink); }
.img-badge strong { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 700; line-height: 1.25; }
.img-badge span   { font-size: 0.76rem; color: var(--slate); }

/* Photo mosaic */
.photo-mosaic { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 230px 230px; gap: 12px; }
.mosaic-item { border-radius: var(--r-lg); overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-item.tall { grid-row: 1 / 3; }

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section.reverse { direction: ltr; }
  .split-image img { height: 300px; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 190px 190px; }
  .mosaic-item.tall { grid-row: auto; }
}

/* Gallery strip */
.gallery-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 10px; border-radius: var(--r-xl); overflow: hidden; height: 360px; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(8,17,43,0.75) 0%, transparent 100%); padding: 1.5rem 1.25rem 0.85rem; color: var(--white); font-size: 0.8rem; font-weight: 600; opacity: 0; transition: opacity var(--t-base); }
.gallery-item:hover .gallery-caption { opacity: 1; }
@media (max-width: 700px) { .gallery-strip { grid-template-columns: 1fr 1fr; height: 260px; } .gallery-item:last-child { display: none; } }

/* Steps / How it works */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: calc(16.66% + 16px); right: calc(16.66% + 16px); height: 2px; background: linear-gradient(90deg, var(--cobalt) 0%, var(--sky) 100%); }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--cobalt) 0%, var(--sky) 100%); color: var(--white); font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: 0 6px 20px rgba(59,142,255,0.38); border: 3px solid var(--snow); }
.step h3 { margin-bottom: 0.5rem; }
.step p  { font-size: 0.92rem; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 2rem; } .steps-grid::before { display: none; } }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 1.75rem; transition: var(--t-base); display: flex; flex-direction: column; gap: 1rem; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(59,142,255,0.25); }
.stars { display: flex; gap: 2px; color: var(--gold); font-size: 0.95rem; }
.testimonial-quote { font-size: 0.95rem; color: var(--body); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--mist); flex-shrink: 0; background: var(--mist); }
.author-info strong { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 700; }
.author-info span   { font-size: 0.78rem; color: var(--slate); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--silver); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 0; cursor: pointer; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--ink); gap: 1rem; background: none; border: none; width: 100%; text-align: left; transition: color var(--t-fast); letter-spacing: -0.01em; }
.faq-question:hover { color: var(--cobalt); }
.faq-chevron { width: 22px; height: 22px; flex-shrink: 0; color: var(--cobalt); transition: transform var(--t-base); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.95rem; color: var(--body); }

/* CTA Band */
.cta-band { background: var(--ink); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1600&q=70&auto=format'); background-size: cover; background-position: center; opacity: 0.07; }
.cta-band-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(21,71,192,0.28) 0%, transparent 70%); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,0.62); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-phone-giant { display: block; font-family: var(--font-head); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; color: var(--gold-warm); letter-spacing: -0.03em; margin: 1.5rem 0 2.5rem; transition: color var(--t-fast); }
.cta-phone-giant:hover { color: #FFD06A; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page hero */
.page-hero { background: var(--ink); padding: 4.5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.page-hero-ov  { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,17,43,0.97) 35%, rgba(21,71,192,0.35) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 580px; }

/* Breadcrumb */
.breadcrumb { display: none; align-items: center; gap: 5px; font-size: 0.8rem; color: rgba(255,255,255,0.38); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.52); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold-warm); }
.breadcrumb span { opacity: 0.35; font-size: 0.65rem; padding: 0 2px; }

.feature-check{
    display:none;
}
/* Airline content */
.airline-content h2  { margin: 2.5rem 0 1rem; }
.airline-content h3  { margin: 1.75rem 0 0.75rem; color: var(--cobalt); }
.airline-content p   { margin-bottom: 1rem; }
.airline-content ul  { margin: 0.75rem 0 1.25rem 1.5rem; color: var(--body); line-height: 2.0; }
.airline-content ul li::marker { color: var(--cobalt); }
.info-box { background: var(--sky-pale); border-left: 4px solid var(--cobalt); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.info-box p { color: var(--ink); font-size: 0.95rem; margin: 0; }
.inline-cta { background: linear-gradient(135deg, var(--ink) 0%, var(--navy-mid) 100%); border-radius: var(--r-lg); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin: 2.5rem 0; }
.inline-cta h3 { color: var(--white); margin-bottom: 0.25rem; font-size: 1.1rem; }
.inline-cta p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }
.policy-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.91rem; border-radius: var(--r-md); overflow: hidden; }
.policy-table th { background: var(--ink); color: var(--white); font-weight: 600; padding: 0.875rem 1rem; text-align: left; }
.policy-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--silver); }
.policy-table tr:last-child td { border-bottom: none; }
.policy-table tr:hover td { background: var(--sky-pale); }
.policy-table td:last-child { font-weight: 600; color: var(--ink); }

/* Footer */
footer { background: var(--ink); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.38); margin-top: 1rem; max-width: 270px; line-height: 1.65; }
.footer-col h4  { color: rgba(255,255,255,0.82); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--sky); }
.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.22); line-height: 1.8; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* Float call button */
.float-call { display: none; position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 999; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%); color: var(--ink); font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; padding: 1rem 2.25rem; border-radius: var(--r-pill); box-shadow: 0 8px 32px rgba(245,166,35,0.55); align-items: center; gap: 8px; white-space: nowrap; animation: float-in 0.45s cubic-bezier(0.34,1.56,0.64,1) both; }
.float-call svg { width: 18px; height: 18px; }
@keyframes float-in { from { opacity:0; transform: translateX(-50%) translateY(24px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
@media (max-width: 960px) { .float-call { display: flex; } }

/* Scroll animation */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.18s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }
.fade-up:nth-child(5) { transition-delay: 0.34s; }
.fade-up:nth-child(6) { transition-delay: 0.42s; }

/* Utils */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 2rem; }
.mb-sm { margin-bottom: 1rem; } .mb-md { margin-bottom: 2rem; } .mb-lg { margin-bottom: 3rem; }
.highlight-gold { color: var(--gold); }
.highlight-sky  { color: var(--sky); }
.divider { border: none; border-top: 1px solid var(--silver); margin: 2.5rem 0; }


/* SEO / trust additions */
.trust-compliance-section { background: var(--white); padding-top: 3rem; padding-bottom: 3rem; }
.trust-compliance-card { display:grid; grid-template-columns: 1.4fr 1fr; gap:2rem; align-items:center; padding:2.25rem; border:1px solid var(--silver); border-radius:var(--r-xl); background:linear-gradient(135deg,#fff 0%,var(--sky-pale) 100%); box-shadow:var(--shadow-soft); }
.trust-compliance-card h2 { margin:.45rem 0 .65rem; }
.trust-compliance-card p { margin:0; max-width:720px; }
.trust-badges-grid { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
.trust-badges-grid span { display:flex; align-items:center; gap:.5rem; padding:.85rem 1rem; background:#fff; border:1px solid var(--silver); border-radius:var(--r-md); font-weight:700; color:var(--ink); font-size:.9rem; }
.trust-badges-grid span::before { content:'✓'; color:var(--success); font-weight:900; }
.legal-page { padding: 8rem 0 4rem; }
.legal-card { max-width: 920px; margin:0 auto; background:#fff; border:1px solid var(--silver); border-radius:var(--r-xl); padding:2.5rem; box-shadow:var(--shadow-soft); }
.legal-card h1 { margin-bottom:1rem; }
.legal-card h2 { margin-top:2rem; font-size:1.45rem; }
.legal-card p, .legal-card li { color:var(--gray-text); line-height:1.75; }
.legal-card ul { padding-left:1.2rem; }
.disclaimer-banner { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.72); padding:.85rem 1rem; border-radius:var(--r-md); font-size:.82rem; margin-top:1rem; max-width:740px; }
@media (max-width: 800px) { .trust-compliance-card { grid-template-columns:1fr; padding:1.5rem; } .trust-badges-grid { grid-template-columns:1fr; } .legal-card { padding:1.5rem; } }
