/* ============================================================
   AEROWHIZZ BOOKINGS — Main Stylesheet
   Travel Agency | aerowhizzbookings.online
   ============================================================ */

/* ── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b1f4a;
  --indigo:      #1c3d8f;
  --sky:         #0ea5e9;
  --sky-dark:    #0284c7;
  --teal:        #0d9488;
  --teal-light:  #ccfbf1;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --white:       #ffffff;
  --off-white:   #f0f6ff;
  --grey-light:  #e2eaf8;
  --grey-text:   #64748b;
  --dark:        #0f172a;
  --text:        #1e293b;
  --radius:      12px;
  --shadow:      0 4px 20px rgba(11,31,74,.10);
  --shadow-lg:   0 8px 40px rgba(11,31,74,.18);
  --trans:       all .25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, Arial, sans-serif; font-size: 16px; color: var(--text); background: var(--white); line-height: 1.7; }
a { color: var(--sky); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--amber); }
img { max-width: 100%; display: block; }

/* ── Alert Banner ─────────────────────────────────────────── */
.alert-bar {
  background: linear-gradient(90deg, var(--navy), var(--indigo));
  color: rgba(255,255,255,.85); font-size: 12.5px; text-align: center;
  padding: 8px 16px; letter-spacing: .02em;
}
.alert-bar strong { color: #fde68a; }
.alert-bar a { color: #fde68a; font-weight: 700; }

/* ── Header ───────────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 2px solid var(--grey-light);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.hdr {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 74px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--sky) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.logo-name { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -.03em; }
.logo-name span { color: var(--sky); }

nav { display: flex; gap: 2px; align-items: center; }
nav a {
  font-size: 14px; font-weight: 600; color: var(--text);
  padding: 8px 15px; border-radius: 8px; transition: var(--trans);
}
nav a:hover, nav a.active { background: var(--off-white); color: var(--indigo); }

.hdr-right { display: flex; align-items: center; gap: 12px; }
.hdr-phone {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white); font-weight: 800; font-size: 15px;
  padding: 11px 22px; border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(245,158,11,.4);
  white-space: nowrap; transition: var(--trans);
}
.hdr-phone:hover { color: var(--white); transform: translateY(-1px); box-shadow: 0 7px 20px rgba(245,158,11,.5); }

.hbtn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hbtn span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; display: block; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 50%, #1a5276 100%);
  color: var(--white); padding: 84px 24px 96px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3);
  border-radius: 50px; padding: 6px 18px; font-size: 13px; margin-bottom: 22px;
  color: #7dd3fc;
}
.hero h1 {
  font-size: clamp(30px, 4.2vw, 54px); font-weight: 900; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -.025em;
}
.hero h1 em { font-style: normal; color: #fde68a; }
.hero p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 530px; margin-bottom: 34px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.btn-a {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white); font-size: 17px; font-weight: 800;
  padding: 16px 34px; border-radius: 11px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 22px rgba(245,158,11,.45); transition: var(--trans);
}
.btn-a:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,158,11,.55); }
.btn-b {
  background: rgba(255,255,255,.1); color: var(--white); font-size: 16px; font-weight: 600;
  padding: 16px 28px; border-radius: 11px; border: 1.5px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; gap: 8px; transition: var(--trans);
}
.btn-b:hover { background: rgba(255,255,255,.2); color: var(--white); }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hstat strong { display: block; font-size: 28px; font-weight: 900; color: #fde68a; line-height: 1; }
.hstat span { font-size: 12.5px; color: rgba(255,255,255,.65); }

/* Hero Panel */
.hero-panel {
  background: var(--white); border-radius: 22px; padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.28); color: var(--text);
  position: relative; z-index: 1;
}
.panel-head { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 18px; text-align: center; }
.phone-card {
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  border-radius: 14px; padding: 22px; text-align: center; margin-bottom: 18px; color: var(--white);
}
.phone-card p { font-size: 12.5px; color: rgba(255,255,255,.7); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .06em; }
.phone-card a { font-size: 28px; font-weight: 900; color: #fde68a; display: block; letter-spacing: -.01em; }
.phone-card a:hover { color: var(--white); }
.phone-card small { font-size: 11.5px; color: rgba(255,255,255,.55); }

.svc-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-links li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: var(--off-white); border: 1.5px solid var(--grey-light);
  color: var(--text); transition: var(--trans);
}
.svc-links li a:hover { background: #e0f2fe; border-color: var(--sky); color: var(--indigo); }
.svc-links li a .si { font-size: 17px; }

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 16px 24px; }
.ts-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 30px;
}
.ts-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.ts-item span { font-size: 17px; }

/* ── Section Shell ────────────────────────────────────────── */
.sec { padding: 76px 24px; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.lbl { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 10px; }
.sec-h { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--navy); line-height: 1.18; margin-bottom: 14px; letter-spacing: -.025em; }
.sec-p { font-size: 17px; color: var(--grey-text); max-width: 580px; margin-bottom: 52px; }
.tc { text-align: center; }
.tc .sec-p { margin-left: auto; margin-right: auto; }

/* ── Service Cards ────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: 18px; padding: 34px 28px;
  border: 1.5px solid var(--grey-light); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px; transition: var(--trans);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.card-ico {
  width: 60px; height: 60px; border-radius: 15px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.card h3 { font-size: 19px; font-weight: 800; color: var(--navy); }
.card p { font-size: 14.5px; color: var(--grey-text); flex: 1; }
.card-lnk { font-size: 14px; font-weight: 700; color: var(--sky); display: inline-flex; align-items: center; gap: 6px; }
.card-lnk:hover { color: var(--amber); gap: 10px; }

/* ── Steps ────────────────────────────────────────────────── */
.sec-alt { background: var(--off-white); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; }
.step { text-align: center; }
.step-n {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--indigo), var(--sky));
  color: var(--white); font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--grey-text); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-sec {
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  color: var(--white); padding: 72px 24px; text-align: center;
}
.cta-sec h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 900; margin-bottom: 12px; }
.cta-sec p { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 30px; }
.cta-num { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; color: #fde68a; display: block; margin-bottom: 8px; line-height: 1; }
.cta-num:hover { color: var(--white); }
.cta-note { font-size: 13.5px; color: rgba(255,255,255,.55); margin-bottom: 34px; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 22px; }
.why-card {
  background: var(--white); border-radius: 15px; padding: 26px 22px;
  border: 1.5px solid var(--grey-light); display: flex; gap: 16px; align-items: flex-start;
  transition: var(--trans);
}
.why-card:hover { box-shadow: var(--shadow); border-color: var(--sky); }
.why-ico {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.why-card h4 { font-size: 15.5px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 13.5px; color: var(--grey-text); }

/* ── Page Hero ────────────────────────────────────────────── */
.pg-hero {
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  color: var(--white); padding: 68px 24px; text-align: center;
}
.pg-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; margin-bottom: 14px; }
.pg-hero p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 580px; margin: 0 auto 24px; }
.bc { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.bc a { color: rgba(255,255,255,.75); }
.bc a:hover { color: var(--white); }

/* ── Content Page ─────────────────────────────────────────── */
.cont-sec { padding: 68px 24px; }
.cont-inner { max-width: 900px; margin: 0 auto; }
.cont-inner h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin: 36px 0 12px; }
.cont-inner h3 { font-size: 19px; font-weight: 700; color: var(--indigo); margin: 26px 0 10px; }
.cont-inner p { font-size: 15.5px; color: var(--text); margin-bottom: 16px; line-height: 1.78; }
.cont-inner ul, .cont-inner ol { margin: 0 0 18px 26px; }
.cont-inner li { font-size: 15px; color: var(--text); margin-bottom: 8px; line-height: 1.72; }
.cont-inner strong { color: var(--navy); }
.hlt {
  background: #e0f2fe; border-left: 4px solid var(--sky);
  border-radius: 0 11px 11px 0; padding: 18px 22px; margin: 26px 0; font-size: 15px;
}
.policy-meta { font-size: 13.5px; color: var(--grey-text); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--grey-light); }

/* ── 2-col feature ────────────────────────────────────────── */
.feat2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 38px 0; }
.fcol { background: var(--off-white); border-radius: 14px; padding: 26px 24px; border: 1px solid var(--grey-light); }
.fcol h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.fcol ul { list-style: none; padding: 0; }
.fcol ul li { padding: 7px 0; border-bottom: 1px solid var(--grey-light); font-size: 14.5px; display: flex; align-items: flex-start; gap: 8px; }
.fcol ul li:last-child { border-bottom: none; }
.ck { color: #10b981; font-weight: 700; flex-shrink: 0; }

/* ── Inner CTA ────────────────────────────────────────────── */
.icta {
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  border-radius: 22px; padding: 50px 40px; text-align: center;
  color: var(--white); margin: 56px 0 0;
}
.icta h2 { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.icta p { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 22px; }
.icta a.cpn { font-size: 38px; font-weight: 900; color: #fde68a; display: block; margin-bottom: 8px; }
.icta a.cpn:hover { color: var(--white); }
.icta small { font-size: 13px; color: rgba(255,255,255,.55); }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,.78); padding: 68px 24px 0; }
.ft-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
}
.ft-brand p { font-size: 14px; color: rgba(255,255,255,.55); margin: 14px 0 18px; line-height: 1.7; }
.ft-phone { font-size: 22px; font-weight: 900; color: #fde68a; display: block; margin-bottom: 5px; }
.ft-email { font-size: 14px; color: rgba(255,255,255,.65); }
.ft-addr { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 10px; line-height: 1.65; }

.ft-col h4 { font-size: 14.5px; font-weight: 800; color: var(--white); margin-bottom: 18px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--trans); }
.ft-col ul li a:hover { color: #fde68a; }

.ft-disc {
  max-width: 1200px; margin: 38px auto 0;
  border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  font-size: 12.5px; color: rgba(255,255,255,.42); line-height: 1.72;
}
.ft-bot {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.38);
}
.ft-bot a { color: rgba(255,255,255,.52); }
.ft-bot a:hover { color: #fde68a; }

/* ── Tag chip ─────────────────────────────────────────────── */
.tag { display: inline-block; background: #e0f2fe; color: var(--sky-dark); font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 50px; margin-bottom: 10px; letter-spacing: .04em; text-transform: uppercase; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 14px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.08); border-top: 1px solid var(--grey-light); }
  nav.open { display: flex; }
  nav a { font-size: 16px; padding: 12px 16px; }
  .hbtn { display: flex; }
  header { position: relative; }
}
@media (max-width: 880px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-panel { max-width: 380px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .feat2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 16px 60px; }
  .sec { padding: 52px 16px; }
  .ft-grid { grid-template-columns: 1fr; gap: 30px; }
  .ft-bot { flex-direction: column; text-align: center; }
  .icta { padding: 32px 20px; }
  .icta a.cpn { font-size: 28px; }
}
