/* =========================================================
   Western Falcon Inc. — v2 alternate design
   Lighter, modern, blue/white, friendly professional
   ========================================================= */

:root {
  --navy: #0f2652;
  --navy-2: #1d3d73;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --sky: #eff6ff;
  --accent: #f97316;
  --ink: #111827;
  --soft: #4b5563;
  --muted: #9ca3af;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 38, 82, 0.06);
  --shadow-lg: 0 16px 48px rgba(15, 38, 82, 0.1);
  --container: 1180px;
  --ease: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--blue); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; }
.section-header p { color: var(--soft); font-size: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}
.btn--primary:hover { background: var(--blue-2); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn--outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover { background: var(--sky); color: var(--navy); }

/* Topbar */
.topbar {
  background: var(--sky);
  color: var(--navy-2);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: var(--navy-2); font-weight: 500; }
.topbar a:hover { color: var(--blue); }
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.nav-logo img { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 6px 0;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--blue); }
.nav-menu a.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}
.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub > a::after { content: '▾'; margin-left: 4px; font-size: 10px; opacity: 0.6; }
.nav-menu .sub {
  position: absolute;
  top: 100%;
  left: -16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ease);
}
.nav-menu .has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub a { display: block; padding: 10px 20px; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: all var(--ease);
}
.nav-toggle span::before { content: ''; position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { content: ''; position: absolute; top: 7px; left: 0; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(145deg, #f0f9ff 0%, #ffffff 55%, #f8fafc 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 30vw; height: 30vw;
  background: radial-gradient(circle, rgba(249,115,22,0.06), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 840px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--blue); }
.hero p.lead {
  font-size: 18px;
  color: var(--soft);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 680px;
}
.hero-stats .stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stats .stat-label { font-size: 14px; color: var(--soft); margin-top: 6px; }

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(37,99,235,0.25), transparent 55%);
}
.page-header-inner { position: relative; }
.page-header h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; margin: 0 auto; }
.breadcrumbs { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; letter-spacing: 0.05em; }
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* Grid & Cards */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  padding: 14px;
}
.card-icon img { width: 100%; height: 100%; object-fit: contain; }
.card h3 { font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.card p { color: var(--soft); font-size: 15px; }
.card-link { color: var(--blue); font-weight: 700; font-size: 14px; margin-top: 16px; display: inline-block; }

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease);
  border: 1px solid var(--line);
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card-img { aspect-ratio: 16/10; overflow: hidden; }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-card:hover .feature-card-img img { transform: scale(1.05); }
.feature-card-body { padding: 30px; }
.feature-card-body h3 { font-size: 22px; margin-bottom: 8px; color: var(--navy); }
.feature-card-body p { color: var(--soft); font-size: 15px; margin-bottom: 16px; }
.feature-card-body .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.split .lead { color: var(--soft); font-size: 17px; margin-bottom: 20px; }
.split ul.checks { list-style: none; margin-top: 24px; }
.split ul.checks li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}
.split ul.checks li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  width: 24px; height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  top: -130px; right: -80px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3.5vw, 36px); max-width: 620px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
}
.value-card .num { font-size: 42px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.value-card h4 { font-size: 19px; margin-bottom: 8px; color: var(--navy); }
.value-card p { font-size: 14px; color: var(--soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}
.contact-info-card .icon img { width: 100%; height: 100%; object-fit: contain; }
.contact-info-card h4 { font-size: 17px; margin-bottom: 4px; color: var(--navy); }
.contact-info-card p { color: var(--soft); font-size: 15px; line-height: 1.5; }
.contact-info-card a { color: var(--navy); font-weight: 600; }
.contact-info-card a:hover { color: var(--blue); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form h3 { font-size: 24px; margin-bottom: 8px; color: var(--navy); }
.form .form-sub { color: var(--soft); margin-bottom: 24px; font-size: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: all var(--ease);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form button { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { display: none; padding: 16px; border-radius: var(--radius-sm); background: rgba(34,197,94,0.1); color: #15803d; font-size: 14px; margin-top: 16px; text-align: center; }
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 48px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h3 { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 700; }
.footer-grid a { color: rgba(255,255,255,0.7); display: block; padding: 5px 0; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 52px; margin-bottom: 16px; filter: brightness(2.5); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-contact { margin-top: 16px; font-size: 14px; }
.footer-contact p { padding: 3px 0; }
.footer-bottom { text-align: center; padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.5); }

/* Prose */
.prose { max-width: 820px; margin: 0 auto; font-size: 17px; color: var(--soft); line-height: 1.8; }
.prose h2 { font-size: 30px; margin: 48px 0 16px; color: var(--navy); }
.prose h3 { font-size: 22px; margin: 32px 0 12px; color: var(--navy); }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 24px 24px; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--navy); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 960px) {
  .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 72px 0; }
}
@media (max-width: 720px) {
  .topbar-contact { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    gap: 0;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0; }
  .nav-menu a { display: block; padding: 12px 24px; }
  .nav-menu .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 24px; min-width: 0; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 24px; margin-top: 48px; }
  .grid-2, .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form { padding: 28px 20px; }
}
