/* ═══════════════════════════════════════════════
   JACKSON FLOOD PROS — styles.css
   A clean, local-first look. No flashy AI stuff.
   ═══════════════════════════════════════════════ */

:root {
  --navy-deep: #020617;
  /* Deep Midnight */
  --navy-bold: #0f172a;
  /* Rich Navy */
  --blue-primary: #1e40af;
  /* Deep Royal */
  --blue-accent: #3b82f6;
  /* Bright Blue Accent */
  --white: #ffffff;
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-700: #475569;
  --grey-900: #0f172a;
  --red: #ef4444;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--grey-700);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy-bold);
}

/* --- Navbar --- */
.navbar {
  padding: 16px 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  background: var(--blue-primary);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 4px;
}

.logo-text strong {
  display: block;
  color: white;
  font-size: 1.1rem;
}

.logo-text span {
  font-size: 0.75rem;
  color: #94a3b8;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--blue-accent);
}

.phone-link {
  color: var(--blue-accent) !important;
  font-weight: 700 !important;
}


.menu-btn {
  display: none;
  padding: 8px 12px;
  border: 1px solid var(--grey-200);
  background: none;
  border-radius: 4px;
}

/* --- Hero --- */
.hero {
  padding: 120px 0 100px;
  background: radial-gradient(circle at top right, var(--navy-bold), var(--navy-deep));
  color: white;
}

.hero-content {
  max-width: 650px;
}

.status-pill {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  color: white;
}

.hero h1 span {
  color: var(--blue-accent);
}

.hero p {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-main {
  background: var(--blue-primary);
  color: white;
  border: 1px solid var(--blue-accent);
}

.btn-main:hover {
  background: var(--blue-accent);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
}


/* --- Banner --- */
.banner-alert {
  background: #1e3a8a;
  color: white;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-alert strong {
  color: var(--blue-accent);
}


/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-intro {
  max-width: 600px;
  margin-bottom: 60px;
}

.section-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-box {
  padding: 32px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
}

.box-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-box h3 {
  margin-bottom: 12px;
}

/* --- Process --- */
.process-bg {
  padding: 100px 0;
  background: var(--navy-bold);
  color: white;
}

.process-bg h2 {
  color: white;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--blue-primary);
  border: 1px solid var(--blue-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.step h4 {
  color: white;
  margin-bottom: 4px;
}

.step p {
  color: #94a3b8;
}

.visual-card {
  background: white;
  color: var(--navy-bold);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.visual-card h4 {
  margin-bottom: 16px;
}

.signature {
  display: block;
  margin-top: 24px;
  font-weight: 800;
  color: var(--blue-primary);
}


/* --- Stats --- */
.stats-simple {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 2.8rem;
  color: var(--blue-primary);
  line-height: 1;
}

.stat span {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--grey-700);
}


/* --- CTA --- */
.cta-banner {
  padding: 80px 0;
  background: var(--blue-primary);
  color: white;
  text-align: center;
}

.cta-banner h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.btn-white {
  background: white;
  color: var(--blue-primary);
}


/* --- Footer --- */
.footer {
  padding: 60px 0 40px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}

.footer h3 {
  color: white;
}

.footer a {
  color: var(--blue-accent);
  text-decoration: none;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 0.85rem;
  color: #64748b;
}


/* --- Small Tweaks --- */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 24px;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .services-list,
  .process-inner {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .stats-simple {
    gap: 20px;
  }
}