/* ============================================================
   AMG CONTRACTORS LLC — Main Stylesheet
   Premium Residential Exterior Remodeling | South Jersey
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --navy:       #0E1B2E;
  --charcoal:   #1E2A35;
  --gold:       #8B6914;
  --gold-light: #B8920A;
  --gold-muted: #C9A84C;
  --green:      #2D4A2D;
  --green-light:#3A5F3A;
  --green-accent:#4A7C4A;
  --white:      #FFFFFF;
  --off-white:  #FAF9F7;
  --cream:      #F5F0E8;
  --warm-gray:  #F0EDE8;
  --light-gray: #E8E5E0;
  --mid-gray:   #9A9490;
  --text-dark:  #1A1A1A;
  --text-body:  #3D3530;
  --text-muted: #6B6560;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.18);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --section-pad: 90px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-body); }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-muted); }
.text-green { color: var(--green-accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.section-pad { padding: var(--section-pad) 0; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.bg-warm-gray { background: var(--warm-gray); }
.bg-navy { background: var(--navy); }
.bg-green { background: var(--green); }
.bg-charcoal { background: var(--charcoal); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid var(--gold-muted);
  border-radius: 40px;
}
.section-label.green {
  color: var(--green-accent);
  border-color: var(--green-accent);
}
.section-label.white {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

/* --- Section Intro --- */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 1.1rem; color: var(--text-muted); }
.section-intro.left { text-align: left; margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold-muted);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(139,105,20,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,105,20,0.45);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--charcoal);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-green {
  background: var(--green-light);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,74,45,0.3);
}
.btn-green:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ==============================================
   HEADER / NAVIGATION
   ============================================== */
#site-header {
  position: relative;  /* Non-sticky: scrolls with page */
  top: auto;
  z-index: 1000;
  transition: none;
}
#site-header.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
/* Legacy classes kept to avoid JS errors */
#site-header.transparent { background: var(--navy); }
#site-header.scrolled { background: var(--navy); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold-muted);
  background: rgba(255,255,255,0.08);
}

/* Dropdown — single column */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  transform: translateY(-8px);
  min-width: 220px;
  width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  color: var(--text-body) !important;
  padding: 9px 14px !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-sm);
  background: transparent !important;
}
.dropdown-menu a:hover {
  background: var(--cream) !important;
  color: var(--gold) !important;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--gold-muted); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 100px 32px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-muted); }
.mobile-nav .sub-menu { padding-left: 16px; }
.mobile-nav .sub-menu a { font-size: 0.95rem; color: rgba(255,255,255,0.7); border: none; padding: 8px 0; }
.mobile-nav-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=%2BIW3kUp3u7BmHrF0OK57UPtcooIhPeD0HdbMFOhdXzJAC3fP4WNASavvzeaozBq%2Fu14ijzgM6GcKlXPvTxyKZhDM9vvi%2FuGaUVHGz6koDeVc%2BWuD9uOcdpHGmdxgvCtlNU7q66JAF3nBu54Hgcaks0RtBx3hHC3s%2FW8PJM1%2Fjbh72TTGfPo5loqsvoLm130KbaXBoyHcFKxzqIhxK8rdn8gD9Q%3D%3D&u2=t0GAjRSAMOQyUxKg&width=2560');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10,20,40,0.88) 40%, rgba(10,20,40,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0 80px; /* Reduced — header no longer overlaps (non-sticky) */
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold-muted); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--gold-muted); font-size: 1rem; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==============================================
   TRUST BADGES STRIP
   ============================================== */
.trust-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--gold-muted);
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-badge i {
  font-size: 1.3rem;
  color: var(--gold-muted);
}

/* ==============================================
   SERVICE CARDS
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--warm-gray);
  position: static;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-icon {
  position: absolute;
  top: 175px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 10;
}
.service-card-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--gold-light); }

/* ==============================================
   WHY CHOOSE AMG
   ============================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-float .badge-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-badge-float .badge-text strong { display: block; font-size: 1.1rem; color: var(--text-dark); }
.why-badge-float .badge-text span { font-size: 0.82rem; color: var(--text-muted); }

.why-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature-text h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text-dark); }
.why-feature-text p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ==============================================
   PROJECT GALLERY
   ============================================== */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--light-gray);
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--warm-gray);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,27,46,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-item-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--white);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold-muted); }

/* ==============================================
   REVIEWS / TESTIMONIALS
   ============================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-stars { display: flex; gap: 3px; }
.review-stars i { color: #F4B942; font-size: 0.95rem; }
.review-text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author-info strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.review-author-info span { font-size: 0.82rem; color: var(--text-muted); }
.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
}

/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 50px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  border: 1px solid var(--light-gray);
  flex-wrap: wrap;
}
.rating-big { text-align: center; }
.rating-big .number { font-size: 4.5rem; font-weight: 800; color: var(--text-dark); line-height: 1; font-family: var(--font-heading); }
.rating-big .stars { display: flex; gap: 4px; justify-content: center; margin: 8px 0; }
.rating-big .stars i { color: #F4B942; font-size: 1.3rem; }
.rating-big .count { font-size: 0.88rem; color: var(--text-muted); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; }
.rating-bar-row span { font-size: 0.85rem; width: 60px; color: var(--text-muted); }
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: #F4B942;
  border-radius: 4px;
}
.rating-badges { display: flex; flex-direction: column; gap: 14px; }
.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}
.rating-badge i { color: var(--green-accent); font-size: 1.1rem; }

/* ==============================================
   PROCESS STEPS
   ============================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-muted), var(--green-accent));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 3px solid var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--gold-muted);
  color: var(--white);
  transform: scale(1.08);
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ==============================================
   AREAS SERVED
   ============================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text-body);
}
.area-card:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--gold);
}
.area-card i { color: var(--gold-muted); font-size: 1rem; }
.area-card span { font-size: 0.95rem; font-weight: 500; }

/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-banner .btn-group { justify-content: center; position: relative; z-index: 1; }

/* Full width CTA */
.cta-full {
  background: var(--gold-muted);
  padding: 24px;
  text-align: center;
}
.cta-full a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity var(--transition);
}
.cta-full a:hover { opacity: 0.88; color: var(--white); }

/* ==============================================
   CONTACT FORM
   ============================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text a { font-size: 1.05rem; font-weight: 600; color: var(--text-dark); transition: color var(--transition); }
.contact-info-text a:hover { color: var(--gold); }
.contact-info-text p { font-size: 0.95rem; color: var(--text-body); margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-gray);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 16px; }
.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid var(--green-accent);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--green);
  font-weight: 600;
}

/* ==============================================
   FAQ
   ============================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  gap: 16px;
}
.faq-question span { font-size: 1rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold-muted); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 26px 24px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-body); margin: 0; }

/* ==============================================
   INNER PAGE HERO
   ============================================== */
.page-hero {
  position: relative;
  padding: 90px 0 80px; /* Reduced — header no longer fixed/overlapping */
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,27,46,0.85) 0%, rgba(45,74,45,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: 32px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-muted); }
.breadcrumb i { font-size: 0.7rem; }
.breadcrumb .current { color: var(--gold-muted); }

/* ==============================================
   SERVICE DETAIL PAGES
   ============================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.service-detail-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.benefits-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.benefit-icon { color: var(--green-accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.benefit-text strong { display: block; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 2px; }
.benefit-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.material-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.material-card:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-md);
}
.material-card i { font-size: 2rem; color: var(--gold-muted); margin-bottom: 12px; }
.material-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.material-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ==============================================
   BEFORE / AFTER PROJECT GALLERY
   ============================================== */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.before-after-pair {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.before-after-pair:hover .ba-image-wrap img {
  transform: scale(1.03);
}
.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.ba-label.before {
  background: rgba(30,30,30,0.72);
  color: #fff;
  backdrop-filter: blur(4px);
}
.ba-label.after {
  background: var(--gold-muted);
  color: #fff;
  backdrop-filter: blur(4px);
}
.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-divider i {
  color: var(--gold-muted);
  font-size: 0.9rem;
}
.ba-caption {
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}
.ba-caption h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.ba-caption p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 64px; width: auto; margin-bottom: 20px; object-fit: contain; }
.footer-about { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold-muted); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item i { color: var(--gold-muted); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-hours { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* ==============================================
   STICKY ELEMENTS
   ============================================== */
.sticky-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--gold-muted);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all var(--transition);
  text-decoration: none;
}
.sticky-call-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  color: var(--white);
}
.sticky-call-btn.mobile-only { display: none; }

.float-quote {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  background: var(--green-light);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all var(--transition);
  text-decoration: none;
}
.float-quote:hover {
  background: var(--green-accent);
  transform: scale(1.05) translateY(-2px);
  color: var(--white);
}

/* ==============================================
   SCROLL ANIMATIONS
   ============================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }
.stagger-children.visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 0.65s; }

/* ==============================================
   TRANSFORMATIONS GRID
   ============================================== */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.transformation-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--warm-gray);
}
.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.transformation-card:hover img { transform: scale(1.05); }
.transformation-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(14,27,46,0.88) 0%, transparent 100%);
  color: var(--white);
  padding: 20px 20px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ==============================================
   BEFORE/AFTER SLIDER
   ============================================== */
.before-after-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: ew-resize;
  user-select: none;
  max-width: 800px;
  margin: 0 auto;
}
.before-after-wrap img.before-img,
.before-after-wrap img.after-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.after-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  cursor: ew-resize;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1rem;
}
.ba-label {
  position: absolute;
  bottom: 20px;
  background: rgba(14,27,46,0.75);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }

/* ==============================================
   TRUST VALUES ROW (reviews page)
   ============================================== */
.trust-values-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-value-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.trust-value-item i {
  font-size: 2.5rem;
  color: var(--gold-muted);
  margin-bottom: 14px;
  display: block;
}
.trust-value-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.trust-value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ==============================================
   ABOUT VALUES GRID (3col x 2row)
   ============================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.values-grid > div {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  text-align: center;
}

/* ==============================================
   FINANCING PAGE
   ============================================== */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.financing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}
.financing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.financing-card i { font-size: 2.5rem; color: var(--gold-muted); margin-bottom: 20px; }
.financing-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.financing-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ==============================================
   MAP
   ============================================== */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 380px;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--text-muted);
}
.map-placeholder i { font-size: 3rem; color: var(--gold-muted); }

/* ==============================================
   LOCAL SEO AREA PAGES
   ============================================== */
.area-hero-stat {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.area-stat {
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.area-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold-muted); font-family: var(--font-heading); }
.area-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ==============================================
   GLOBAL IMAGE QUALITY FIXES
   ============================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}
/* Prevent images from being crushed/stretched inside flex/grid */
.service-card-img img,
.gallery-item img,
.transformation-card img,
.why-image-wrap img,
.service-detail-image img,
.page-hero-bg {
  object-fit: cover;
  object-position: center;
}
/* Hero background image rendered from CSS */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .trust-values-row { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 80px 0 60px; }
  .main-nav, .header-cta .btn { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .trust-strip-inner { gap: 24px; }
  .transformations-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-values-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --section-pad: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .contact-form-wrap { padding: 32px 22px; }
  .float-quote { display: none; }
  .sticky-call-btn.mobile-only { display: flex; }
  .header-inner { padding: 14px 20px; }
  .hero-trust-row { gap: 16px; }
  .before-after-wrap img.before-img,
  .before-after-wrap img.after-img { height: 250px; }
  .area-hero-stat { gap: 16px; }
  .transformations-grid { grid-template-columns: 1fr; }
  .trust-values-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
}
