/* ASAP Flight Booking — Shared Styles */
:root{
  --navy:#05152e;--navy2:#0a2240;--blue:#1a56db;--blue-lt:#2563eb;
  --orange:#f05a28;--orange-lt:#ff6b35;--white:#ffffff;--off:#f0f5ff;
  --gray:#64748b;--light:#e8f0fe;--green:#16a34a;--border:#dde4f0;
  --text:#0f172a;--text2:#475569;--r:10px;--shadow:0 4px 24px rgba(10,34,64,.10);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Lato',sans-serif;color:var(--text);background:var(--white);overflow-x:hidden}
a{text-decoration:none;color:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* TOPBAR */
.topbar{background:var(--navy);color:rgba(255,255,255,.75);font-size:12.5px;padding:7px 0;text-align:center}
.topbar strong{color:var(--orange-lt)}
.topbar a{color:var(--orange-lt);font-weight:700}

/* HEADER */
header{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:1000;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.header-inner{max-width:1200px;margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;height:66px}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{width:38px;height:38px;background:var(--blue);border-radius:10px;display:flex;align-items:center;justify-content:center}
.logo-icon svg{width:22px;height:22px;fill:none;stroke:#fff;stroke-width:2}
.logo-text{font-family:'Playfair Display',serif;font-weight:700;font-size:20px;color:var(--navy)}
.logo-text span{color:var(--blue)}
nav{display:flex;align-items:center;gap:28px}
nav a{font-size:14px;font-weight:700;color:var(--text2);transition:color .2s}
nav a:hover,nav a.active{color:var(--blue)}
.header-cta{display:flex;align-items:center;gap:12px}
.btn-call{background:var(--orange);color:#fff;font-family:'Lato',sans-serif;font-size:14px;font-weight:700;padding:10px 20px;border-radius:8px;display:flex;align-items:center;gap:8px;transition:background .2s;white-space:nowrap}
.btn-call:hover{background:var(--orange-lt)}
.btn-call svg{width:16px;height:16px;fill:#fff}
.phone-num{font-family:'Playfair Display',serif;font-weight:700;font-size:18px;color:var(--navy);letter-spacing:-.01em}
.phone-num small{display:block;font-size:10px;font-weight:400;color:var(--gray);font-family:'Lato',sans-serif}

/* FOOTER */
footer{background:var(--navy);color:rgba(255,255,255,.6);padding:56px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.footer-brand p{font-size:13px;line-height:1.7;color:rgba(255,255,255,.5);margin:12px 0 16px}
.footer-brand .logo-text{color:#fff;font-size:22px}
.agency-note{font-size:11.5px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:6px;padding:10px 12px;line-height:1.6;color:rgba(255,255,255,.5)}
.footer-col h4{font-family:'Playfair Display',serif;font-size:13px;font-weight:700;color:#fff;margin-bottom:14px;letter-spacing:.03em}
.footer-col a{display:block;font-size:13px;color:rgba(255,255,255,.5);margin-bottom:8px;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px}
.footer-legal{display:flex;gap:20px;flex-wrap:wrap}
.footer-legal a{font-size:12px;color:rgba(255,255,255,.4)}
.footer-legal a:hover{color:rgba(255,255,255,.8)}

/* STICKY MOBILE CALL */
.sticky-call{display:none;position:fixed;bottom:0;left:0;right:0;background:var(--orange);color:#fff;padding:14px 20px;text-align:center;z-index:9999;font-family:'Playfair Display',serif;font-size:18px;font-weight:700;align-items:center;justify-content:center;gap:10px}
.sticky-call svg{width:20px;height:20px;fill:#fff}
@media(max-width:768px){.sticky-call{display:flex}}

/* PAGE HERO (inner pages) */
.page-hero{background:var(--navy);padding:50px 0 40px;text-align:center}
.page-hero h1{font-family:'Playfair Display',serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:800;color:#fff;margin-bottom:10px}
.page-hero p{font-size:15px;color:rgba(255,255,255,.6);max-width:500px;margin:0 auto}
.page-hero .breadcrumb{font-size:12px;color:rgba(255,255,255,.4);margin-bottom:16px}
.page-hero .breadcrumb a{color:rgba(255,255,255,.5)}
.page-hero .breadcrumb span{color:var(--orange-lt)}

/* PAGE CONTENT */
.page-content{max-width:860px;margin:0 auto;padding:56px 20px}
.page-content h2{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:700;color:var(--navy);margin:36px 0 12px;padding-top:8px;border-top:1px solid var(--border)}
.page-content h2:first-child{border-top:none;margin-top:0}
.page-content h3{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;color:var(--navy);margin:20px 0 8px}
.page-content p{font-size:14.5px;color:var(--text2);line-height:1.8;margin-bottom:12px}
.page-content ul{padding-left:20px;margin-bottom:12px}
.page-content ul li{font-size:14.5px;color:var(--text2);line-height:1.8;margin-bottom:6px}
.page-content a{color:var(--blue)}
.highlight-box{background:var(--off);border:1px solid var(--border);border-left:4px solid var(--orange);border-radius:0 8px 8px 0;padding:16px 20px;margin:20px 0}
.highlight-box p{margin:0;font-size:14px;color:var(--text)}

/* COMPLIANCE STRIP */
.compliance{background:#fff;padding:22px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.compliance-inner{max-width:1200px;margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:24px}
.comp-badge{display:flex;align-items:center;gap:8px;font-size:12.5px;color:var(--gray)}
.comp-badge svg{width:18px;height:18px;fill:none;stroke:var(--blue);stroke-width:1.5}
.comp-badge strong{color:var(--navy);font-weight:700}
.comp-sep{width:1px;height:18px;background:var(--border)}

@media(max-width:900px){nav,.phone-num{display:none}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.footer-grid{grid-template-columns:1fr}}
