/* ===== GLOBAL AIR — Navy / Gold Premium Executive ===== */
:root {
    --navy: #1a2744;
    --navy-dark: #111c33;
    --navy-deep: #0b1221;
    --gold: #c9a84c;
    --gold-light: #dfc27d;
    --gold-bg: rgba(201,168,76,0.08);
    --cream: #f9f6f0;
    --cream-dark: #f0ebe0;
    --white: #ffffff;
    --gray-500: #7c7c8a;
    --gray-700: #4a4a55;
    --gray-900: #1e1e24;
    --font: 'Inter', sans-serif;
    --serif: 'Playfair Display', serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(26,39,68,0.08);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--gray-700); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.text-gold { color: var(--gold); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all .3s; cursor: pointer; border: none; text-align: center; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,0.3); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-phone { font-size: 1.05rem; }
.btn-xl { font-size: 1.2rem; padding: 18px 44px; }
.btn-sm { font-size: 0.875rem; padding: 10px 22px; }
.center-cta { text-align: center; margin-top: 40px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy-deep); padding: 8px 0; font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.tb-left { display: flex; gap: 24px; }
.tb-left i { color: var(--gold); margin-right: 6px; }
.tb-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 0.82rem; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); transition: all .3s; }
.header.scrolled { box-shadow: 0 2px 20px rgba(26,39,68,0.08); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: var(--navy); color: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.logo-icon-footer { background: var(--navy); color: var(--gold); }
.logo-text { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.9rem; color: var(--gray-700); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.header-phone-btn { display: flex; align-items: center; gap: 8px; background: var(--navy); color: var(--gold); padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: all .3s; }
.header-phone-btn:hover { background: var(--navy-dark); transform: scale(1.03); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 100%); position: relative; padding: 100px 0 80px; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 60%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); color: var(--gold); padding: 8px 18px; border-radius: 50px; font-weight: 600; font-size: 0.82rem; margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.2); }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.hero h1 .serif-italic { color: var(--gold-light); font-weight: 400; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HERO CARD PANEL ===== */
.hero-card-panel { display: flex; flex-direction: column; gap: 14px; }
.hcp-main { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px 24px; }
.hcp-header { color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hcp-items { display: flex; flex-direction: column; gap: 10px; }
.hcp-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.hcp-item i { color: var(--gold); font-size: 0.8rem; }
.hcp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hcp-small { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 18px 16px; text-align: center; }
.hcp-val { display: block; font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.hcp-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.hcp-cta-box { background: var(--gold); border-radius: var(--radius-sm); padding: 18px 20px; display: flex; align-items: center; gap: 14px; color: var(--navy-deep); }
.hcp-cta-box i { font-size: 1.3rem; }
.hcp-cta-title { font-size: 0.82rem; font-weight: 600; }
.hcp-cta-phone { font-size: 1.1rem; font-weight: 900; }

/* ===== SECTION LABELS ===== */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.section-title .serif-italic { color: var(--gold); }
.section-subtitle { font-size: 1rem; color: var(--gray-500); max-width: 520px; margin: 0 auto 48px; }

/* ===== SECTIONS GENERAL ===== */
.services, .process, .why-section, .airlines-section, .cta-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; text-align: center; }
.section-cream { background: var(--cream); }

/* ===== SERVICE GRID ===== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 50px; }
.svc-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 32px 22px; text-align: center; transition: all .3s; box-shadow: var(--shadow); }
.svc-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(201,168,76,0.12); }
.svc-icon { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 10px; background: var(--gold-bg); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.svc-card h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.svc-card p { font-size: 0.88rem; color: var(--gray-500); }

/* ===== EXECUTIVE SPLIT ===== */
.executive-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; text-align: left; }
.exec-cta-box { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.exec-label { font-size: 0.65rem; letter-spacing: 4px; font-weight: 700; color: var(--gold); }
.exec-cta-box h3 { font-size: 1.3rem; font-weight: 800; }
.exec-phone { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.exec-note { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.5); }
.exec-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ef-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-sm); padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.ef-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 8px; background: var(--gold-bg); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.ef-item h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 2px; }
.ef-item p { font-size: 0.78rem; color: var(--gray-500); }

/* ===== STEPS ===== */
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 36px 26px; text-align: center; flex: 1; min-width: 220px; max-width: 300px; transition: all .3s; box-shadow: var(--shadow); }
.step-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.step-num { font-size: 2rem; font-weight: 900; color: var(--gold); margin-bottom: 12px; }
.step-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 14px; }
.step-detail { font-weight: 700; font-size: 0.85rem; color: var(--gold); }
.step-arrow { font-size: 1.1rem; color: var(--gold); }
.step-tags { display: flex; gap: 6px; justify-content: center; }
.st-tag { background: var(--gold-bg); color: var(--gold); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.step-done { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: var(--gold); padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.82rem; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 50px; }
.stat-box { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 30px 20px; text-align: center; box-shadow: var(--shadow); }
.stat-box.gold-box { background: var(--navy); border-color: var(--navy); }
.stat-val { font-size: 2.2rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.stat-box.gold-box .stat-val { color: var(--gold); }
.stat-desc { font-size: 0.82rem; color: var(--gray-500); }
.stat-box.gold-box .stat-desc { color: rgba(255,255,255,0.6); }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 28px 18px; text-align: center; transition: all .3s; box-shadow: var(--shadow); }
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.wc-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 14px; }
.why-card h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; }
.why-card p { font-size: 0.82rem; color: var(--gray-500); }

/* ===== AIRLINES ===== */
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 36px; }
.airline-logo-item { width: 110px; height: 60px; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; padding: 10px; transition: all .3s; }
.airline-logo-item:hover { border-color: var(--gold); box-shadow: 0 4px 15px rgba(201,168,76,0.1); }
.airline-logo-item img { max-height: 40px; object-fit: contain; }
.airline-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ab-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--cream-dark); padding: 14px 24px; border-radius: 50px; font-size: 0.85rem; color: var(--navy); font-weight: 600; }
.ab-item.gold-badge { background: var(--gold-bg); border-color: var(--gold); color: var(--gold); }
.ab-val { font-weight: 900; font-size: 1.1rem; color: var(--gold); }
.ab-desc { font-size: 0.7rem; letter-spacing: 2px; color: var(--gray-500); }
.ab-icon { font-size: 1rem; color: var(--gold); }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(155deg, var(--navy-dark), var(--navy)); position: relative; }
.cta-content { text-align: center; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); color: var(--gold); padding: 8px 20px; border-radius: 50px; font-weight: 600; font-size: 0.82rem; margin-bottom: 24px; border: 1px solid rgba(201,168,76,0.25); }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 14px; font-weight: 800; }
.cta-content h2 .serif-italic { color: var(--gold-light); }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-trust { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 18px; }

/* ===== PREFOOTER ===== */
.prefooter-bar { background: var(--gold); color: var(--navy-deep); padding: 16px 0; }
.prefooter-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.prefooter-bar span { font-weight: 700; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.5); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-text { color: var(--white); }
.footer-col p { font-size: 0.88rem; margin-bottom: 14px; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: 1rem; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 0.85rem; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.85rem; }
.footer-col li a:hover { color: var(--gold); }
.footer-col li i { width: 18px; color: var(--gold); margin-right: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; }
.footer-links a:hover { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== POPUP ===== */
.popup-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.7); }
.popup-overlay.active { display: flex; align-items: stretch; justify-content: center; }
.popup-dialog { width: 100vw; height: 100dvh; background: linear-gradient(155deg, var(--navy-dark), var(--navy)); display: flex; flex-direction: column; position: relative; overflow-y: auto; cursor: pointer; }
.popup-close-btn { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.2); color: var(--white); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; }
.popup-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px 20px; text-align: center; }
.popup-logo-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(201,168,76,0.2); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 14px; }
.popup-brand { font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: 4px; margin-bottom: 24px; }
.popup-phone-box { display: flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 50px; background: var(--gold); color: var(--navy-deep); font-weight: 900; font-size: 1.4rem; margin-bottom: 18px; }
.popup-phone-box i { font-size: 1rem; }
.popup-services { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.popup-live { font-size: 0.9rem; color: var(--gold); font-weight: 600; margin-bottom: 30px; }
.popup-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--gold); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 12px; animation: pulse-gold 2s infinite; }
@keyframes pulse-gold { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); } 50% { box-shadow: 0 0 0 20px rgba(201,168,76,0); } }
.popup-click-text { font-weight: 700; font-size: 0.9rem; color: var(--gold); margin-bottom: 6px; }
.popup-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.popup-bar { background: var(--gold); padding: 18px; text-align: center; }
.popup-bar-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; color: var(--navy-deep); margin-bottom: 2px; }
.popup-bar-number { font-size: 1.3rem; font-weight: 900; color: var(--navy-deep); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .executive-split { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 768px) {
    .header-phone-text { display: none; }
    .header-phone-btn { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 50%; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero h1 { font-size: 1.9rem; }
    .services, .process, .why-section, .airlines-section, .cta-section { min-height: auto; padding: 60px 0; }
    .service-grid { grid-template-columns: 1fr; }
    .exec-features { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .stats-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .prefooter-inner { flex-direction: column; text-align: center; }
    .hcp-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .btn-xl { font-size: 1rem; padding: 14px 28px; }
    .popup-phone-box { font-size: 1.1rem; padding: 12px 24px; }
}
