/* ============================================
   Prospec & Design — Landing Page Styles
   REDESIGN: Light, fresh, professional
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary: Fresh Blue */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  --primary-bg: rgba(37,99,235,0.06);

  /* Accent: Emerald Green (cleanliness) */
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-light: #34D399;

  /* Teal (brand continuity) */
  --teal: #00BFA5;
  --teal-dark: #009688;

  /* Backgrounds */
  --bg-main: #FFFFFF;
  --bg-alt: #F0F9FF;
  --bg-warm: #FFFBEB;

  /* Navy (footer, accents only) */
  --navy: #0F172A;
  --navy-light: #1E293B;

  /* Text */
  --text: #1E293B;
  --text-light: #64748B;
  --text-lighter: #94A3B8;

  /* UI */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --danger: #EF4444;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.05), 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 8px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
}

section { padding: 90px 0; }

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-outline, .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

/* Transparent on hero */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Scrolled: white background */
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 6px 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.navbar.scrolled .nav-brand span { color: var(--text); }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.navbar.scrolled .nav-links a::after { background: var(--primary); }
.navbar.scrolled .nav-phone { color: var(--text); }
.navbar.scrolled .nav-phone i { color: var(--primary); }
.navbar.scrolled .hamburger span { background: var(--text); }
.navbar.scrolled .nav-brand img { height: 80px; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img { height: 140px; width: auto; transition: var(--transition); }
.nav-brand span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  transition: var(--transition);
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a.active { color: var(--primary); }
.navbar.scrolled .nav-links a.active::after { background: var(--primary); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-phone i { color: var(--accent); }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ============================================
   HERO — Image Background + Trust Badge
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
}

/* Background image (placeholder gradient until real photo) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
/* Dark overlay on top of image for text readability */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.78) 0%, rgba(30,41,59,0.6) 50%, rgba(37,99,235,0.35) 100%);
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }

/* Trust badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-badge .stars { color: var(--gold); letter-spacing: 2px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: -1px;
  line-height: 1.15;
}
.hero h1 .accent { color: var(--accent-light); }

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-feature i {
  color: var(--accent);
  font-size: 0.85rem;
}


/* ============================================
   STATS BAR — Between Hero and About
   ============================================ */
.stats-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 5;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  margin-top: -50px;
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}


/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--bg-main); padding-top: 100px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Photo placeholder */
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image .photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 50%, #93c5fd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.photo-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.4;
}
.photo-placeholder span {
  font-size: 0.85rem;
  color: var(--primary);
  opacity: 0.5;
  font-weight: 500;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Decorative accent */
.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}

.about-text .section-label { text-align: left; }
.about-text h2 { margin-bottom: 18px; text-align: left; }
.about-text > p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.75; }

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--gray-200);
}
.about-badge i { color: var(--accent); font-size: 0.9rem; }


/* ============================================
   SERVICES — Category Cards + Checklist
   ============================================ */
.services { background: var(--bg-alt); }

/* Main service categories: large image cards */
.services-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-category {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  cursor: default;
  transition: var(--transition);
}
/* Placeholder backgrounds */
.service-category .cat-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-category .cat-bg .photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.service-category .cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 50%, rgba(15,23,42,0.1) 100%);
  z-index: 1;
}
.service-category:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.service-category-content { position: relative; z-index: 2; }
.service-category-content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.service-category-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-category-content .cat-link {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-category-content .cat-link:hover { gap: 10px; }

/* Category BG colors (placeholders) */
.cat-residential .photo-placeholder { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.cat-commercial .photo-placeholder { background: linear-gradient(135deg, #e0e7ff, #a5b4fc); }
.cat-pressure .photo-placeholder { background: linear-gradient(135deg, #d1fae5, #6ee7b7); }
.cat-specialty .photo-placeholder { background: linear-gradient(135deg, #fef3c7, #fcd34d); }
.cat-residential .photo-placeholder i { color: #3b82f6; }
.cat-commercial .photo-placeholder i { color: #6366f1; }
.cat-pressure .photo-placeholder i { color: #10b981; }
.cat-specialty .photo-placeholder i { color: #f59e0b; }

/* Full services checklist grid */
.services-full {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.services-full h3 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.15rem;
  color: var(--text);
}
.services-checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.service-check:hover { background: var(--bg-alt); }
.service-check i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}


/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { background: var(--bg-main); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  transition: var(--transition);
}
.why-card:nth-child(1) .why-icon { background: rgba(37,99,235,0.08); color: var(--primary); }
.why-card:nth-child(2) .why-icon { background: rgba(16,185,129,0.08); color: var(--accent); }
.why-card:nth-child(3) .why-icon { background: rgba(245,158,11,0.08); color: var(--gold); }
.why-card:nth-child(4) .why-icon { background: rgba(139,92,246,0.08); color: #8B5CF6; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }


/* ============================================
   BEFORE / AFTER — Results Gallery
   ============================================ */
.results { background: var(--bg-alt); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-pair {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.result-pair:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.result-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.result-img .photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
}
.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Before side: warm/dirty tone */
.result-img.before .photo-placeholder {
  background: linear-gradient(135deg, #fef2f2, #fecaca);
  color: #b91c1c;
}
.result-img.before .photo-placeholder i { color: #ef4444; opacity: 0.4; font-size: 1.5rem; }
/* After side: clean/fresh tone */
.result-img.after .photo-placeholder {
  background: linear-gradient(135deg, #ecfdf5, #a7f3d0);
  color: #047857;
}
.result-img.after .photo-placeholder i { color: #10b981; opacity: 0.4; font-size: 1.5rem; }

.result-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.result-img.before .result-label { background: rgba(239,68,68,0.85); color: white; }
.result-img.after .result-label { background: rgba(16,185,129,0.85); color: white; }

/* Divider arrow */
.result-images::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}

.result-caption {
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}


/* ============================================
   TESTIMONIALS — Light Background
   ============================================ */
.testimonials { background: var(--bg-main); }
.testimonials .section-header h2 { color: var(--text); }

/* Google Rating Summary */
.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.google-icon {
  width: 24px;
  height: 24px;
}
.google-rating-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-rating-score {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}
.google-rating-stars {
  display: flex;
  gap: 1px;
  color: #FBBC05;
  font-size: 0.85rem;
}
.google-rating-count {
  font-size: 0.8rem;
  color: var(--text-lighter);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: #4285F4;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Google-style header: avatar + name/stars + Google icon */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author-info {
  flex: 1;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 4px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-stars {
  color: #FBBC05;
  font-size: 0.78rem;
  display: flex;
  gap: 1px;
}
.testimonial-date {
  font-size: 0.75rem;
  color: var(--text-lighter);
}
.testimonial-google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* "Posted on Google" footer */
.testimonial-source {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.testimonial-source span {
  font-size: 0.75rem;
  color: var(--text-lighter);
}
.google-logo-small {
  height: 14px;
  width: auto;
  opacity: 0.6;
}

.reviews-link {
  text-align: center;
  margin-top: 36px;
}
.reviews-link a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.reviews-link a:hover { gap: 10px; color: var(--primary-dark); }


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 60%, #1E40AF 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 10px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
  position: relative;
}
.cta-banner-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}


/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 12px; }
.contact-info > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--text); }
.contact-item-text p { font-size: 0.88rem; color: var(--text-light); }
.contact-item-text a { color: var(--primary); font-weight: 500; }
.contact-item-text a:hover { color: var(--primary-dark); }

/* Map placeholder */
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 180px;
  background: var(--gray-100);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lighter); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-status {
  text-align: center;
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}
.form-status.success { display: block; background: rgba(16,185,129,0.08); color: #059669; }
.form-status.error { display: block; background: rgba(239,68,68,0.08); color: var(--danger); }


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 140px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-serving {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--primary-light); }
.footer ul li i {
  width: 18px;
  color: rgba(255,255,255,0.3);
  margin-right: 6px;
  font-size: 0.82rem;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { color: var(--white); }


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter { display: inline-block; }


/* ============================================
   REVIEW MODAL & FORM
   ============================================ */
.btn-leave-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-leave-review:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

/* Modal overlay */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.review-modal-overlay.active {
  display: flex;
}

/* Modal card */
.review-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalSlideIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.review-modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.review-modal-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-lighter);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.review-modal-close:hover {
  background: var(--gray-100);
  color: var(--text);
}

/* Form fields */
.review-form-group {
  margin-bottom: 18px;
}
.review-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.review-form-group .required {
  color: #ef4444;
}
.review-form-group input,
.review-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
  box-sizing: border-box;
}
.review-form-group input:focus,
.review-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.review-form-hint {
  font-size: 0.75rem;
  color: var(--text-lighter);
  margin-top: 4px;
  display: block;
}
.review-char-count {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-lighter);
  margin-top: 4px;
}

/* Star rating selector */
.star-rating {
  display: flex;
  gap: 4px;
  font-size: 1.8rem;
  cursor: pointer;
}
.star-rating .star {
  color: var(--gray-200);
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}
.star-rating .star.active {
  color: #FBBC05;
}
.star-rating .star.hover {
  color: #FBBC05;
  transform: scale(1.15);
}

/* Submit button */
.btn-submit-review {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit-review:hover {
  background: var(--primary-dark);
}
.btn-submit-review:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success message */
.review-success {
  text-align: center;
  padding: 20px 0;
}
.review-success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.review-success h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.review-success p {
  color: var(--text-light);
  font-size: 0.9rem;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-categories { grid-template-columns: repeat(2, 1fr); }
  .services-checklist { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; color: rgba(255,255,255,0.85) !important; }
  .nav-links a:hover { color: var(--white) !important; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }

  /* Mobile nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
  }
  .nav-overlay.active { display: block; }

  /* Hero */
  .hero { min-height: auto; padding: 130px 0 80px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-features { gap: 14px; }

  /* Stats */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
  .stat-item { padding: 22px 16px; }
  .stat-number { font-size: 1.8rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image { order: -1; }

  /* Services */
  .services-categories { grid-template-columns: 1fr; }
  .service-category { min-height: 220px; }
  .services-checklist { grid-template-columns: repeat(2, 1fr); }

  /* Why Us */
  .why-us-grid { grid-template-columns: 1fr 1fr; }

  /* Results */
  .results-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-brand img { margin: 0 auto 14px; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline,
  .hero-buttons .btn-white { width: 100%; justify-content: center; }
  .hero-features { flex-direction: column; gap: 10px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .services-checklist { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .about-badges { flex-direction: column; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float i { font-size: 28px; }
  .whatsapp-tooltip { display: none; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  background: #20BA5C;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
}
.whatsapp-float i {
  font-size: 34px;
  line-height: 1;
}
.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: #fff;
  color: #1E293B;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
}
.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
