/* ============================================================
   Contractor Network USA — Global Stylesheet
   Niche: Garage Door Installation & Repair
   Design: Steel-blue authority palette, industrial precision,
           bold typography conveying speed and reliability
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Color Palette */
  --navy:        #0f1f35;   /* Deep authority navy */
  --steel:       #1c4b7a;   /* Primary steel blue */
  --sky:         #2d7dd2;   /* Action blue */
  --amber:       #f59e0b;   /* CTA amber — high visibility */
  --amber-dark:  #d97706;
  --slate:       #64748b;   /* Body text secondary */
  --light-gray:  #f1f5f9;   /* Page backgrounds */
  --white:       #ffffff;
  --border:      #e2e8f0;
  --text-dark:   #1e293b;
  --text-body:   #374151;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-pad: 4rem 1.5rem;
  --container:   1200px;
  --radius:      6px;
  --radius-lg:   12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: .01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: .85rem 1.5rem;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: .7rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav-list > li { position: relative; }

.nav-link {
  display: block;
  padding: .55rem .85rem;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background .18s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover { background: rgba(255,255,255,.1); text-decoration: none; }

/* Dropdown trigger arrow */
.has-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: .75rem;
  opacity: .7;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .3rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  border: 1px solid var(--border);
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: .6rem 1rem;
  font-size: .88rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  text-decoration: none;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--light-gray); color: var(--sky); }

/* Nav CTA buttons */
.btn-nav-contractor {
  padding: .5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  transition: all .18s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav-contractor:hover { background: rgba(255,255,255,.1); text-decoration: none; }

.btn-nav-quote {
  padding: .5rem 1.1rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  transition: background .18s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav-quote:hover { background: var(--amber-dark); text-decoration: none; }

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-nav.open { display: block; }

.mobile-nav-list { padding: 1rem 1.5rem; }

.mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,.08); }

.mobile-nav-list a {
  display: block;
  padding: .7rem 0;
  color: var(--white);
  font-size: .95rem;
  text-decoration: none;
}

.mobile-nav-list .mobile-sub {
  padding-left: 1rem;
}

.mobile-nav-list .mobile-sub a {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

.mobile-cta-row {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.5rem 1.25rem;
  flex-wrap: wrap;
}

.mobile-cta-row .btn-nav-quote,
.mobile-cta-row .btn-nav-contractor { flex: 1; text-align: center; }

/* ============================================================
   PHONE BAR (above fold trust bar)
   ============================================================ */
.phone-bar {
  background: var(--amber);
  text-align: center;
  padding: .5rem 1rem;
}

.phone-bar p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: .02em;
}

.phone-bar a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
}

.phone-bar a:hover { text-decoration: underline; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 60%, #1a5c9a 100%);
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 { color: var(--white); margin-bottom: 1rem; }

.hero-content .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
  transition: opacity .18s;
}

.hero-phone:hover { opacity: .85; text-decoration: none; }

.hero-phone-icon { font-size: 1.5rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  min-width: 220px;
  text-align: center;
}

.hero-card-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: .5rem;
}

.hero-card-stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}

.hero-card-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--sky);
  border-color: var(--sky);
}

.btn-outline:hover { background: var(--sky); color: var(--white); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--slate);
}

.breadcrumb-list a { color: var(--sky); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }

.breadcrumb-sep { color: var(--slate); font-size: .7rem; }

.breadcrumb-current { color: var(--text-dark); font-weight: 500; }

/* ============================================================
   TRUST BAR / STATS BAR
   ============================================================ */
.trust-bar {
  background: var(--steel);
  padding: 1.25rem 1.5rem;
}

.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
}

.trust-item-icon {
  font-size: 1.3rem;
  color: var(--amber);
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: var(--section-pad); }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--sky);
  margin-bottom: .6rem;
}

.section-header h2 { margin-bottom: .75rem; }

.section-header p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.service-card p { color: var(--slate); font-size: .92rem; flex: 1; }

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--sky);
  margin-top: 1rem;
  text-decoration: none;
}

.service-card .card-link:hover { gap: .6rem; text-decoration: none; }

/* ============================================================
   HUB / STATE CARDS
   ============================================================ */
.hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}

.hub-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
  text-decoration: none;
}

.hub-card-eyebrow {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate);
  margin-bottom: .3rem;
}

.hub-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

.hub-card p {
  font-size: .85rem;
  color: var(--slate);
  margin-bottom: 0;
}

.hub-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  margin-top: .85rem;
}

/* States Grid */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
}

.state-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .15s, border-color .15s;
}

.state-card:hover {
  background: var(--light-gray);
  border-color: var(--sky);
  color: var(--sky);
  text-decoration: none;
}

/* ============================================================
   TOWN / AREA LINKS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}

.area-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: .9rem;
  text-decoration: none;
  transition: all .15s;
}

.area-link:hover {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  text-decoration: none;
}

.area-link-icon { color: var(--sky); font-size: .8rem; }
.area-link:hover .area-link-icon { color: var(--white); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--steel);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.step h3 { margin-bottom: .5rem; }
.step p { font-size: .92rem; color: var(--slate); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
  gap: 1rem;
}

.faq-question:hover { background: var(--light-gray); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: .92rem;
  color: var(--text-body);
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: .85rem;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FORM PLACEHOLDER
   ============================================================ */
.form-placeholder {
  background: var(--light-gray);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--slate);
}

.form-placeholder-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.form-placeholder h3 { color: var(--navy); margin-bottom: .5rem; }
.form-placeholder p { font-size: .9rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--steel) 0%, var(--navy) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.cta-phone:hover { opacity: .85; text-decoration: none; }

.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--light-gray);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: .78rem;
  color: var(--slate);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.5rem 0;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-main { font-size: 1.3rem; margin-bottom: .35rem; }
.footer-brand .logo-sub { font-size: .68rem; }

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-top: 1rem;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  text-decoration: none;
  transition: color .15s;
}

.footer-col ul li a:hover { color: var(--amber); text-decoration: none; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  margin-bottom: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  padding-bottom: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================================
   BADGES / TRUST SIGNALS
   ============================================================ */
.badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.badge-icon { font-size: .95rem; color: var(--amber); }

.badge-light {
  background: var(--light-gray);
  border-color: var(--border);
  color: var(--text-dark);
}

.badge-light .badge-icon { color: var(--steel); }

/* ============================================================
   WHY CHOOSE US / FEATURE GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.section-dark .feature-icon-wrap { background: rgba(255,255,255,.08); }

.feature-content h4 { margin-bottom: .25rem; }
.feature-content p { font-size: .88rem; color: var(--slate); margin: 0; }
.section-dark .feature-content p { color: rgba(255,255,255,.65); }
.section-dark .feature-content h4 { color: var(--white); }

/* ============================================================
   CONTENT / ARTICLE STYLES
   ============================================================ */
.content-block {
  max-width: 820px;
}

.content-block h2 { margin: 2rem 0 .75rem; }
.content-block h3 { margin: 1.5rem 0 .5rem; }
.content-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-block ul li { margin-bottom: .4rem; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.sidebar-card h4 { margin-bottom: 1rem; }

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--steel);
  text-decoration: none;
}

/* ============================================================
   NEARBY TOWNS
   ============================================================ */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .6rem;
}

.nearby-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all .15s;
}

.nearby-link:hover {
  border-color: var(--sky);
  color: var(--sky);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3rem 1.25rem; }

  .site-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar-inner { gap: 1rem; }
  .trust-item span { font-size: .8rem; }

  h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-phone { font-size: 1.6rem; }
  .cta-phone { font-size: 1.75rem; }
  .states-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .mobile-nav, .trust-bar, .cta-section, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* ── Quote / Contact Form ── */
.form-group { margin-bottom: 1rem; }
.form-group label { display:block; font-weight:600; font-size:.9rem; margin-bottom:.35rem; color:#1a1a2e; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:.65rem .9rem; border:1px solid #c8d0dc;
  border-radius:6px; font-size:.95rem; font-family:inherit; color:#1a1a2e;
  background:#fff; transition:border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none; border-color:#1a4fa3; box-shadow:0 0 0 3px rgba(26,79,163,.12);
}
.btn-form-submit {
  display:block; width:100%; padding:.9rem 1.5rem; background:#e67e22;
  color:#fff; font-weight:700; font-size:1rem; font-family:inherit;
  border:none; border-radius:6px; cursor:pointer; margin-top:.5rem;
  transition:background .15s; letter-spacing:.02em;
}
.btn-form-submit:hover { background:#d35400; }
.btn-form-submit:disabled { opacity:.6; cursor:not-allowed; }
#cnu-form { max-width:520px; margin:0 auto; }
