/* ===== NSA Security Group LLC — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #152a4a;
  --navy-600: #1b365d;
  --navy-500: #234478;
  --gold-500: #c8a84e;
  --gold-400: #d4b85c;
  --gold-300: #e0c96f;
  --gold-200: #f0dfa0;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.15);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.2);
  --shadow-gold: 0 4px 24px rgba(200,168,78,.25);
  --radius: 12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.gold-text { color: var(--gold-500); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px; background: var(--gold-500);
}

.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; color: var(--navy-800); line-height: 1.15; margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem; color: var(--slate-600); max-width: 640px; line-height: 1.7;
}
.section-subtitle.center { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: .3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900); box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,168,78,.4);
}
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-500); color: var(--gold-400);
  background: rgba(200,168,78,.08);
}
.btn-dark {
  background: var(--navy-800); color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-700); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,22,40,.95); backdrop-filter: blur(16px);
  padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none; color: var(--white);
}
.nav-logo img { height: 56px; width: auto; margin-right: -8px; }
.nav-logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; line-height: 1.1; }
.nav-logo-sub { font-size: .65rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-400); opacity: .85; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .9rem; font-weight: 500; transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold-500);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px !important; background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900) !important; border-radius: 6px; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Mobile hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--navy-900);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/images/seattle-skyline.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(15,31,58,.8) 50%, rgba(10,22,40,.88) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 720px;
  padding-top: 120px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(200,168,78,.12); border: 1px solid rgba(200,168,78,.25);
  font-size: .8rem; font-weight: 600; color: var(--gold-400);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold-400); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.5rem,5.5vw,4rem);
  font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,.7); line-height: 1.8;
  margin-bottom: 40px; max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-family: var(--font-heading); font-size: 2.25rem;
  font-weight: 700; color: var(--gold-400);
}
.hero-stat-label { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: 4px; }

.hero-image {
  position: absolute; right: -60px; bottom: 0; width: 45%;
  max-width: 560px; z-index: 1; opacity: .3;
}
.hero-image img { width: 100%; height: auto; }

/* Floating badge decoration */
.hero-float {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 200px; opacity: .15;
  animation: float 6s ease-in-out infinite;
}
.hero-float img { width: 100%; filter: drop-shadow(0 0 40px rgba(200,168,78,.3)); }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes float { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 12px)); } }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-800); padding: 20px 0;
  border-bottom: 1px solid rgba(200,168,78,.15);
}
.trust-items {
  display: flex; justify-content: center; align-items: center;
  gap: 24px 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 500;
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,168,78,.1); border: 1px solid rgba(200,168,78,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 1rem;
}

/* ===== SERVICES ===== */
.services { background: var(--slate-100); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px; margin-top: 56px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative;
  border: 1px solid var(--slate-200);
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(200,168,78,.3);
}
.service-card-img {
  height: 220px; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 1.25rem;
  margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.35rem;
  color: var(--navy-800); margin-bottom: 10px;
}
.service-card p { font-size: .95rem; color: var(--slate-600); line-height: 1.7; }

/* ===== WHY NSA (split layout) ===== */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 32px;
}
.why-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.why-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why-image-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--navy-900); box-shadow: var(--shadow-lg);
}
.why-image-badge span:first-child { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1; }
.why-image-badge span:last-child { font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.why-list { list-style: none; margin-top: 32px; }
.why-list li {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--slate-200);
}
.why-list li:last-child { border-bottom: none; }
.why-check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(200,168,78,.12); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; margin-top: 2px;
}
.why-list h4 { font-size: 1rem; color: var(--navy-800); margin-bottom: 4px; }
.why-list p { font-size: .9rem; color: var(--slate-600); }

/* ===== COVERAGE / WA STATE ===== */
.coverage {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white); position: relative; overflow: hidden;
}
.coverage .section-title { color: var(--white); }
.coverage .section-subtitle { color: rgba(255,255,255,.6); }
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 56px;
}
.coverage-map { text-align: center; }
.coverage-map img {
  width: 100%; max-width: 420px; border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(200,168,78,.15);
}
.coverage-details h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  margin-bottom: 24px; color: var(--gold-400);
}
.coverage-list { list-style: none; }
.coverage-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.8); font-size: .95rem;
}
.coverage-list .cov-icon { color: var(--gold-400); font-size: .9rem; }
.coverage-callout {
  margin-top: 32px; padding: 20px 24px; border-radius: 10px;
  background: rgba(200,168,78,.08); border: 1px solid rgba(200,168,78,.2);
  font-size: .95rem; color: var(--gold-300);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  padding: 80px 0; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,2.5rem);
  color: var(--navy-900); margin-bottom: 16px;
}
.cta-banner p { font-size: 1.1rem; color: var(--navy-700); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-dark { font-size: 1.05rem; padding: 16px 40px; }

/* ===== QUOTE FORM ===== */
.quote-section { background: var(--slate-100); }
.quote-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-top: 56px;
}
.quote-info h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  color: var(--navy-800); margin-bottom: 20px;
}
.quote-info p { color: var(--slate-600); margin-bottom: 28px; line-height: 1.8; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--slate-200);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label { font-size: .8rem; color: var(--slate-600); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-size: 1rem; color: var(--navy-800); font-weight: 600; }

.quote-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}
.quote-form-card h3 {
  font-family: var(--font-heading); font-size: 1.4rem;
  color: var(--navy-800); margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--navy-800); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--slate-200);
  font-family: var(--font-body); font-size: .95rem;
  color: var(--slate-800); background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200,168,78,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900); color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.8; }
.footer-brand img { height: 56px; margin-bottom: 4px; }
.footer h4 {
  color: var(--white); font-size: .95rem; font-weight: 700;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: rgba(255,255,255,.5); text-decoration: none;
  font-size: .9rem; transition: var(--transition);
}
.footer ul a:hover { color: var(--gold-400); }
.footer-bottom {
  margin-top: 56px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
}
.footer-certs {
  display: flex; gap: 24px; align-items: center;
}
.footer-cert {
  padding: 4px 12px; border-radius: 4px;
  background: rgba(200,168,78,.08); border: 1px solid rgba(200,168,78,.15);
  color: var(--gold-400); font-size: .75rem; font-weight: 600;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid, .coverage-grid, .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
  .hero-image { display: none; }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .nav-links { 
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(10,22,40,.98);
    padding: 24px; gap: 20px; backdrop-filter: blur(16px);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .nav-logo-text { font-size: 1.15rem; }
  .hero { min-height: auto; padding: 0 0 48px; }
  .hero-content { padding-top: 112px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
