/* 
  =========================================
  YeskGreen Cleaning Services - Stylesheet
  Premium, Eco-Friendly Local SEO Web Design
  =========================================
*/

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

/* CSS Variables / Design System */
:root {
  /* Color Palette (HSL-tailored Eco-friendly Green & Accents) */
  --primary: hsl(143, 61%, 22%);        /* Deep Forest Green (#145a32) */
  --primary-light: hsl(143, 50%, 32%);  /* Medium Green */
  --primary-dark: hsl(143, 65%, 12%);   /* Very Dark Green (#0a2d19) */
  --accent: hsl(95, 65%, 45%);          /* Vibrant Lime/Apple Green (#82c341) */
  --accent-hover: hsl(95, 65%, 38%);    /* Darker Lime for hover states */
  --gold: hsl(45, 100%, 50%);           /* Radiant gold for stars/ratings */
  
  /* Neutral Palette */
  --bg-light: hsl(135, 30%, 98%);       /* Ultra light mint background */
  --bg-white: hsl(0, 0%, 100%);
  --bg-card: hsl(0, 0%, 100%);
  --text-dark: hsl(143, 30%, 12%);      /* Dark Charcoal/Green */
  --text-body: hsl(143, 15%, 28%);      /* Slate/Green body text */
  --text-light: hsl(143, 10%, 55%);     /* Muted body text */
  
  /* Glassmorphism Design Tokens */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(20, 90, 50, 0.15);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(22, 91, 51, 0.08);
  
  /* Typography & Layout Scales */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
  --max-width-header: 1400px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.6;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-size: 1rem;
}

/* Headings Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Common Layout Components */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

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

/* Section Header Utility */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header .tag {
  display: inline-block;
  background-color: var(--bg-mint);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(22, 91, 51, 0.1);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Premium Buttons & Interactive States */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(22, 91, 51, 0.1);
  z-index: 1;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg-white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(130, 195, 65, 0.35);
  color: var(--bg-white);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(130, 195, 65, 0.25);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 91, 51, 0.25);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 91, 51, 0.2);
}

/* Pulse Glow Keyframe for CTA Buttons */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(130, 195, 65, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(130, 195, 65, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(130, 195, 65, 0);
  }
}

.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

/* Premium Sticky Dark Green Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: hsl(143, 61%, 16%);
  border-bottom: 1px solid rgba(130, 195, 65, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: padding var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
  padding: 1rem 0;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: hsl(143, 65%, 12%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width-header);
  gap: 2.5rem;
  padding: 0 2.5rem;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--bg-white);
  flex-shrink: 0;
}

.logo img {
  height: 52px !important;
  width: auto !important;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--accent);
  transition: transform var(--transition-slow);
}

.logo:hover .logo-icon {
  transform: rotate(20deg) scale(1.1);
}

.logo-text-green {
  color: var(--accent);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.5rem 0.15rem;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Call Info */
.call-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.call-badge:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.call-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  min-width: 32px;
  height: 28px;
  z-index: 1100;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

/* Mobile menu active states */
.menu-toggle.active span {
  background-color: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section with Vibrant Green Aesthetics */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, hsl(135, 40%, 93%) 0%, var(--bg-light) 60%);
  padding-top: calc(5rem + 100px); /* header padding offsets */
  padding-bottom: 6rem;
  overflow: hidden;
}

/* Dynamic background blob graphics */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(130, 195, 65, 0.12) 0%, rgba(22, 91, 51, 0.02) 70%);
  border-radius: var(--radius-full);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(130, 195, 65, 0.12);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(130, 195, 65, 0.3);
}

.hero-tag svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary) 30%, var(--accent) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(22, 91, 51, 0.1);
  padding-top: 2rem;
  width: 100%;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Right: Premium Glassmorphic Flyer/Image & Dynamic Floaters */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22, 91, 51, 0.15);
  border: 4px solid var(--bg-white);
  transform: rotate(-1deg);
  transition: transform var(--transition-normal);
}

.hero-img-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.fb-1 {
  top: 15%;
  left: -12%;
  animation-delay: 0s;
}

.fb-2 {
  bottom: 12%;
  right: -8%;
  animation-delay: 2s;
}

.fb-icon {
  width: 38px;
  height: 38px;
  background-color: var(--bg-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.fb-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fb-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.fb-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Floating Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Interactive Quote Estimator Widget */
.calc-section {
  background-color: var(--bg-white);
  position: relative;
  z-index: 3;
}

.calc-container {
  max-width: 900px;
  margin: -4rem auto 0 auto; /* Pulls calculator over the hero boundary */
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(22, 91, 51, 0.12);
  border: 1px solid rgba(22, 91, 51, 0.08);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.calc-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.calc-form-group {
  margin-bottom: 1.8rem;
}

.calc-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.calc-services-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.calc-type-btn {
  background-color: var(--bg-light);
  color: var(--text-body);
  border: 1px solid rgba(22, 91, 51, 0.1);
  padding: 0.8rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.calc-type-btn.active, .calc-type-btn:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
}

.calc-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  border: 1px solid rgba(22, 91, 51, 0.1);
  font-family: var(--font-body);
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23145a32'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 20px;
}

.calc-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(130, 195, 65, 0.15);
}

.calc-range-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.calc-range {
  flex-grow: 1;
  height: 6px;
  background-color: rgba(22, 91, 51, 0.1);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
  accent-color: var(--accent);
}

.calc-range-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  min-width: 75px;
  background-color: var(--bg-mint);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* Calculator Result Panel */
.calc-result {
  background-color: var(--bg-mint);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 91, 51, 0.1);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.calc-price-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.calc-price-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.calc-price-value span {
  font-size: 1.8rem;
  font-weight: 600;
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 220px;
}

.calc-cta {
  width: 100%;
}

/* Services Silo Cards (Grid) */
.services-section {
  background-color: var(--bg-light);
}

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

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 91, 51, 0.06);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 91, 51, 0.03);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(130, 195, 65, 0) 0%, rgba(130, 195, 65, 0.05) 100%);
  transition: height var(--transition-normal);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(22, 91, 51, 0.08);
  border-color: rgba(130, 195, 65, 0.3);
}

.service-card:hover::before {
  height: 50%;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--bg-mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.service-icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--bg-white);
}

.service-title {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.service-checklist {
  list-style: none;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}

.service-checklist svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* Local SEO Focus Sections (Cities served) */
.locations-section {
  background-color: var(--bg-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.location-pill {
  background-color: var(--bg-light);
  border: 1px solid rgba(22, 91, 51, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.location-pill:hover {
  background-color: var(--bg-mint);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 91, 51, 0.05);
}

.location-pill svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.location-pill h4 {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

/* Value Props "Why Choose YeskGreen" */
.props-section {
  background-color: var(--bg-mint);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

.prop-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0.5rem;
}

.prop-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-white);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(22, 91, 51, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.prop-card:hover .prop-icon {
  transform: scale(1.1) rotate(10deg);
}

.prop-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.prop-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.prop-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Testimonials / Glowing Slider */
.testimonials-section {
  background-color: var(--bg-white);
  overflow: hidden;
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  padding: 1rem;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: slideFadeIn var(--transition-slow);
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.stars-rating svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.testimonial-loc {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(22, 91, 51, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 25px;
  border-radius: var(--radius-full);
}

/* Call to Action Banner (Footer Pre-section) */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--bg-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 30vw;
  height: 30vw;
  background: rgba(130, 195, 65, 0.08);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.cta-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: var(--bg-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* Standard Contact Form Structure (Used on Contact page & Inner sections) */
.contact-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.ci-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.ci-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.ci-text p, .ci-text a {
  font-size: 0.95rem;
  color: var(--text-body);
}

.ci-text a:hover {
  color: var(--accent);
}

.contact-form-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(22, 91, 51, 0.05);
  border: 1px solid rgba(22, 91, 51, 0.06);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  border: 1px solid rgba(22, 91, 51, 0.08);
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(130, 195, 65, 0.12);
}

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

/* Beautiful Animated Green Leaf Background Decoration */
.leaf-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 1;
}

/* SEO Footer Structure with SILO Links */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h4 {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  display: inline-block;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.footer-contact-item a {
  color: var(--bg-white) !important;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--accent) !important;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

/* Inner Page Hero Structure */
.inner-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--bg-white);
  padding: 8rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.inner-hero h1 {
  color: var(--bg-white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--accent);
}

.breadcrumbs a:hover {
  color: var(--bg-white);
}

.breadcrumbs span {
  display: inline-block;
}

/* Specialized Service Detailed Pages Checklist Styles */
.inner-service-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
}

.inner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 91, 51, 0.08);
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(22, 91, 51, 0.03);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-mint);
}

.checklist-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 91, 51, 0.06);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(22, 91, 51, 0.02);
}

.checklist-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
}

.checklist-card h3 svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.checklist-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Rich SEO FAQ Accordion Styling */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 91, 51, 0.06);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(22, 91, 51, 0.02);
  transition: all var(--transition-normal);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(130, 195, 65, 0.3);
  box-shadow: 0 10px 25px rgba(22, 91, 51, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: var(--bg-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 2rem;
  color: var(--text-body);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* high enough threshold to fit text */
  padding: 0 2rem 1.8rem 2rem;
  border-top-color: var(--bg-light);
}

/* Animations for Scroll-observer */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Mobile-only and utility classes */
.mobile-only {
  display: none !important;
}

/* Media Queries for Perfect Responsiveness */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .calc-container {
    margin-top: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .mobile-only {
    display: flex !important;
  }

  .header-container {
    padding: 0 1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .nav-bar {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
  }

  .nav-menu {
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(22, 91, 51, 0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 3rem 2.5rem;
    gap: 1.8rem;
    transition: right var(--transition-normal);
    z-index: 1050;
  }

  .nav-menu .nav-link {
    color: var(--text-dark);
    font-size: 1.1rem;
  }

  .nav-menu .nav-link:hover {
    color: var(--primary);
  }

  .nav-menu .nav-link.active {
    color: var(--primary);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-actions {
    display: none !important;
  }
  
  .nav-menu .call-badge {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    color: var(--primary);
    background-color: var(--bg-mint);
    border-color: rgba(22, 91, 51, 0.15);
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .calc-section > .container {
    padding: 0;
  }
  
  .calc-container {
    padding: 1.5rem 1.2rem;
    margin: -2rem 0.75rem 0 0.75rem;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calc-inputs {
    text-align: center;
    width: 100%;
  }

  .calc-inputs h2 {
    text-align: center;
    font-size: 1.3rem;
  }

  .calc-inputs p {
    text-align: center;
    font-size: 0.9rem;
  }

  .calc-form-group {
    margin-bottom: 1.4rem;
  }

  .calc-form-group label {
    text-align: left;
  }

  .calc-services-toggle {
    grid-template-columns: 1fr;
  }

  .calc-select {
    width: 100%;
    box-sizing: border-box;
  }

  .calc-range-wrapper {
    width: 100%;
  }

  .calc-range {
    flex: 1;
    min-width: 0;
  }

  .calc-range-val {
    min-width: 36px;
    padding: 0.3rem 0.5rem;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .calc-result {
    padding: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .inner-service-content {
    grid-template-columns: 1fr;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-tag {
    font-size: 0.8rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .floating-badge {
    display: none; /* Hide on small mobiles to prevent overlap */
  }
  
  .calc-services-toggle {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .props-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

/* =============================================
   FLOATING CALL BUTTON + LANGUAGE SELECTOR
   ============================================= */

/* Floating Call Button (bottom-right) */
.floating-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

.floating-call-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-hover));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(22, 91, 51, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
  animation: callPulse 2.5s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(130, 195, 65, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-call-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  transition: transform var(--transition-fast);
}

.floating-call-btn:hover svg {
  transform: scale(1.1);
}

/* Close icon state */
.floating-call.open .floating-call-btn svg.icon-phone {
  display: none;
}

.floating-call.open .floating-call-btn svg.icon-close {
  display: block;
}

.floating-call-btn svg.icon-close {
  display: none;
}

.floating-call.open .floating-call-btn {
  animation: none;
  background: linear-gradient(135deg, hsl(0, 0%, 35%), hsl(0, 0%, 25%));
}

@keyframes callPulse {
  0% {
    box-shadow: 0 6px 24px rgba(22, 91, 51, 0.35), 0 0 0 0 rgba(130, 195, 65, 0.45);
  }
  70% {
    box-shadow: 0 6px 24px rgba(22, 91, 51, 0.35), 0 0 0 16px rgba(130, 195, 65, 0);
  }
  100% {
    box-shadow: 0 6px 24px rgba(22, 91, 51, 0.35), 0 0 0 0 rgba(130, 195, 65, 0);
  }
}

/* Call Options Popup */
.call-options-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 280px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(22, 91, 51, 0.18), 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(22, 91, 51, 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  transition: all var(--transition-normal);
  pointer-events: none;
}

.floating-call.open .call-options-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.call-popup-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 1rem 1.2rem;
  color: #fff;
}

.call-popup-header h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.call-popup-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.call-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: background-color var(--transition-fast);
  border-bottom: 1px solid rgba(22, 91, 51, 0.06);
}

.call-option:last-child {
  border-bottom: none;
}

.call-option:hover {
  background-color: var(--bg-light);
}

.call-option-flag {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.call-option-info {
  display: flex;
  flex-direction: column;
}

.call-option-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.call-option-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.call-option:hover .call-option-number {
  color: var(--accent-hover);
}

/* Popup arrow/triangle */
.call-options-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: var(--bg-white);
  border-right: 1px solid rgba(22, 91, 51, 0.08);
  border-bottom: 1px solid rgba(22, 91, 51, 0.08);
  transform: rotate(45deg);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .floating-call {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .floating-call-btn {
    width: 56px;
    height: 56px;
  }

  .floating-call-btn svg {
    width: 24px;
    height: 24px;
  }

  .call-options-popup {
    width: 260px;
    right: -0.5rem;
  }
}

/* =========================================
   NEW: Google-Style Reviews Grid
   ========================================= */

.reviews-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: 0 4px 20px rgba(22, 91, 51, 0.07);
  border: 1px solid rgba(22, 91, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 1.2rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(130, 195, 65, 0.12);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(22, 91, 51, 0.13);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg-white);
  flex-shrink: 0;
}

.avatar-green  { background: linear-gradient(135deg, hsl(143,61%,22%), hsl(95,65%,45%)); }
.avatar-teal   { background: linear-gradient(135deg, hsl(180,60%,28%), hsl(160,55%,40%)); }
.avatar-olive  { background: linear-gradient(135deg, hsl(75,55%,30%), hsl(95,65%,45%)); }
.avatar-sage   { background: linear-gradient(135deg, hsl(120,40%,30%), hsl(143,50%,42%)); }
.avatar-forest { background: linear-gradient(135deg, hsl(143,71%,14%), hsl(143,61%,30%)); }
.avatar-lime   { background: linear-gradient(135deg, hsl(95,65%,35%), hsl(88,60%,50%)); }
.avatar-moss   { background: linear-gradient(135deg, hsl(110,45%,28%), hsl(95,55%,38%)); }
.avatar-fern   { background: linear-gradient(135deg, hsl(130,50%,26%), hsl(143,61%,38%)); }

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-author-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(22, 91, 51, 0.07);
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-badge svg {
  width: 14px;
  height: 14px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Small reviews grid (3 cols) for inner pages */
.reviews-grid-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

/* =========================================
   NEW: Photo Gallery Grid
   ========================================= */

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.photo-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,90,50,0.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.photo-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* =========================================
   NEW: Split Section (Image + Text)
   ========================================= */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22, 91, 51, 0.14);
}

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.split-image-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.split-image-badge span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-content .tag {
  display: inline-block;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--primary-dark);
}

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

.split-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.split-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.split-feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* =========================================
   NEW: Animated Google Rating Badge (Hero)
   ========================================= */

.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-white);
  border: 1px solid rgba(22, 91, 51, 0.12);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  box-shadow: 0 4px 16px rgba(22, 91, 51, 0.1);
  margin-bottom: 1.5rem;
  animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.3s;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.8) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-google-badge .badge-stars {
  display: flex;
  gap: 1px;
}

.hero-google-badge .badge-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.hero-google-badge .badge-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-google-badge .badge-divider {
  width: 1px;
  height: 18px;
  background: rgba(22,91,51,0.15);
}

.hero-google-badge .badge-logo {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

/* =========================================
   NEW: Responsive Rules for New Components
   ========================================= */

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid,
  .reviews-grid-sm {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-image img {
    height: 280px;
  }
}

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

/* =========================================
   NEW: Form Status Messages (AJAX Submission)
   ========================================= */

.form-status-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.5;
  display: none;
  font-family: var(--font-body);
  transition: all var(--transition-normal);
}

.form-status-sending {
  background-color: var(--bg-mint);
  border: 1px solid rgba(22, 91, 51, 0.15);
  color: var(--primary-dark);
}

.form-status-success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #2e7d32;
  text-align: center;
}

.form-status-success h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: #1b5e20;
}

.form-status-success p {
  font-size: 0.9rem;
  color: #2e7d32;
}

.form-status-error {
  background-color: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.25);
  color: #c62828;
}

.form-status-error a {
  color: #c62828;
  text-decoration: underline;
  font-weight: 600;
}
