@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0D1F3C;
  --blue:       #185FA5;
  --sky:        #378ADD;
  --pale:       #B5D4F4;
  --ice:        #E6F1FB;
  --white:      #FFFFFF;
  --off-white:  #F8F8F6;
  --gray-light: #F0EEE8;
  --gray-mid:   #888780;
  --gray-dark:  #444441;
  --charcoal:   #1E1E1C;
  --accent:     #E8A830;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --nav-h: 68px;
  --max-w: 1140px;
  --section-pad: 100px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid rgba(55,138,221,0.15);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-logo-text .sub {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  color: var(--pale);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--sky);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ─────────────────────────────────────────── */
.page { padding-top: var(--nav-h); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 110px 32px 100px;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--sky) 0px,
    var(--sky) 1px,
    transparent 1px,
    transparent 60px
  );
}
.hero-accent {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.08) 0%, transparent 70%);
}
.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(55,138,221,0.12);
  border: 1px solid rgba(55,138,221,0.3);
  color: var(--pale);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--sky);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pale);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(181,212,244,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--pale); }
.hero-airports {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-airports span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-right: 4px;
}
.airport-tag {
  background: rgba(55,138,221,0.1);
  border: 1px solid rgba(55,138,221,0.2);
  color: var(--pale);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 3px;
}

/* ── SECTION SHELL ───────────────────────────────────────── */
.section { padding: var(--section-pad) 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-h2 em { font-style: normal; color: var(--sky); }
.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-mid);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 36px 32px;
  border-top: 1px solid rgba(55,138,221,0.15);
  border-bottom: 1px solid rgba(55,138,221,0.15);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--sky); }
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
}
.svc-card:hover { background: var(--ice); }
.svc-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.svc-list { display: flex; flex-direction: column; gap: 6px; }
.svc-list li {
  font-size: 13px;
  color: var(--gray-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.svc-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── PLANS ───────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.plan-card:hover { box-shadow: 0 8px 40px rgba(10,22,40,0.08); }
.plan-card.featured {
  border: 2px solid var(--sky);
  background: var(--navy);
}
.plan-badge-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.plan-card.featured .plan-name { color: var(--white); }
.plan-freq { font-size: 13px; color: var(--gray-mid); margin-bottom: 20px; }
.plan-card.featured .plan-freq { color: var(--pale); }
.plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 24px;
}
.plan-price sub { font-size: 14px; color: var(--gray-mid); font-weight: 400; }
.plan-card.featured .plan-price sub { color: var(--pale); }
.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  font-size: 13px;
  color: var(--gray-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-card.featured .plan-features li { color: var(--pale); }
.plan-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ice);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23185FA5' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  flex-shrink: 0;
}
.plan-card.featured .plan-features li::before {
  background: rgba(55,138,221,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2378B8F0' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  padding: 60px 32px;
  border-top: 1px solid var(--gray-light);
}
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.trust-item { text-align: center; }
.trust-icon {
  width: 48px; height: 48px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.trust-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.trust-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--sky) 0px, var(--sky) 1px,
    transparent 1px, transparent 60px
  );
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-weight: 300;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.cta-phone:hover { background: var(--blue); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo .name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-logo .tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pale); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 12px;
}

/* ── PAGE HEROES (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 32px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -55deg,
    var(--sky) 0px, var(--sky) 1px,
    transparent 1px, transparent 60px
  );
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 600px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 480px;
  font-weight: 300;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(55,138,221,0.2);
}
.about-photo-placeholder p {
  font-size: 13px;
  color: var(--gray-mid);
  text-align: center;
  max-width: 200px;
  line-height: 1.5;
}
.about-content .section-h2 { margin-bottom: 24px; }
.about-body {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}
.about-body strong { font-weight: 600; color: var(--navy); }
.cred-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sky);
}
.cred-item .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  flex-shrink: 0;
}
.cred-item .text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.cred-item .text span { font-size: 12px; color: var(--gray-mid); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--ice);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.contact-item-value a { color: var(--sky); }
.contact-item-sub { font-size: 13px; color: var(--gray-mid); margin-top: 3px; }
.call-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.call-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.call-box p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 28px; line-height: 1.6; }
.call-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.call-number:hover { color: var(--pale); }
.call-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.airports-served {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 24px;
}
.airports-served h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 14px;
}
.airport-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.airport-tag-lg {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.5s ease both; }
.hero-h1    { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub   { animation: fadeUp 0.5s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
.hero-airports { animation: fadeUp 0.5s 0.4s ease both; }

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(55,138,221,0.15);
  }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 24px; }
  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
