/* =========================
   Base / Reset
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.7;
}
a { color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #1d4ed8;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; outline: 3px solid #93c5fd; }

/* =========================
   Notice Bar
========================= */
.site-notice {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #111827;
}
.notice-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}
.notice-inner p { margin: 0; }

/* =========================
   Header / Nav
========================= */
.site-header {
  background: #0b1220;
  border-bottom: 3px solid #1d4ed8;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.brand { text-decoration: none; display: block; }
.brand-name {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 22px;
}
.brand-tag {
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
}

.nav { }
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 8px;
}
.nav-links a:hover { background: rgba(255,255,255,0.08); }
.nav-links a:focus-visible { outline: 3px solid #93c5fd; outline-offset: 2px; }

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle:focus-visible { outline: 3px solid #93c5fd; outline-offset: 2px; }
.hamburger {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* =========================
   Buttons (square, gov style)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}
.btn-primary:hover { background: #1e40af; border-color: #1e40af; }
.btn-outline {
  background: transparent;
  color: #0b1220;
  border-color: #cbd5e1;
}
.site-header .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.28); }
.site-header .btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn:focus-visible { outline: 3px solid #93c5fd; outline-offset: 2px; }

/* =========================
   Hero (clean, official)
========================= */
.hero {
  background: #0b1220;
  color: #ffffff;
  padding: 56px 0 42px;
}
.hero-inner { max-width: 980px; }
.hero-kicker {
  color: #93c5fd;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-lead {
  color: #e5e7eb;
  font-size: 16px;
  max-width: 900px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.hero-note {
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 13px;
  border-left: 3px solid rgba(147,197,253,0.7);
  padding-left: 12px;
}
.hero-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
}
.hero-card h3 { font-size: 14px; margin-bottom: 6px; }
.hero-card p { font-size: 13px; color: #e5e7eb; }

/* =========================
   Sections
========================= */
.section { padding: 56px 0; }
.section-alt { background: #f8fafc; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.section-title {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-sub {
  color: #374151;
  max-width: 860px;
}

/* Cards / grids */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}
.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 14px; color: #374151; }

/* Two-col panels */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}
.panel h3 { font-size: 16px; margin-bottom: 8px; }
.panel ul { margin-left: 18px; color: #374151; }
.panel li { margin: 8px 0; }
.hint { margin-top: 10px; font-size: 13px; color: #6b7280; }

.callout {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #1d4ed8;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.callout h3 { font-size: 16px; margin-bottom: 4px; }
.callout p { color: #374151; font-size: 14px; }
.callout-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hours card */
.hours-card {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hours-card h3 { font-size: 16px; margin-bottom: 6px; }
.muted { color: #6b7280; }

/* Steps */
.steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}
.step-title {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #1d4ed8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

/* Contact */
.contact-wrap {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
}
.contact-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #374151;
  font-size: 14px;
  margin-bottom: 14px;
}
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field span { font-weight: 700; font-size: 13px; color: #111827; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  color: #111827;
  background: #ffffff;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
  border-color: #60a5fa;
}
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.form-success { margin-top: 12px; color: #065f46; font-weight: 700; }

/* Footer */
.site-footer {
  background: #0b1220;
  color: #e5e7eb;
  padding: 28px 0;
  margin-top: 20px;
}
.footer-inner { display: flex; gap: 10px; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.footer-sub { color: #cbd5e1; font-size: 13px; }
.to-top { color: #93c5fd; text-decoration: none; font-weight: 800; }
.to-top:hover { text-decoration: underline; }

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav, .header-actions { grid-column: 1 / -1; }
  .header-actions { justify-content: flex-start; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav { width: 100%; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: #0b1220;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
  }
  .nav-links.active { display: flex; }

  .nav-links a { padding: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .hero h1 { font-size: 30px; }
}