/* ═══════════════════════════════════════ RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0D2240;
  --navy-mid: #0D3B6E;
  --navy-lt:  #1A3A6E;
  --gold:     #C8A84B;
  --gold-lt:  #E0C060;
  --white:    #FFFFFF;
  --lgray:    #AAB4C8;
  --dgray:    #4A5568;
  --bg-dark:  #080F1E;
  --font:     'Inter', sans-serif;
  --font-cond:'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════ NAV */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(8, 15, 30, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.logo-mark {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-cond);
  font-size: 18px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.logo-llc {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-active { color: var(--gold) !important; font-weight: 600; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-lt) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  padding: 20px 40px;
  gap: 16px;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 14px;
}

.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════ HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('astra_hero_cinematic.jpg');
  background-size: cover;
  background-position: center center;
  background-color: #080F1E;
}

/* Subtle color grade — keeps the dramatic B&W feel, just darkens slightly */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,15,30,0.55) 0%, rgba(8,15,30,0.2) 50%, rgba(8,15,30,0.4) 100%);
  z-index: 0;
}

/* Subtle gold grid overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Protect text on the left — lighter than before so photo shows through */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,15,30,0.85) 35%, rgba(8,15,30,0.3) 65%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 80px;
  max-width: 700px;
  padding-left: 40px;
  margin-left: max(40px, calc((100vw - 1280px) / 2));
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-cond);
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-headline .gold { color: var(--gold); }

.hero-sub {
  font-size: 17px;
  color: var(--lgray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-logo-emblem {
  display: none;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  color: var(--lgray);
  font-size: 10px; letter-spacing: 3px;
  font-weight: 600;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════ STATS */
#stats {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--gold);
}

.stats-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-cond);
  font-size: 54px; font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-plus, .stat-pct {
  font-size: 32px;
  color: var(--gold);
}

.stat-label {
  font-size: 12px; font-weight: 500;
  color: var(--lgray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* ═══════════════════════════════════════ SHARED SECTION */
.section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title.white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--dgray);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 60px;
}

.section-sub.light { color: var(--lgray); }

/* ═══════════════════════════════════════ SERVICES */
#services { background: #F8FAFC; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13,34,64,0.12);
  border-top-color: var(--gold);
}

.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  border-top-color: var(--gold);
}

.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px; font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card.featured h3 { color: var(--white); }

.service-card p {
  font-size: 14px;
  color: var(--dgray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card.featured p { color: var(--lgray); }

.service-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--dgray);
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

.service-card.featured ul li { color: var(--lgray); }

/* ═══════════════════════════════════════ WHY ASTRA */
#why {
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--bg-dark) 100%);
}

.why-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.why-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-right {
  display: flex; flex-direction: column; gap: 32px;
}

.why-item {
  display: flex; gap: 20px; align-items: flex-start;
}

.why-icon {
  width: 44px; height: 44px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.gold-bg { background: var(--gold); }
.navy-bg { background: var(--navy-mid); }

.why-text h4 {
  font-size: 16px; font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 14px;
  color: var(--lgray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════ CREDENTIALS */
#credentials { background: var(--white); }

.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.cred-card {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cred-card:hover {
  box-shadow: 0 10px 30px rgba(13,34,64,0.1);
  border-color: var(--gold);
}

.cred-icon {
  width: 56px; height: 56px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.cred-title {
  font-family: var(--font-cond);
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cred-detail {
  font-size: 13px;
  color: var(--dgray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cred-source {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.naics-block {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px 32px;
}

.naics-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--dgray);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.naics-codes {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.naics-tag {
  background: var(--navy);
  color: var(--white);
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

/* ═══════════════════════════════════════ PROCUREMENT */
#procurement {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.procurement-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.procurement-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.procurement-steps {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 32px;
}

.proc-step {
  display: flex; gap: 16px; align-items: flex-start;
}

.proc-num {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}

.proc-text h4 {
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.proc-text p {
  font-size: 13px;
  color: var(--dgray);
  line-height: 1.6;
}

.procurement-form-panel {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(13,34,64,0.08);
}

.panel-title {
  font-family: var(--font-cond);
  font-size: 24px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.panel-sub {
  font-size: 13px;
  color: var(--dgray);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════ LEADERSHIP */
#leadership { background: var(--white); border-top: 1px solid #E2E8F0; }

.leader-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.leader-left {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}

.leader-avatar {
  width: 96px; height: 96px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-size: 32px; font-weight: 800;
  letter-spacing: 2px;
}

.leader-name {
  font-size: 22px; font-weight: 800;
  color: var(--navy);
}

.leader-title {
  font-size: 14px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.leader-org {
  font-size: 13px;
  color: var(--dgray);
}

.leader-bio {
  font-size: 15px;
  color: var(--dgray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.leader-creds {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 8px;
}

.leader-creds span {
  background: var(--navy);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════ CONTACT */
#contact { position: relative; overflow: hidden; }

.contact-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--navy) 100%);
}

.contact-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.light-label { color: var(--gold) !important; }

.contact-details {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 8px;
}

.contact-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--lgray);
  font-size: 15px;
}

.contact-icon { font-size: 18px; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px; font-weight: 600;
  color: var(--lgray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-note {
  font-size: 12px;
  color: var(--lgray);
  text-align: center;
  margin-top: 12px;
}

/* ═══════════════════════════════════════ FOOTER */
footer {
  background: var(--bg-dark);
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 40px 32px;
}

.footer-top {
  display: flex; gap: 80px;
  margin-bottom: 48px;
}

.footer-brand { flex: 1; }

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--lgray);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-seal {
  display: block;
  width: 120px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  opacity: 0.55;
  margin-top: 20px;
  border: 1px solid rgba(200,168,75,0.2);
}

.footer-sdvosb {
  font-size: 9px; font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.3);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
}

.footer-links {
  display: flex; gap: 60px;
}

.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}

.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--lgray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-vet {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ═══════════════════════════════════════ PROCUREMENT FORM (shared) */
.proc-form .form-group label { color: var(--dgray); }
.proc-form input, .proc-form select, .proc-form textarea {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 14px;
  font-family: var(--font);
  width: 100%;
  transition: border-color 0.2s;
}
.proc-form input:focus,
.proc-form select:focus,
.proc-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.proc-form .form-note { color: var(--dgray); margin-top: 10px; }

/* ═══════════════════════════════════════ PROCUREMENT LEFT COLUMN */
.procurement-left { padding-top: 8px; }
.procurement-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════ ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════ HAMBURGER ACTIVE */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════ FORM MESSAGES */
.form-message {
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px; font-weight: 500;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-message--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ═══════════════════════════════════════ RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-inner, .contact-inner, .procurement-inner,
  .leader-card { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 24px 80px; margin-left: 0; }
  .hero-logo-emblem { display: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; }
  .section-inner { padding: 60px 24px; }
  .leader-left { flex-direction: row; text-align: left; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
