/*
Theme Name: A Roof Restoration
Theme URI: https://aroofrestoration.com
Author: Acadiana Roof Restoration LLC
Description: Custom WordPress theme for Acadiana Roof Restoration — matching aroofrestore.com
Version: 1.0
License: Proprietary
Text Domain: aroof-theme
*/

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

:root {
  --blue:    #1e3a8a;
  --orange:  #f59e0b;
  --orange-dark: #d97706;
  --dark:    #111827;
  --dark2:   #1f2937;
  --gray:    #6b7280;
  --light:   #f3f4f6;
  --white:   #ffffff;
  --radius:  6px;
  --shadow:  0 2px 12px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--dark2);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-dark   { background: var(--dark2); color: var(--white); }
.btn-dark:hover { background: var(--dark); }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-left span::before { content: "✓ "; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-right a { color: var(--white); font-weight: 500; }
.top-bar-right a:hover { text-decoration: underline; }

/* ===== MAIN HEADER / NAV ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.site-logo img { height: 60px; width: auto; }
.site-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.site-logo-text span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark2);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--light); color: var(--blue); }

.nav-cta { margin-left: 12px; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a::after { content: " ▾"; font-size: 11px; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 6px 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  border-radius: 0;
}
.dropdown a:hover { background: var(--light); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark2);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f1f4e 0%, #1e3a8a 50%, #1e3058 100%);
  color: var(--white);
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://aroofrestore.com/wp-content/uploads/2024/01/acadiana-roof-restoration-hero.jpg') center/cover no-repeat;
  opacity: 0.25;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge::before { content: "✓"; }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--orange); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  color: var(--dark2);
}
.hero-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.hero-form-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-field {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark2);
  background: var(--white);
  font-family: inherit;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.form-field:focus { outline: none; border-color: var(--blue); }
.form-field.full { grid-column: 1 / -1; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--orange-dark); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
}
.honeypot { display: none !important; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  color: var(--white);
  padding: 28px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 16px;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== BADGES / CERTIFICATIONS ===== */
.badges-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}
.badges-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark2);
}
.badge-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ===== SECTION HEADINGS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img { border-radius: 12px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--blue), #2d5fc4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.trust-badge {
  padding: 6px 14px;
  background: var(--light);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badge::before { content: "✓"; color: var(--orange); font-weight: 700; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.service-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue), #2d5fc4);
  position: relative;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.service-card-body p { font-size: 14px; color: var(--gray); line-height: 1.6; flex: 1; }
.service-card-link {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.service-card-link:hover { text-decoration: underline; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; }
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.why-item p  { font-size: 14px; color: var(--gray); line-height: 1.6; }
.why-img { border-radius: 12px; overflow: hidden; }
.why-img img { width: 100%; height: 450px; object-fit: cover; }
.why-img-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #0f1f4e, var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-header { text-align: center; margin-bottom: 16px; }
.rating-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 600;
}
.stars { color: var(--orange); font-size: 20px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--orange); font-size: 16px; margin-bottom: 12px; }
.review-text {
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: var(--dark); }
.reviewer-source { color: var(--gray); }
.reviews-cta { text-align: center; margin-top: 32px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-question:hover { background: var(--light); }
.faq-icon { font-size: 20px; color: var(--orange); font-weight: 400; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== SERVICE AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.area-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark2);
  transition: background 0.15s, border-color 0.15s;
}
.area-card:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #1e3058 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta-section p  { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact-item { font-size: 13px; margin-bottom: 6px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--orange); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.hours-day { color: rgba(255,255,255,0.65); }
.hours-time { color: rgba(255,255,255,0.9); font-weight: 500; }
.footer-certs { margin-top: 16px; }
.footer-cert { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; padding-left: 12px; position: relative; }
.footer-cert::before { content: "✓"; position: absolute; left: 0; color: var(--orange); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 16px; }
.footer-bottom a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.15s;
}
.footer-social a:hover { background: var(--orange); }

/* ===== STICKY CTA BAR (mobile) ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  z-index: 9999;
  padding: 12px 16px;
  text-align: center;
}
.sticky-cta a {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

/* ===== PAGE INNER CONTENT ===== */
.page-hero {
  background: linear-gradient(135deg, #0f1f4e 0%, var(--blue) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

.page-content { padding: 60px 0; }
.prose { max-width: 820px; }
.prose h2 { font-size: 26px; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.prose h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; color: var(--dark); }
.prose p  { margin-bottom: 16px; color: var(--dark2); line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 6px; color: var(--dark2); line-height: 1.6; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.credential-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.credential-item::before { content: "✓"; color: var(--orange); font-size: 16px; font-weight: 800; }

.promise-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.promise-item { display: flex; gap: 12px; align-items: flex-start; }
.promise-bullet {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.promise-item p { font-size: 15px; color: var(--dark2); line-height: 1.6; }
.promise-item strong { color: var(--dark); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form-box {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
}
.contact-form-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.contact-info-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--gray); }
.contact-detail a:hover { color: var(--orange); }
.hours-table { width: 100%; font-size: 14px; margin-top: 8px; border-collapse: collapse; }
.hours-table td { padding: 6px 0; }
.hours-table td:first-child { color: var(--dark2); font-weight: 500; }
.hours-table td:last-child { color: var(--gray); text-align: right; }

/* Services page */
.services-list { display: flex; flex-direction: column; gap: 32px; }
.service-row {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-left: 4px solid var(--orange);
}
.service-row-icon { font-size: 36px; flex-shrink: 0; }
.service-row h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.service-row p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.service-row a { font-size: 14px; font-weight: 600; color: var(--blue); }
.service-row a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .top-bar .container { flex-direction: column; gap: 4px; font-size: 12px; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--white); padding: 12px; box-shadow: var(--shadow); z-index: 100; }
  .nav-toggle { display: block; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
}
