/* ===== CSS RESET & VARIABLES ===== */
:root {
  --green: #7ED957;
  --green-hover: #6BC14A;
  --green-dark: #5A9C40;
  --red: #DC2626;
  --red-hover: #B91C1C;
  --blue: #131F28;
  --blue-light: #1E293B;
  --blue-dark: #0F172A;
  --text-dark: #0F172A;
  --text-medium: #334155;
  --text-light: #64748B;
  --bg-light: #F8FAFC;
  --bg-blue-tint: #F1F5F9;
  --bg-blue-light: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
  --shadow-header: 0 4px 20px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
}

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

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

/* Safe-area (notch / home indicator) — pair with viewport-fit=cover on key pages */
@supports (padding: env(safe-area-inset-top)) {
  body {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

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

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

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--blue);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== TOP INFO BAR ===== */
.top-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
}

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

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

.top-bar-left a,
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  transition: var(--transition);
}

.top-bar-left a:hover { opacity: 0.8; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-licensed {
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background:
    radial-gradient(120% 160% at 50% -40%, rgba(126, 217, 87, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(126, 217, 87, 0.14),
    0 12px 40px rgba(0, 0, 0, 0.22);
}

.header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126, 217, 87, 0.65), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.header.scrolled {
  background:
    radial-gradient(120% 160% at 50% -40%, rgba(126, 217, 87, 0.1) 0%, transparent 55%),
    rgba(11, 18, 32, 0.88);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 1px 0 rgba(126, 217, 87, 0.16),
    0 18px 50px rgba(0, 0, 0, 0.38);
}

.header.scrolled::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  z-index: 1;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.logo img {
  height: 52px;
  width: auto;
  max-height: 52px;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.logo-text {
  display: none; /* Hide old text logo if image logo is present */
}

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

.nav-links > a:not(.btn-estimate),
.nav-links > .nav-dropdown > a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-links > a:not(.btn-estimate):hover,
.nav-links > .nav-dropdown > a:hover {
  color: #eafbe0;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-links > a:not(.btn-estimate):focus-visible,
.nav-links > .nav-dropdown > a:focus-visible {
  outline: 2px solid rgba(126, 217, 87, 0.65);
  outline-offset: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: var(--transition);
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.nav-dropdown:hover > a {
  color: #eafbe0;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 14px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  margin: 2px 10px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover {
  background: rgba(126, 217, 87, 0.12);
  color: #c8f5a8;
}

.btn-estimate {
  background: linear-gradient(135deg, #7ed957 0%, #5a9c40 100%);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow:
    0 10px 24px rgba(126, 217, 87, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  margin-left: 8px;
}

.btn-estimate:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(126, 217, 87, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.6) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-label {
  color: #E5A853;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.85rem, 1.2vw + 1.65rem, 2.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  background: var(--green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(126, 217, 87, 0.35);
}

.btn-hero-primary:hover {
  background: var(--green-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(126, 217, 87, 0.45);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.3);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 10;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 10px 0;
  background: var(--white);
}

.trust-badges .container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.trust-badges-slider {
  width: 100%;
}

.trust-badges-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-badges-dots {
  display: none;
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.why-choose-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 500px;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-right h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.why-choose-right p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-choose-check {
  width: 24px;
  height: 24px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-choose-item span strong {
  color: var(--text-dark);
}

.btn-red {
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.btn-red:hover {
  background: var(--green-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(126, 217, 87, 0.4);
}

/* ===== STATS ===== */
.stats {
  padding: 25px 0;
  background: var(--white);
}

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

.stat-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: var(--transition);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-number .star {
  color: var(--blue);
  font-size: 2rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== RECENT WORK GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--bg-blue-tint);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.gallery-card-image {
  height: 240px;
  overflow: hidden;
}

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

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

.gallery-card-info {
  padding: 20px;
}

.gallery-card-info h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.gallery-card-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.gallery-cta {
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: var(--bg-blue-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-number {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.project-type {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-cta { text-align: center; }

/* ===== REVIEWS SLIDER (homepage, 3 visible) ===== */
.reviews-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 8px;
  padding: 0 56px;
  --reviews-slider-gap: 28px;
}

.reviews-slider-viewport {
  overflow: hidden;
}

.reviews-slider-track {
  display: flex;
  gap: var(--reviews-slider-gap);
  transition: transform 0.5s ease;
  will-change: transform;
}

.reviews-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.reviews-slide.testimonial-card {
  margin: 0;
  height: 100%;
}

.reviews-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  z-index: 2;
}

.reviews-slider-btn:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.reviews-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.reviews-slider-prev { left: 0; }
.reviews-slider-next { right: 0; }

.reviews-slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0 56px;
}

.reviews-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 58, 138, 0.22);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.reviews-slider-dot.active,
.reviews-slider-dot:hover {
  background: var(--green-dark);
  transform: scale(1.2);
}

/* ===== AREA PAGE GALLERY SLIDER (multi-image) ===== */
.area-gallery-slider {
  position: relative;
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 0 56px;
  --area-gallery-gap: 14px;
}

.area-gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.area-gallery-track {
  display: flex;
  gap: var(--area-gallery-gap);
  transition: transform 0.5s ease;
  will-change: transform;
}

.area-gallery-slide {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0F172A;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.area-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.area-gallery-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.area-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  z-index: 2;
}

.area-gallery-btn:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.area-gallery-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.area-gallery-prev { left: 0; }
.area-gallery-next { right: 0; }

.area-gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 0 56px;
}

.area-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 58, 138, 0.22);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.area-gallery-dot.active,
.area-gallery-dot:hover {
  background: var(--green-dark);
  transform: scale(1.2);
}

.area-gallery-band .sp-showcase-cta {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .area-gallery-slider { padding: 0 44px; }
  .area-gallery-btn { width: 38px; height: 38px; }
  .area-gallery-dots { padding: 0; }
}

/* ===== EXPERT SERVICES ===== */
.services {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-medium);
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

.service-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-get-quote {
  background: var(--blue-light);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(30, 41, 59, 0.25);
}

.btn-get-quote:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(19, 31, 40, 0.35);
}

/* ===== SERVICE AREAS SLIDER ===== */
.service-areas {
  padding: 80px 0;
  background: var(--blue-dark);
  color: var(--white);
  overflow: hidden;
}

.service-areas .section-heading {
  color: var(--white);
}

.service-areas .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.areas-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.areas-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.area-slide {
  min-width: 100%;
  padding: 0 20px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.area-map {
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.area-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius-lg);
}

.map-attribution {
  margin: 8px 0 0;
  font-size: 0.7rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
}

.map-attribution a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

.map-attribution a:hover {
  color: var(--green);
}

.area-info {
  flex: 1;
  padding: 20px 0;
}

.area-info h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.area-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.area-city-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.area-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.area-cta:hover {
  background: var(--green-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(126, 217, 87, 0.4);
}

/* Areas Slider Navigation */
.areas-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.area-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.area-arrow:hover {
  background: rgba(255,255,255,0.2);
}

.areas-dots {
  display: flex;
  gap: 10px;
}

.area-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.area-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-blue-tint);
}

.faq-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
}

.faq-question:hover { color: var(--blue); }

.faq-toggle {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: var(--transition);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CONTACT / ESTIMATE SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: var(--bg-blue-tint);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: 40px;
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-item-text p:first-child {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.contact-item-text a {
  color: var(--blue);
  font-weight: 600;
  transition: var(--transition);
}

.contact-item-text a:hover { color: var(--red); }

.contact-item-text p:last-child {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ----- Contact page (stacked mobile layout) ----- */
.page-contact .contact-section {
  padding: 48px 0 72px;
}

.page-contact .contact-hero {
  min-height: 42vh;
  height: auto;
  max-height: none;
}

.page-contact .contact-grid-pro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.page-contact .contact-info-card-pro {
  background: var(--bg-light);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-contact .contact-info-card-pro h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.page-contact .form-wrapper-pro {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-contact .form-wrapper-pro h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.page-contact .form-wrapper-pro > p {
  margin-bottom: 22px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-contact .contact-form-pro {
  display: grid;
  gap: 14px;
}

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

.page-contact .form-control-pro {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.page-contact .form-control-pro:focus {
  outline: 2px solid rgba(126, 217, 87, 0.45);
  outline-offset: 1px;
  border-color: rgba(126, 217, 87, 0.5);
}

@media (min-width: 560px) {
  .page-contact .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .page-contact .contact-grid-pro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 48px;
    max-width: 100%;
  }
  .page-contact .contact-info-card-pro {
    padding: 40px 36px;
  }
}

/* Service areas: two-up region cards */
.ap-other-grid--regions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

@media (max-width: 640px) {
  .ap-other-grid--regions {
    grid-template-columns: 1fr !important;
  }
}

.contact-divider {
  border: none;
  height: 1px;
  background: #E5E7EB;
  margin: 28px 0;
}

.guarantee-quote {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* ===== MULTI-STEP FORM ===== */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.form-wrapper > h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.form-step-counter {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: #E5E7EB;
  border-radius: 2px;
  margin-left: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.form-step {
  display: none;
  padding: 20px 0 8px;
}

.form-step.active { display: block; }

.form-step h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.form-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.form-option {
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-medium);
}

.form-option:hover {
  border-color: var(--blue);
  background: rgba(30,58,138,0.03);
}

.form-option.selected {
  border-color: var(--blue);
  background: rgba(30,58,138,0.06);
  color: var(--blue);
}

.form-option-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
  display: block;
  color: var(--text-light);
}

.form-option.selected .form-option-icon {
  color: var(--blue);
}

.form-options-2col {
  grid-template-columns: repeat(2, 1fr);
}

.form-input-group {
  margin-bottom: 16px;
}

.form-input-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

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

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
  margin-top: 16px;
}

.btn-back {
  background: none;
  color: var(--text-light);
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.btn-back:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}

.btn-next {
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-next:hover {
  background: var(--blue-light);
  transform: scale(1.03);
}

.btn-submit {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: var(--red-hover);
  transform: scale(1.02);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: rgba(255,255,255,0.1);
}

.footer-brand .logo-text h1 { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.6); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--blue-light);
  transform: scale(1.1);
}

.footer-links h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-heading { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Phones in landscape are often >768px wide — include short viewports so nav + floating header stay consistent */
@media (max-width: 768px), (max-width: 1020px) and (max-height: 500px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar-right { display: none; }
  
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
    z-index: 999;
  }

  .nav-links.active a {
    color: var(--white);
    opacity: 0.95;
  }

  .nav-links.active a:hover {
    color: var(--green);
    opacity: 1;
  }
  
  .mobile-toggle { display: flex; }
  
  .btn-estimate {
    width: 100%;
    justify-content: center;
  }
  
  .hero { height: 70vh; min-height: 500px; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 320px; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
  
  .section-heading { font-size: 2rem; }
  
  .why-choose-content { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .reviews-slider { padding: 0 44px; --reviews-slider-gap: 20px; }
  .reviews-slider-btn { width: 38px; height: 38px; }
  .reviews-slider-dots { padding: 0; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; max-width: 520px; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; flex-direction: column; }
  
  .form-options { grid-template-columns: repeat(2, 1fr); }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
  }
}

/* Services page uses h2 in cards */
.service-card-body h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .section-heading { font-size: 1.7rem; }
  .stat-number { font-size: 2.2rem; }
  .trust-badges .container { flex-direction: column; align-items: center; }
  .form-options { grid-template-columns: 1fr 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITIES (shared across pages) ===== */
.page-main {
  padding: 80px 0;
  background: var(--bg-light);
}

.content-narrow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 40px;
}

.chip {
  background: rgba(16,185,129,0.12);
  color: var(--green);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(16,185,129,0.18);
  transition: var(--transition);
}

a.chip:hover {
  background: rgba(16,185,129,0.18);
  transform: translateY(-1px);
}

.gallery-grid.gallery-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .gallery-grid.gallery-grid--two {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PREMIUM SERVICE AREAS SECTION (California)
   ========================================================= */
.service-areas-premium {
  position: relative;
  padding: 110px 0 100px;
  background:
    radial-gradient(circle at 18% 20%, rgba(126,217,87,0.10) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(56,189,248,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0B1220 0%, #0F172A 55%, #131F28 100%);
  color: #fff;
  overflow: hidden;
}

.service-areas-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.65) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.65) 0%, transparent 75%);
  pointer-events: none;
}

.service-areas-premium .container {
  position: relative;
  z-index: 1;
}

.sap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(126,217,87,0.12);
  border: 1px solid rgba(126,217,87,0.3);
  color: #7ED957;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.sap-eyebrow .dot {
  width: 8px; height: 8px;
  background: #7ED957;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(126,217,87,0.18);
  animation: sapPulse 2.4s infinite;
}

@keyframes sapPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.sap-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.sap-header h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sap-header h2 .accent {
  color: #7ED957;
  font-style: normal;
}

.sap-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Stats strip */
.sap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.sap-stat {
  text-align: center;
  padding: 8px 4px;
}

.sap-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #7ED957 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sap-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Map + counties grid */
.sap-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.sap-map-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.sap-map-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126,217,87,0.7), transparent);
}

.sap-map-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  background: #131F28;
}

.sap-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.sap-map-pin {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  border: 1px solid rgba(126,217,87,0.4);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.sap-map-pin svg { color: #7ED957; }

.sap-counties {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sap-county {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px 26px;
  transition: var(--transition);
  overflow: hidden;
}

.sap-county::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(126,217,87,0.0) 0%, rgba(126,217,87,0.08) 100%);
  opacity: 0;
  transition: var(--transition);
}

.sap-county:hover {
  transform: translateY(-3px);
  border-color: rgba(126,217,87,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.sap-county:hover::before { opacity: 1; }

.sap-county-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
}

.sap-county-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(126,217,87,0.35);
}

.sap-county-title {
  flex: 1;
}

.sap-county-title h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 2px;
}

.sap-county-title p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.sap-county-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
}

.sap-city-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}

a.sap-city-chip {
  text-decoration: none;
  display: inline-block;
}

.sap-city-chip:hover {
  background: rgba(126,217,87,0.15);
  border-color: rgba(126,217,87,0.4);
  color: #fff;
}

.sap-cta-row {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sap-cta-row .sap-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(126,217,87,0.35);
  transition: var(--transition);
}

.sap-cta-row .sap-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(126,217,87,0.5);
}

.sap-cta-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.sap-cta-note a {
  color: #7ED957;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .sap-grid { grid-template-columns: 1fr; }
  .sap-map-frame, .sap-map-frame iframe { min-height: 360px; }
}

@media (max-width: 768px) {
  .service-areas-premium { padding: 80px 0 70px; }
  .sap-header h2 { font-size: 2.1rem; }
  .sap-stats { grid-template-columns: repeat(2, 1fr); }
  .sap-stat strong { font-size: 1.6rem; }
}

/* =========================================================
   GALLERY (FILTER + MASONRY + LIGHTBOX)
   ========================================================= */
.gallery-pro {
  padding: 70px 0 100px;
  background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.gallery-pro-intro {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 36px;
}

.gallery-pro-intro h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.gallery-pro-intro p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 36px;
  max-width: 980px;
}

.gallery-filter {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  color: var(--text-medium);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-filter:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.gallery-filter.active {
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(126,217,87,0.35);
}

.gallery-filter .count {
  background: rgba(255,255,255,0.18);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.gallery-filter:not(.active) .count {
  background: #F1F5F9;
  color: var(--text-light);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-masonry .gm-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: #E2E8F0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.gallery-masonry .gm-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-masonry .gm-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.gallery-masonry .gm-item:hover img { transform: scale(1.04); }

.gallery-masonry .gm-item::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-masonry .gm-item:hover::after { opacity: 1; }

.gm-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gm-caption .gm-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.gallery-masonry .gm-item:hover .gm-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-masonry .gm-item.is-hidden { display: none; }

.gallery-loadmore-row {
  text-align: center;
  margin-top: 36px;
}

.gallery-empty {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
}

@media (max-width: 1100px) { .gallery-masonry { column-count: 3; } }
@media (max-width: 760px)  { .gallery-masonry { column-count: 2; column-gap: 10px; } .gallery-masonry .gm-item { margin-bottom: 10px; } }
@media (max-width: 460px)  { .gallery-masonry { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
  animation: lbFade 0.25s ease;
}

@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lightbox.is-open { display: flex; }

.lightbox-stage {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: block;
  background: #131F28;
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: -68px; }
.lb-next { right: -68px; }

.lb-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lb-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }

.lb-counter {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lightbox { padding: 12px; }
}

/* =========================================================
   UNIFIED SERVICE PAGE DESIGN SYSTEM (sp-*)
   ========================================================= */

/* Hero */
.sp-hero {
  position: relative;
  height: 78vh;
  min-height: 600px;
  max-height: 760px;
  overflow: hidden;
}

.sp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.55) 0%, rgba(11,18,32,0.78) 100%),
    radial-gradient(circle at 80% 30%, rgba(126,217,87,0.18) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

.sp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(126,217,87,0.15);
  border: 1px solid rgba(126,217,87,0.4);
  color: #7ED957;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.sp-hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: #7ED957;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(126,217,87,0.18);
}

.sp-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.85rem, 1.8vw + 1.1rem, 2.95rem);
  line-height: 1.12;
  margin-bottom: 18px;
  text-transform: none;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.sp-hero-sub {
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.sp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Breadcrumb strip */
.sp-breadcrumbs {
  background: var(--bg-light);
  border-bottom: 1px solid #E5E7EB;
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.sp-breadcrumbs a {
  color: var(--text-medium);
  font-weight: 500;
}
.sp-breadcrumbs a:hover { color: var(--green-dark); }
.sp-breadcrumbs .sep { margin: 0 10px; opacity: 0.5; }
.sp-breadcrumbs strong { color: var(--text-dark); }

/* Intro */
.sp-intro {
  padding: 110px 0;
  background: var(--bg-light);
}

.sp-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sp-intro-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.sp-intro-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--blue-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.sp-intro-title .accent { color: var(--green); }

.sp-intro-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
}

.sp-checkgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-bottom: 36px;
}

.sp-checkgrid-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sp-checkgrid-item .ck {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(126,217,87,0.35);
}

.sp-checkgrid-item p {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0;
}

.sp-intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(126,217,87,0.35);
  transition: var(--transition);
}

.sp-intro-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(126,217,87,0.5);
}

.sp-intro-figure {
  position: relative;
}

.sp-intro-figure .frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,23,42,0.18);
  height: 580px;
  border: 8px solid #fff;
  background: #131F28;
}

.sp-intro-figure .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-intro-badge {
  position: absolute;
  bottom: -28px;
  right: -24px;
  background: var(--blue-dark);
  color: #fff;
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  max-width: 240px;
}

.sp-intro-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.sp-intro-badge span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* Features (3-card section) */
.sp-features {
  padding: 110px 0;
  background: #fff;
}

.sp-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.sp-section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.sp-section-head h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.sp-section-head p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sp-feature {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  color: inherit;
  text-decoration: none;
  display: block;
}

.sp-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15,23,42,0.12);
  border-color: rgba(126,217,87,0.4);
}

.sp-feature-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.sp-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sp-feature:hover .sp-feature-image img { transform: scale(1.06); }

.sp-feature-body {
  padding: 28px 30px 32px;
}

.sp-feature-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.sp-feature-body p {
  color: var(--text-medium);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.sp-feature-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15,23,42,0.85);
  color: #7ED957;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* Process steps */
.sp-process {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.sp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.sp-step {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: var(--transition);
}

.sp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,23,42,0.1);
  border-color: rgba(126,217,87,0.4);
}

.sp-step-num {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(126,217,87,0.3);
}

.sp-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.sp-step p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Showcase gallery */
.sp-showcase {
  padding: 110px 0;
  background: #fff;
}

.sp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sp-showcase-grid--album {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.sp-showcase-item {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: var(--transition);
}

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

.sp-showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.sp-showcase-item:hover img { transform: scale(1.06); }

.sp-showcase-cta {
  text-align: center;
  margin-top: 36px;
}

/* Big CTA banner */
.sp-cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(126,217,87,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0B1220 0%, #0F172A 100%);
  color: #fff;
  text-align: center;
}

.sp-cta-band h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 12px;
  font-style: italic;
}

.sp-cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.sp-cta-band .row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .sp-intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-steps { grid-template-columns: repeat(2, 1fr); }
  .sp-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-showcase-grid--album { grid-template-columns: repeat(3, 1fr); }
  .sp-hero-title { font-size: clamp(1.75rem, 1.5vw + 1rem, 2.5rem); }
}

@media (max-width: 768px), (max-width: 1020px) and (max-height: 500px) {
  .sp-hero { height: 62vh; min-height: 460px; }
  .sp-hero-title { font-size: clamp(1.65rem, 1.2vw + 1.35rem, 2.05rem); }
  .sp-hero-sub { font-size: 1rem; }
  .sp-intro { padding: 70px 0; }
  .sp-intro-title { font-size: 2.2rem; }
  .sp-intro-figure .frame { height: 360px; }
  .sp-intro-badge { right: 0; left: 0; bottom: -20px; padding: 18px 22px; max-width: none; text-align: center; }
  .sp-checkgrid { grid-template-columns: 1fr; }
  .sp-features { padding: 70px 0; }
  .sp-features-grid { grid-template-columns: 1fr; }
  .sp-process { padding: 70px 0; }
  .sp-steps { grid-template-columns: 1fr; }
  .sp-showcase { padding: 70px 0; }
  .sp-showcase-grid { grid-template-columns: 1fr; }
  .sp-showcase-grid--album { grid-template-columns: repeat(2, 1fr); }
  .sp-section-head h2 { font-size: 2rem; }
}

/* =========================================================
   AREA PAGES (ap-*)
   ========================================================= */

/* Service chip grid (linked services on each area page) */
.ap-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ap-service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.ap-service-chip:hover {
  border-color: rgba(126,217,87,0.5);
  background: linear-gradient(135deg, rgba(126,217,87,0.08), #fff);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15,23,42,0.08);
  color: var(--green-dark);
}

.ap-chip-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(126,217,87,0.35);
}

/* Map band */
.ap-map-band {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(126,217,87,0.10) 0%, transparent 55%),
    linear-gradient(135deg, #0B1220 0%, #0F172A 100%);
  color: #fff;
}

.ap-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.ap-map-copy h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 14px 0 16px;
  color: #fff;
}

.ap-map-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.ap-map-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.ap-map-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126,217,87,0.7), transparent);
}

.ap-map-card .sap-map-frame { min-height: 360px; }
.ap-map-card .sap-map-frame iframe { min-height: 360px; filter: saturate(0.85) contrast(1.05); }

/* Cities directory */
.ap-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.ap-city {
  background: var(--bg-light);
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: var(--transition);
}

.ap-city:hover {
  background: #fff;
  border-color: rgba(126,217,87,0.4);
  box-shadow: 0 10px 22px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}

.ap-city strong {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}

.ap-city span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 1px;
  font-weight: 500;
}

a.ap-city {
  text-decoration: none;
  color: inherit;
}

/* L.A. County hub: denser city directory */
.la-county-grid.ap-cities {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  max-width: 1200px;
}

/* Other areas grid */
.ap-other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ap-other-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 220px;
  background: #131F28;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(15,23,42,0.08);
}

.ap-other-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ap-other-card:hover img { transform: scale(1.06); }

.ap-other-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 35%, rgba(15,23,42,0.85) 100%);
}

.ap-other-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px;
  color: #fff;
  z-index: 2;
}

.ap-other-eye {
  display: inline-block;
  background: rgba(126,217,87,0.22);
  color: #7ED957;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ap-other-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.ap-other-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15,23,42,0.25);
}

@media (max-width: 1024px) {
  .ap-service-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-cities { grid-template-columns: repeat(3, 1fr); }
  .ap-map-grid { grid-template-columns: 1fr; gap: 30px; }
  .ap-other-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ap-service-grid { grid-template-columns: 1fr; }
  .ap-cities { grid-template-columns: repeat(2, 1fr); }
  .ap-map-band { padding: 70px 0; }
  .ap-map-copy h2 { font-size: 2rem; }
}

/* =========================================================
   HERO UPGRADES (.hero-pro)
   ========================================================= */
.hero-pro { height: 92vh; max-height: 880px; }

.hero-pro .hero-overlay {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.78) 0%, rgba(15,23,42,0.55) 50%, rgba(11,18,32,0.7) 100%),
    radial-gradient(circle at 50% 25%, rgba(126,217,87,0.18) 0%, transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

/* Inner column — centered within the site container. */
.hero-pro .hero-overlay::after { content: none; }
.hero-pro .hero-overlay > .hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-pro .hero-overlay > .hero-inner > * { max-width: 820px; }

.hero-label-pro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(126,217,87,0.15);
  border: 1px solid rgba(126,217,87,0.4);
  color: #7ED957;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero-label-pro .dot {
  width: 8px; height: 8px;
  background: #7ED957;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(126,217,87,0.18);
  animation: sapPulse 2.4s infinite;
}

.hero-pro .hero-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2rem, 2vw + 1.15rem, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
}

.hero-accent {
  color: #7ED957;
  font-style: italic;
  font-weight: 700;
}

.hero-pro .hero-subtitle {
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.12rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin: 0 auto 36px;
  max-width: 720px;
}

.hero-pro .hero-buttons { justify-content: center; }

/* Hero metrics strip — anchored to the site container so it lines up
   with the header logo and the hero copy column. */
.hero-metrics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px 8px;
  backdrop-filter: blur(14px);
  max-width: min(900px, calc(var(--max-width) - 48px));
  width: calc(100% - 48px);
  z-index: 5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hero-metric {
  text-align: center;
  padding: 4px 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.hero-metric:last-child { border-right: 0; }

.hero-metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff 0%, #7ED957 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-metric span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
}

.hero-pro .scroll-down { display: none; } /* metrics replace it */

@media (max-width: 1024px) {
  .hero-pro .hero-title { font-size: clamp(1.85rem, 1.6vw + 1.1rem, 2.65rem); }
  .hero-metrics { padding: 14px 6px; }
  .hero-metric strong { font-size: 1.4rem; }
}

/* Home gallery preview grid */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.hg-cell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #131F28;
  display: block;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.hg-cell:hover img { transform: scale(1.06); }

.hg-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.7) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hg-cell:hover::after { opacity: 1; }

.hg-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.hg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,23,42,0.7);
  color: #7ED957;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.hg-cell--big {
  grid-row: span 2;
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .hg-cell--big { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 600px) {
  .home-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hg-cell { height: 220px; }
  .hg-cell--big { grid-column: auto; }
}

/* Reserve space at the bottom of the hero so the metrics strip never
   overlaps the buttons. */
.hero-pro .hero-inner { padding-bottom: 120px; }

@media (max-width: 1024px) {
  .hero-pro { height: 86vh; min-height: 640px; }
  .hero-pro .hero-inner { padding-bottom: 128px; }
}

@media (max-width: 768px), (max-width: 1020px) and (max-height: 500px) {
  .hero-pro { height: auto; max-height: none; }
  /* Min-height + overlay padding for phones set in the nested mobile polish block below */
  .hero-pro .hero-overlay { padding: 0; }
  .hero-pro .hero-subtitle { text-align: center; }
  .hero-pro .hero-buttons { justify-content: center; }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    max-width: min(440px, calc(100% - 32px));
    width: calc(100% - 32px);
    padding: 14px 6px;
  }
  /* 2x2 grid with proper dividers between cells */
  .hero-metric {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 12px 10px;
  }
  .hero-metric:nth-child(2n) { border-right: 0; }     /* right edge of each row */
  .hero-metric:nth-last-child(-n+2) { border-bottom: 0; } /* bottom row has no bottom border */
}

/* ================================================================
   PREMIUM MOBILE & TABLET POLISH
   ----------------------------------------------------------------
   Refined breakpoints, premium slide-in mobile drawer, unified
   spacing rhythm, better typography scale, full-width buttons,
   touch-friendly targets.
   ================================================================ */

:root {
  --mobile-pad: 18px;   /* container side padding on phones */
  --tablet-pad: 28px;
  --mobile-gap: 16px;   /* default grid/card gap on phones */
  --section-pad-mobile: 60px;
  --section-pad-tablet: 80px;
  /* Used on phones/tablets: fixed header + safe area; hero underlap + inner padding */
  --mobile-header-offset: calc(env(safe-area-inset-top, 0px) + 96px);
  /* Space for the 2×2 metrics card + bottom gap so hero copy never stacks under it */
  --hero-mobile-metrics-reserve: 188px;
}

/* --- Body lock when drawer is open --- */
body.no-scroll { overflow: hidden; }

/* --- Quick-call button: desktop hides it, mobile/tablet shows it --- */
.header-call { display: none; }
@media (max-width: 1024px) {
  .header-call { display: inline-flex !important; }
}

/* --- Backdrop for mobile drawer --- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 12, 22, 0.72) 0%, rgba(7, 12, 22, 0.45) 45%, rgba(7, 12, 22, 0.62) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ==============  TABLET (≤ 1024px)  ============== */
@media (max-width: 1024px) {
  .container { padding: 0 var(--tablet-pad); }

  .section-heading { font-size: 2rem; line-height: 1.2; }
  .section-subtitle { font-size: 1rem; }

  /* Floating header on tablets */
  body { padding-top: var(--mobile-header-offset); }
  .header {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(12px + env(safe-area-inset-top, 0px));
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 860px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
  }
  header.header ~ section.hero:first-of-type,
  header.header ~ section.sp-hero:first-of-type {
    margin-top: calc(-1 * var(--mobile-header-offset));
    position: relative;
    z-index: 0;
  }

  /* Reduce vertical rhythm so things feel less stretched */
  .why-choose,
  .gallery-section,
  .testimonials,
  .services,
  .service-areas,
  .service-areas-premium,
  .faq-section,
  .contact-section,
  .sp-features,
  .sp-process,
  .sp-showcase,
  .sp-intro,
  .ap-map-band {
    padding: var(--section-pad-tablet) 0;
  }

  /* Trust badges row sits tighter */
  .trust-badges .container { gap: 14px; }
  .trust-badge { padding: 10px 18px; font-size: 0.85rem; }

  /* Hero metrics chip tighter on tablet */
  .hero-metrics { width: calc(100% - 56px); max-width: 720px; padding: 14px 6px; }
  .hero-metric strong { font-size: 1.45rem; }
  .hero-metric span { font-size: 0.68rem; letter-spacing: 1.1px; }

  /* Service areas premium grid stacks earlier with tighter gap */
  .sap-grid { gap: 28px; }
  .sap-stats { padding: 18px; gap: 10px; }

  /* Service-page intro: figure shrinks */
  .sp-intro-figure .frame { height: 460px; }
  .sp-intro-badge { padding: 22px 26px; max-width: 220px; }

  /* Contact grid: stack at tablet so the form isn't squeezed */
  .contact-grid { grid-template-columns: 1fr; max-width: 620px; }
}

/* ==============  MOBILE (≤768px or landscape phone)  ============== */
@media (max-width: 768px), (max-width: 1020px) and (max-height: 500px) {
  /* Fixed header reserves this band; first hero underlaps so its background shows through the bar */
  body {
    padding-top: var(--mobile-header-offset);
  }

  .container { padding: 0 var(--mobile-pad); }

  /* Typography scale */
  html { font-size: 15px; }
  .section-heading { font-size: 1.75rem; line-height: 1.2; margin-bottom: 12px; }
  .section-subtitle { font-size: 0.95rem; line-height: 1.65; margin-bottom: 32px; padding: 0 8px; }

  /* Section padding rhythm */
  .why-choose,
  .gallery-section,
  .testimonials,
  .services,
  .service-areas,
  .service-areas-premium,
  .faq-section,
  .contact-section,
  .sp-features,
  .sp-process,
  .sp-showcase,
  .sp-intro,
  .gallery-pro,
  .ap-map-band {
    padding: var(--section-pad-mobile) 0;
  }

  /* ===== PREMIUM HEADER — phone-style floating bar (mobile) ===== */
  .header {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(12px + env(safe-area-inset-top, 0px));
    z-index: 1000;
    width: calc(100% - 28px);
    max-width: 560px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      radial-gradient(circle at 50% 0%, rgba(126,217,87,0.14) 0%, transparent 72%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(11, 18, 32, 0.98) 100%);
    box-shadow:
      0 1px 0 rgba(126,217,87,0.2),
      0 14px 40px rgba(0, 0, 0, 0.38);
    overflow: hidden;
  }
  .header.scrolled {
    background:
      radial-gradient(circle at 50% 0%, rgba(126,217,87,0.1) 0%, transparent 72%),
      rgba(11, 18, 32, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
      0 1px 0 rgba(126,217,87,0.22),
      0 18px 46px rgba(0, 0, 0, 0.42);
  }
  .header.scrolled::after {
    border-radius: inherit;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .header .container {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  /* First hero sits under the fixed header; image/gradient shows through the glass bar */
  header.header ~ section.hero:first-of-type,
  header.header ~ section.sp-hero:first-of-type {
    margin-top: calc(-1 * var(--mobile-header-offset));
    position: relative;
    z-index: 0;
  }

  .sp-hero,
  .hero-pro {
    border-radius: 0 0 22px 22px;
    overflow: hidden;
  }

  .page-contact .contact-hero.hero {
    border-radius: 20px;
    overflow: hidden;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .logo img {
    height: 44px;
    max-height: 44px;
    width: auto;
    filter: none;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }

  /* Quick-call mini-button — appears between logo and hamburger on mobile.
     We inject it via JS into the .header .container of every page. */
  .header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 8px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7ED957 0%, #5A9C40 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(126,217,87,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .header-call:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(126,217,87,0.55); }
  .header-call:active { transform: scale(0.96); }
  .header-call svg { width: 18px; height: 18px; }

  /* Premium hamburger — glassmorphism with subtle inner highlight */
  .mobile-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 13px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 6px 16px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }
  .mobile-toggle:hover {
    background:
      linear-gradient(180deg, rgba(126,217,87,0.18) 0%, rgba(126,217,87,0.06) 100%);
    border-color: rgba(126,217,87,0.35);
  }
  .mobile-toggle:active { transform: scale(0.94); }
  .mobile-toggle span {
    width: 20px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* Hide top-level nav by default on mobile */
  .nav-links { display: none; }

  /* Slide-in drawer */
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background:
      radial-gradient(circle at 80% 0%, rgba(126,217,87,0.10) 0%, transparent 50%),
      linear-gradient(180deg, #0F172A 0%, #0B1220 100%);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -30px 0 60px rgba(0,0,0,0.5);
    padding: 72px 22px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    gap: 4px;
    animation: navSlideIn 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-backdrop {
    z-index: 1000;
  }

  /*
   * Drawer (#nav-links) lives inside header. Backdrop is a body sibling after
   * the header — same z-index (1000) meant the backdrop painted on top,
   * blurring the menu (backdrop-filter) and stealing taps (submenus “broken”).
   */
  .header.mobile-nav-open {
    z-index: 1002;
    overflow: visible;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  @keyframes navSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
  }

  /* Top-level link rows */
  .nav-links.active > a,
  .nav-links.active .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    opacity: 1;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .nav-links.active > a:hover,
  .nav-links.active .nav-dropdown > a:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    color: #7ED957;
  }

  /* Dropdown caret rotates when expanded (handled by JS adding .is-open) */
  .nav-links.active .nav-dropdown > a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-left: 12px;
    opacity: 0.7;
  }
  .nav-links.active .nav-dropdown.is-open > a::after { transform: rotate(225deg); }
  .nav-links.active .nav-dropdown.is-open > a {
    color: #7ED957;
    background: rgba(126,217,87,0.08);
    border-color: rgba(126,217,87,0.25);
  }

  /* Sub-menu — hidden by default, expands on tap */
  .nav-links.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 4px 0 8px 12px;
    margin-left: 8px;
    border-left: 2px solid rgba(126,217,87,0.25);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-links.active .nav-dropdown.is-open .dropdown-menu {
    max-height: 700px;
    padding: 6px 0 10px 14px;
  }
  .nav-links.active .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-links.active .dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: #7ED957;
  }

  /* CTA button stays prominent at bottom of drawer */
  .nav-links.active .btn-estimate {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1rem;
  }

  /* Close-X glyph drawn from inside the toggle (animated by existing JS) */
  .mobile-toggle span {
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* ===== HERO ===== */
  .hero-pro {
    min-height: max(100svh, 680px);
  }

  /* Hide the side arrows on phones — auto-rotate handles slide changes
     and the arrows were colliding with the CTA buttons. */
  .hero-arrow { display: none !important; }

  /*
   * Top-align overlay content (don’t vertically center): centered blocks collide with
   * the absolute metrics strip on short viewports. Padding lives on the overlay.
   */
  .hero-pro .hero-overlay {
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--mobile-header-offset) + 10px) var(--mobile-pad)
      calc(var(--hero-mobile-metrics-reserve) + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
  }

  .hero-pro .hero-overlay > .hero-inner {
    padding: 0;
    gap: 0;
    align-items: center;
    text-align: center;
  }

  .hero-label-pro {
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero-pro .hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }

  .hero-pro .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 540px;
  }

  /* CTA stack — full-width, comfortable but not bulky */
  .hero-pro .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    margin: 0 auto;
  }
  .hero-pro .hero-buttons .btn-hero-primary,
  .hero-pro .hero-buttons .btn-hero-secondary {
    width: 100%;
    flex: 0 1 auto;
    justify-content: center;
    padding: 13px 22px;
    font-size: 0.95rem;
    min-height: 48px;
    border-radius: 12px;
  }

  /* Trust badges: one-at-a-time slider on phones */
  .trust-badges { padding: 14px 0; }
  .trust-badges .container {
    padding: 0 var(--mobile-pad);
  }
  .trust-badges-track {
    position: relative;
    min-height: 52px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
  }
  .trust-badges .trust-badge {
    display: none;
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: 0.84rem;
    margin: 0 auto;
    max-width: 100%;
    justify-content: center;
  }
  .trust-badges .trust-badge.active {
    display: inline-flex;
  }
  .trust-badges-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .trust-badges-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(30, 58, 138, 0.2);
    cursor: pointer;
    transition: var(--transition);
  }
  .trust-badges-dot.active,
  .trust-badges-dot:hover {
    background: var(--green-dark);
    transform: scale(1.15);
  }

  /* Stats grid */
  .stats-grid { gap: 12px; }
  .stat-card { padding: 18px 16px; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.85rem; }

  /* Why choose */
  .why-choose-content { gap: 28px; }
  .why-choose-image { max-height: 320px; }
  .why-choose-right h3 { font-size: 1.4rem; }

  /* Generic card grids: stack with comfortable gap */
  .gallery-grid,
  .testimonials-grid,
  .services-grid,
  .sp-features-grid,
  .sp-steps,
  .sp-showcase-grid,
  .sap-counties,
  .sap-stats {
    gap: var(--mobile-gap);
  }

  .testimonial-card { padding: 22px; }
  .testimonial-text { font-size: 0.92rem; }

  /* Service-page hero (top of every service page) */
  .sp-hero { min-height: 420px; height: auto; padding: 0 0 60px; }
  .sp-hero img { height: 100%; }
  .sp-hero-overlay {
    padding: calc(var(--mobile-header-offset) + 44px) 18px 56px;
    justify-content: center;
  }

  /* Static hero sliders (about, gallery, contact, service-areas) — copy clears the floating bar */
  header.header ~ section.hero:first-of-type:not(.hero-pro) .hero-overlay {
    padding: calc(var(--mobile-header-offset) + 40px) 22px 40px;
    box-sizing: border-box;
  }

  /* Static/simple heroes often used inline hero-title sizes — constrain on phones */
  header.header ~ section.hero:first-of-type:not(.hero-pro) .hero-title {
    font-size: clamp(1.55rem, 5.2vw + 0.85rem, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.4px;
  }

  .sp-hero-eyebrow { font-size: 0.68rem; letter-spacing: 2.5px; padding: 6px 12px; }
  .sp-hero-title { font-size: 1.95rem; line-height: 1.1; letter-spacing: -0.5px; }
  .sp-hero-sub { font-size: 0.98rem; margin-bottom: 24px; }
  .sp-hero-actions { width: 100%; gap: 10px; }
  .sp-hero-actions .btn-hero-primary,
  .sp-hero-actions .btn-hero-secondary {
    flex: 1 1 auto;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  /* Service-page intro */
  .sp-intro-grid { gap: 36px; }
  .sp-intro-eyebrow { font-size: 0.72rem; letter-spacing: 2.5px; }
  .sp-intro-title { font-size: 1.85rem; line-height: 1.15; }
  .sp-intro-text { font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
  .sp-checkgrid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .sp-checkgrid-item p { font-size: 0.95rem; }
  .sp-intro-figure .frame { height: 280px; border-width: 6px; border-radius: 18px; }
  .sp-intro-badge {
    position: absolute; bottom: -16px; left: 50%;
    transform: translateX(-50%);
    right: auto; max-width: calc(100% - 40px);
    padding: 14px 22px; text-align: center;
    border-radius: 14px;
  }
  .sp-intro-badge strong { font-size: 1.8rem; }
  .sp-intro-badge span { font-size: 0.68rem; letter-spacing: 1.5px; }
  .sp-intro-cta { width: 100%; justify-content: center; padding: 14px 22px; }

  /* Section heads */
  .sp-section-head { margin-bottom: 32px; padding: 0 6px; }
  .sp-section-head h2 { font-size: 1.7rem; line-height: 1.2; }
  .sp-section-head p { font-size: 0.95rem; }
  .sp-section-eyebrow { font-size: 0.7rem; letter-spacing: 2.5px; }

  /* Service-page features */
  .sp-feature-image { height: 200px; }
  .sp-feature-body { padding: 22px 22px 24px; }
  .sp-feature-body h3 { font-size: 1.2rem; }
  .sp-feature-body p { font-size: 0.92rem; }

  /* Process steps */
  .sp-step { padding: 24px 22px; }
  .sp-step-num { width: 44px; height: 44px; font-size: 1.15rem; border-radius: 12px; }

  /* Showcase */
  .sp-showcase-item { height: 220px; }

  /* CTA band */
  .sp-cta-band { padding: 60px 0; }
  .sp-cta-band h3 { font-size: 1.6rem; }
  .sp-cta-band p { font-size: 1rem; }
  .sp-cta-band .row { width: 100%; flex-direction: column; }
  .sp-cta-band .row a { width: 100%; justify-content: center; }

  /* Premium service areas section */
  .sap-header { margin-bottom: 36px; padding: 0 6px; }
  .sap-header h2 { font-size: 1.85rem; line-height: 1.15; }
  .sap-header p { font-size: 0.95rem; }
  .sap-stats { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 6px; max-width: none; }
  .sap-stat strong { font-size: 1.45rem; }
  .sap-stat span { font-size: 0.66rem; letter-spacing: 1.2px; }
  .sap-grid { gap: 18px; }
  .sap-map-frame, .sap-map-frame iframe { min-height: 280px; }
  .sap-county { padding: 20px 22px; }
  .sap-county-icon { width: 38px; height: 38px; border-radius: 10px; }
  .sap-county-title h3 { font-size: 1.1rem; }
  .sap-county-title p { font-size: 0.78rem; }
  .sap-cta-row { margin-top: 32px; }
  .sap-cta-row .sap-cta { width: 100%; justify-content: center; padding: 14px 22px; }

  /* Area pages */
  .ap-map-band { padding: 60px 0; }
  .ap-map-grid { gap: 20px; }
  .ap-map-copy h2 { font-size: 1.7rem; }
  .ap-map-copy p { font-size: 0.95rem; }
  .ap-map-card .sap-map-frame, .ap-map-card .sap-map-frame iframe { min-height: 280px; }
  .ap-cities { grid-template-columns: 1fr 1fr; }
  .ap-other-card { height: 180px; }
  .ap-other-card h4 { font-size: 1.05rem; }
  .ap-service-chip { font-size: 0.9rem; padding: 12px 14px; }

  /* Home: services preview */
  .service-card-image { height: 180px; }
  .service-card-body { padding: 20px; }
  .service-card-body h3, .service-card-body h2 { font-size: 1.15rem; }

  /* Gallery preview on home */
  .home-gallery-grid { grid-template-rows: 200px 200px 200px; gap: 12px; }
  .hg-cell { height: 200px; }

  /* Gallery page */
  .gallery-pro-intro { margin-bottom: 24px; padding: 0 4px; }
  .gallery-pro-intro h2 { font-size: 1.7rem; line-height: 1.2; }
  .gallery-pro-intro p { font-size: 0.95rem; }
  .gallery-filters { gap: 8px; margin-bottom: 24px; }
  .gallery-filter { padding: 9px 16px; font-size: 0.85rem; }
  .gallery-masonry { column-gap: 10px; }
  .gallery-masonry .gm-item { margin-bottom: 10px; border-radius: 12px; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer-inner { padding: 0 18px 16px; font-size: 0.92rem; }

  /* Contact section */
  .contact-info-card { padding: 24px; }
  .contact-info-card h3 { font-size: 1.25rem; }
  .form-wrapper { padding: 22px; }
  .form-step h4 { font-size: 1rem; }
  .form-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .form-option { padding: 12px 8px; font-size: 0.78rem; }

  /* Footer */
  .footer { padding: 60px 0 calc(24px + env(safe-area-inset-bottom, 0px)) !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px !important; margin-bottom: 36px !important; }
  .footer-links h4 { font-size: 1.1rem; margin-bottom: 16px !important; }
  .footer-brand p { font-size: 0.92rem; }
  .footer-brand .logo img { height: 50px !important; }
  .footer-links ul { padding-left: 0 !important; }
  .footer p[style*='display: flex'],
  .footer-links p[style*='display: flex'] {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .footer a[href^='tel:'] { word-break: break-word; }

  /* Buttons: bigger touch targets */
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-red,
  .btn-estimate,
  .area-cta {
    min-height: 48px;
    padding: 12px 22px;
  }

  /* Breadcrumbs sit cleaner */
  .sp-breadcrumbs { font-size: 0.78rem; padding: 12px 0; }
}

/* ==============  SMALL PHONES (≤ 480px)  ============== */
@media (max-width: 480px) {
  :root {
    --mobile-pad: 16px;
    --mobile-gap: 14px;
    --hero-mobile-metrics-reserve: 200px;
  }

  .hero-pro .hero-title { font-size: 2rem; }
  .sp-hero-title { font-size: 1.7rem; }
  .section-heading { font-size: 1.55rem; }
  .sp-intro-title { font-size: 1.65rem; }
  .ap-map-copy h2 { font-size: 1.5rem; }

  /* Stack hero buttons */
  .hero-pro .hero-buttons,
  .sp-hero-actions { flex-direction: column; }
  .hero-pro .hero-buttons .btn-hero-primary,
  .hero-pro .hero-buttons .btn-hero-secondary,
  .sp-hero-actions .btn-hero-primary,
  .sp-hero-actions .btn-hero-secondary { width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.9rem; }

  /* Sap stats: keep 2 cols even at small */
  .sap-stat strong { font-size: 1.3rem; }

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

  /* Footer area-buttons stack */
  .sp-cta-band h3 { font-size: 1.4rem; }
}

/* ==============  HIGH-RESOLUTION TOUCH ============== */
@media (hover: none) and (pointer: coarse) {
  .gallery-masonry .gm-item:hover { transform: none; }
  .gallery-masonry .gm-item:hover img { transform: none; }
  .sp-feature:hover { transform: none; }
  .ap-other-card:hover { transform: none; }
  .ap-service-chip:hover { transform: none; }
}

/* ===== Area pages: highlighted maps ===== */
.area-map-wrap {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}
.area-map {
  height: 440px;
}
@media (max-width: 768px) {
  .area-map { height: 360px; }
}
