/* =============================================
   NORTH ALABAMA FLOORS — COMPLETE STYLESHEET
   Design: Dark Premium / Black + Gold
   Fonts: Barlow Condensed + DM Sans (Google Fonts)
   Add this to your <head> BEFORE style.css:
   <link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap" rel="stylesheet">
   ============================================= */

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

:root {
  --black:       #0a0a0a;
  --black-2:     #111111;
  --black-3:     #1a1a1a;
  --black-4:     #2a2a2a;
  --gold:        #c8a44a;
  --gold-dk:     #b8943d;
  --gold-bg:     #1f1900;
  --text:        #1a1a1a;
  --text-muted:  #666666;
  --text-light:  #aaaaaa;
  --bg-light:    #f9f9f7;
  --bg-white:    #ffffff;
  --border:      #e0ddd8;
  --border-dark: #2a2a2a;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --max-w:       1100px;
  --radius:      6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   DISCLOSURE BANNER
   ============================================= */
.disclosure-banner {
  background: #111;
  border-bottom: 1px solid var(--border-dark);
  padding: 8px 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}
.disclosure-banner a { color: var(--gold); }

/* =============================================
   HEADER / NAV
   ============================================= */
header {
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 200;
}

.main-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 16px;
}

.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
  text-decoration: none;
}
.logo span { color: var(--gold); }
.logo:hover { text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

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

.nav-links li { position: relative; }

.nav-links a {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: var(--black-3); }

.cta-nav {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
}
.cta-nav:hover { background: var(--gold-dk) !important; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--black-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  min-width: 210px;
  list-style: none;
  z-index: 300;
  padding: 6px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  font-size: 13px;
  padding: 9px 16px;
  color: #aaa;
  border-radius: 0;
}
.dropdown li a:hover { background: var(--black-3); color: #fff; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--black-2);
  border-bottom: 1px solid var(--border-dark);
  padding: 10px 0;
  font-size: 12px;
  color: #555;
}
.breadcrumb a { color: #666; }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-dk);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid #444;
  transition: all .15s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.btn-large { padding: 18px 36px; font-size: 17px; }

/* =============================================
   HERO (Homepage)
   ============================================= */
.hero {
  background: var(--black);
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--black-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--black-3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #888;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 12px;
  color: #555;
  letter-spacing: .02em;
}

/* =============================================
   PAGE HERO (Inner pages)
   ============================================= */
.page-hero {
  background: var(--black);
  padding: 56px 20px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--black-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--black-3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1rem;
  color: #888;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 12px;
  color: #555;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--black-2);
  border-bottom: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 10px;
  color: #555;
  margin-top: 5px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 32px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 64px 20px;
  background: var(--black-2);
}

.services-section h2,
.services-section .section-eyebrow,
.services-section .section-sub { color: #fff; }
.services-section h2 { color: #fff; }
.services-section .section-sub { color: #666; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-dark);
  margin-top: 32px;
}

.service-card {
  background: var(--black-3);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .15s;
  text-decoration: none;
  color: #ccc;
}
.service-card:hover { background: #1e1e1e; text-decoration: none; }

.service-badge {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
  width: fit-content;
}

.service-icon { font-size: 1.8rem; margin-bottom: 4px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: 4px;
}

.service-card p { font-size: 13px; color: #666; line-height: 1.5; margin: 0; }

.learn-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
  margin-top: auto;
  padding-top: 10px;
}

/* =============================================
   CITIES SECTION
   ============================================= */
.cities-section { padding: 64px 20px; background: var(--bg-light); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.city-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all .15s;
}
.city-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,164,74,.15);
  text-decoration: none;
}

.city-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .02em;
  margin-bottom: 3px;
}

.city-meta {
  font-size: 10px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 3px;
}

.city-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

.cities-grid-small {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cities-grid-small a {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all .15s;
  text-decoration: none;
}
.cities-grid-small a:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* =============================================
   COST SECTION
   ============================================= */
.cost-section { padding: 64px 20px; background: var(--black); }
.cost-section h2 { color: #fff; }
.cost-section .section-eyebrow { color: var(--gold); }
.cost-section p { color: #888; }
.cost-section a { color: var(--gold); }

/* =============================================
   COST TABLES
   ============================================= */
.cost-table-wrap { overflow-x: auto; margin: 20px 0; }

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cost-table th {
  background: var(--black);
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border-dark);
}

.cost-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #f0ede8;
  color: var(--text);
}

.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:hover td { background: var(--bg-light); }
.cost-table td:first-child { font-weight: 500; }
.cost-table td:last-child { color: var(--gold-dk); font-weight: 600; }

/* Dark table variant (inside dark sections) */
.cost-section .cost-table th { background: #111; border-bottom-color: #222; }
.cost-section .cost-table td { border-bottom-color: #1a1a1a; color: #ccc; }
.cost-section .cost-table tr:hover td { background: #111; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--gold);
  padding: 64px 20px;
  text-align: center;
}

.cta-section h2 { color: var(--black); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-section p { color: #5a4a20; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-section .btn-primary {
  background: var(--black);
  color: #fff;
}
.cta-section .btn-primary:hover { background: #222; }

/* =============================================
   INLINE CTA (Article body)
   ============================================= */
.inline-cta {
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 32px 0;
  text-align: center;
}
.inline-cta p { color: #d4b96a; margin-bottom: 14px; font-weight: 500; }
.inline-cta p strong { color: #fff; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { padding: 64px 20px; background: var(--bg-light); }

.faq-list { max-width: 800px; margin-top: 28px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 400;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { background: var(--bg-light); }

.faq-item p {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-item p a { color: var(--gold); }

/* =============================================
   ARTICLE BODY
   ============================================= */
.article-body { padding: 56px 20px; }

.article-container {
  max-width: 820px;
}

.article-container h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.article-container h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-container p { font-size: 15px; line-height: 1.75; color: #333; }
.article-container a { color: var(--gold-dk); }

.article-container ul,
.article-container ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.article-container li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  line-height: 1.65;
}

/* Checklist */
.checklist { list-style: none; padding-left: 0; margin-bottom: 20px; }
.checklist li { padding-left: 24px; position: relative; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Service links inline */
.service-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 32px;
}
.service-links-inline a {
  padding: 7px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all .15s;
  text-decoration: none;
}
.service-links-inline a:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* Process list */
.process-list { list-style: none; padding: 0; margin: 24px 0; counter-reset: steps; }
.process-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.process-list li:last-child { border-bottom: none; margin-bottom: 0; }
.process-list li::before {
  content: counter(steps);
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}
.process-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}
.process-list li p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.feature-icon { font-size: 1.7rem; margin-bottom: 10px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* =============================================
   RELATED CITIES SECTION
   ============================================= */
.related-cities { padding: 48px 20px; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #080808; border-top: 1px solid var(--border-dark); }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 20px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo { display: block; margin-bottom: 12px; font-size: 20px; }
.footer-brand p { font-size: 13px; color: #444; line-height: 1.65; }

.footer-links h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 14px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: #444; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #111;
  padding: 18px 20px;
  text-align: center;
  font-size: 11px;
  color: #333;
}

/* =============================================
   ACTIVE NAV
   ============================================= */
.nav-links a.active { color: var(--gold) !important; }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 16px 20px;
    z-index: 199;
    box-shadow: 0 12px 32px rgba(0,0,0,.6);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 10px 12px; font-size: 14px; border-radius: var(--radius); }
  .dropdown { display: none !important; }

  .hero { padding: 48px 20px 44px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-secondary { width: 100%; text-align: center; }
  .hero-trust { flex-direction: column; gap: 6px; align-items: center; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-dark); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .feature-grid { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 36px 1fr; gap: 12px; }
  .process-list li::before { width: 36px; height: 36px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
