/* ============================================
   NEXT GENERATION WALLS — Light Theme
   ============================================ */

:root {
  --coal: #111111;
  --charcoal: #1a1a1a;
  --iron: #2a2a2a;
  --steel: #3a3a3a;
  --concrete: #555555;
  --stone: #888888;
  --sand: #b0a898;
  --amber: #c8913a;
  --amber-light: #d4a24e;
  --amber-glow: #e8b85a;
  --cream: #f5f2ec;
  --white: #ffffff;
  --red-accent: #8b3a3a;

  /* Light theme tokens */
  --bg-white: #ffffff;
  --bg-cream: #f8f6f1;
  --bg-warm: #f0ede6;
  --text-dark: #1a1a1a;
  --text-body: #3a3a3a;
  --text-muted: #6b6b6b;
  --border-light: rgba(0,0,0,0.08);
  --border-med: rgba(0,0,0,0.12);

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.accent { color: var(--amber); }

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--amber);
  margin: 20px auto;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200, 145, 58, 0.3);
}

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

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

.btn-full { width: 100%; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--coal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--stone);
}

.top-bar-item a {
  color: var(--stone);
  transition: color 0.2s;
}

.top-bar-item a:hover { color: var(--amber); }

.top-bar-item svg { color: var(--amber); flex-shrink: 0; }

.top-bar-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 4px 12px;
  border: 1px solid rgba(200, 145, 58, 0.3);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--concrete);
  padding: 8px 14px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-dark); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* ============================================
   HERO (stays dark)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://img1.wsimg.com/isteam/ip/70ff2304-016e-4184-8c47-0fde30589323/DSC02079-2.jpg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,cg:true,m') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.92) 0%,
    rgba(17, 17, 17, 0.75) 50%,
    rgba(17, 17, 17, 0.85) 100%
  );
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200, 145, 58, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 145, 58, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 8px 20px;
  border: 1px solid rgba(200, 145, 58, 0.4);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--sand);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--stone);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 145, 58, 0.2);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--amber);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-cream);
}

.about-bg {
  position: absolute;
  inset: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 242, 236, 0.97) 0%,
    rgba(245, 242, 236, 0.93) 50%,
    rgba(245, 242, 236, 0.7) 100%
  );
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-body);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.about-highlights {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.highlight svg {
  flex-shrink: 0;
  stroke: var(--amber);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item-lg {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   INSPECTIONS
   ============================================ */
.inspections {
  padding: 100px 0;
  background: var(--bg-cream);
}

.inspections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.inspection-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.inspection-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.inspection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspection-card:hover .inspection-img img {
  transform: scale(1.05);
}

.inspection-content {
  padding: 28px;
}

.inspection-step {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.inspection-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.inspection-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.inspection-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-white);
  border-left: 3px solid var(--amber);
  padding: 24px 28px;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--amber);
}

.inspection-note svg {
  flex-shrink: 0;
  stroke: var(--amber);
  margin-top: 2px;
}

.inspection-note p {
  color: var(--text-body);
  font-size: 1.05rem;
}

.inspection-note strong {
  color: var(--text-dark);
}

/* ============================================
   EIFS VS STUCCO
   ============================================ */
.eifs-vs-stucco {
  padding: 100px 0;
  background: var(--bg-white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.comparison-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 0;
  overflow: hidden;
}

.comparison-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.comparison-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-card h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--amber);
  padding: 24px 28px 0;
}

.comparison-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  padding: 12px 28px 28px;
  line-height: 1.7;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications {
  padding: 100px 0;
  background: var(--bg-cream);
}

.cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 32px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  min-width: 160px;
}

.cert-item:hover {
  border-color: rgba(200, 145, 58, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-img-wrap {
  background: var(--cream);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cert-item img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.cert-item span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 145, 58, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 145, 58, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--amber);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(200, 145, 58, 0.2);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-author span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area {
  padding: 80px 0;
  background: var(--amber);
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-content {
  text-align: left;
}

.area-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coal);
  margin-bottom: 20px;
}

.area-cities {
  font-size: 1.15rem;
  color: rgba(17, 17, 17, 0.7);
  max-width: 700px;
  margin: 0 0 32px;
  line-height: 1.8;
}

.service-area .btn-primary {
  background: var(--coal);
  color: var(--white);
  border-color: var(--coal);
}

.service-area .btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

/* NC County Map */
.area-map {
  position: relative;
}

.nc-map {
  width: 100%;
  height: auto;
}

.nc-map path {
  fill: rgba(17, 17, 17, 0.2);
  stroke: rgba(17, 17, 17, 0.35);
  stroke-width: 0.15;
  transition: all 0.3s ease;
  cursor: default;
}

.nc-map path.served {
  cursor: pointer;
}

.nc-map path.served.primary {
  fill: var(--coal);
  stroke: rgba(17, 17, 17, 0.6);
}

.nc-map path.served.extended {
  fill: rgba(17, 17, 17, 0.55);
  stroke: rgba(17, 17, 17, 0.5);
}

.nc-map path.served:hover {
  fill: var(--white);
  stroke: var(--coal);
  stroke-width: 0.3;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
  transform-origin: center;
}

.map-tooltip {
  position: absolute;
  background: var(--coal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 10;
  transform: translate(-50%, -100%);
  margin-top: -8px;
}

.map-tooltip.visible {
  opacity: 1;
}

/* ============================================
   INFO SECTION (EIFS & Stucco in NC)
   Background image section
   ============================================ */
.info-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(248, 246, 241, 0.93), rgba(248, 246, 241, 0.93)),
    url('https://img1.wsimg.com/isteam/ip/70ff2304-016e-4184-8c47-0fde30589323/blob-0005.png/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,cg:true,m') center/cover no-repeat;
  position: relative;
}

.info-section .container {
  position: relative;
  z-index: 2;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-light);
  padding: 36px 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.info-card:hover {
  border-color: rgba(200, 145, 58, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--amber);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   FAQ SECTION
   Background image section
   ============================================ */
.faq-section {
  padding: 100px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url('https://img1.wsimg.com/isteam/ip/70ff2304-016e-4184-8c47-0fde30589323/20210224_124002-2.jpg/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,cg:true,m') center/cover no-repeat;
  position: relative;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.3s;
  backdrop-filter: blur(4px);
}

.faq-item.active {
  border-color: rgba(200, 145, 58, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.faq-question svg {
  flex-shrink: 0;
  stroke: var(--amber);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.faq-answer p {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.faq-item.active .faq-answer p {
  opacity: 1;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   POPUP FORM
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  max-width: 540px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.popup-overlay.active .popup-form {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s;
}

.popup-close:hover { color: var(--text-dark); }

.popup-form h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-form > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.popup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.popup-field {
  margin-bottom: 16px;
}

.popup-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 6px;
}

.popup-field input,
.popup-field select,
.popup-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-cream);
  border: 1px solid var(--border-med);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.02rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.popup-field input:focus,
.popup-field select:focus,
.popup-field textarea:focus {
  border-color: var(--amber);
}

.popup-field input::placeholder,
.popup-field textarea::placeholder {
  color: var(--stone);
}

.popup-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.popup-field textarea { resize: vertical; min-height: 80px; }

.popup-form .btn { margin-top: 4px; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 28px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-role {
  display: block;
  font-size: 0.92rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  font-size: 1.02rem;
  padding: 8px 0;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--amber); }

.contact-link svg {
  flex-shrink: 0;
  stroke: var(--amber);
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-cream);
  border: 1px solid var(--border-med);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { margin-top: 4px; }

/* ============================================
   FOOTER (stays dark)
   ============================================ */
.footer {
  padding: 64px 0 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.3);
}

.footer-brand p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
  display: block;
  color: var(--stone);
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover { color: var(--amber); }

.footer-area {
  color: var(--concrete);
  font-size: 0.92rem;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--concrete);
  font-size: 0.92rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .inspections-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-lg { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-right { display: none; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 16px;
    text-align: center;
  }

  .hero-content { padding: 80px 0 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .inspections-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .area-layout { grid-template-columns: 1fr; text-align: center; }
  .area-content { text-align: center; }
  .area-cities { margin: 0 auto 32px; }
  .popup-row { grid-template-columns: 1fr; }
  .gallery-item-lg { grid-column: span 1; }

  .about-bg-overlay {
    background: rgba(245, 242, 236, 0.95);
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .cert-grid { gap: 20px; }
  .cert-item { min-width: 140px; padding: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .top-bar-left { flex-direction: column; gap: 4px; }
  .section-header { margin-bottom: 40px; }
}
