/* ==========================================================================
   Ultralight Cleaning — Custom Stylesheet
   Mobile-first. Brand: #00bf63 green, #38b6ff blue, warm whites.
   Typography: Plus Jakarta Sans (headings) + Nunito Sans (body)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2d3436;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Custom Properties --- */
:root {
  --green: #00bf63;
  --green-dark: #00a855;
  --green-light: #e6f9f0;
  --blue: #38b6ff;
  --blue-dark: #1a9ee0;
  --blue-light: #e8f5ff;
  --charcoal: #1a1a2e;
  --text: #2d3436;
  --text-light: #636e72;
  --text-lighter: #95a5a6;
  --bg: #ffffff;
  --bg-soft: #f8faf9;
  --bg-green: #f0fdf6;
  --border: #e8eceb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-green: 0 4px 20px rgba(0,191,99,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --nav-height: 72px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
  section { padding: 80px 0; }
}
@media (min-width: 1024px) {
  section { padding: 100px 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,191,99,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn svg, .btn img {
  width: 18px;
  height: 18px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--nav-height);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: calc(var(--nav-height) + 20px) 24px 24px;
  gap: 4px;
  z-index: 999;
}
.nav-links.active {
  display: flex;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-light);
}
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}
.nav-links .has-dropdown.open .dropdown {
  display: flex;
}
.nav-links .dropdown a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 16px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.has-dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-phone {
  display: none;
}
.nav-cta {
  display: none;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 2px;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .nav-links .has-dropdown { position: relative; }
  .nav-links .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    flex-direction: column;
    z-index: 1002;
  }
  .nav-links .has-dropdown:hover .dropdown {
    display: flex;
  }
  .nav-links .dropdown a {
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }
  .nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    margin-left: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
  }
  .nav-phone:hover { color: var(--green); }
  .nav-phone svg { width: 16px; height: 16px; color: var(--green); }
  .nav-cta {
    display: inline-flex;
    margin-left: 8px;
    padding: 10px 20px;
    font-size: 0.88rem;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 50svh;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}
.hero-content {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}
.hero-trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    min-height: auto;
    padding-top: var(--nav-height);
  }
  .hero-content {
    flex: 1;
    padding: 60px 40px;
    margin-top: 0;
    justify-content: center;
    order: 1;
  }
  .hero-image {
    flex: 1;
    height: auto;
    min-height: 500px;
    order: 2;
  }
  .hero-image::after { display: none; }
}
@media (min-width: 1024px) {
  .hero-content { padding: 80px 60px 80px 40px; }
  .hero-image { min-height: 600px; }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 40px) 0 40px;
  background: var(--bg-soft);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,191,99,0.06), transparent 70%);
  border-radius: 50%;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
  }
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  margin-bottom: 8px;
}
.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; }

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Feature / Icon Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--green);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  transition: color var(--transition);
}
.feature-card:hover .feature-icon svg {
  color: #fff;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Our Work / Gallery --- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.work-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-item:hover img {
  transform: scale(1.06);
}
.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.work-item:hover .work-item-overlay { opacity: 1; }
.work-item-overlay span {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
@media (min-width: 600px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* --- Before/After --- */
.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.ba-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ba-label.before {
  background: rgba(255,255,255,0.9);
  color: var(--text);
}
.ba-label.after {
  background: var(--green);
  color: #fff;
}
@media (min-width: 600px) {
  .before-after { grid-template-columns: repeat(2, 1fr); }
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--bg-green);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f9a825;
  fill: #f9a825;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-lighter);
}
.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: var(--green-light);
}
@media (min-width: 600px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--charcoal);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 4px;
}
.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Areas We Serve --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--green-light);
  color: var(--green-dark);
}
.area-tag svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Process / Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  counter-increment: step;
}
.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.process-step h4 { margin-bottom: 4px; }
.process-step p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active {
  border-color: var(--green);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-lighter);
  transition: transform var(--transition);
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  visibility: hidden;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  visibility: visible;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Contact / Forms --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,191,99,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2395a5a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.contact-info-card {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}
.contact-info-item h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.contact-info-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 0;
}
.contact-info-item a {
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  word-break: break-all;
}
.contact-info-item a:hover { color: var(--green); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Pricing Tiers --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-xl);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
@media (min-width: 600px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Content Sections (service pages) --- */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.content-with-image .content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-with-image .content-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.content-with-image .content-text h2 { margin-bottom: 16px; }
.content-with-image .content-text p { color: var(--text-light); }
.content-with-image .content-text ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-with-image .content-text li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
}
.content-with-image .content-text li svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .content-with-image .content-img img { height: 380px; }
  .content-with-image.reversed .content-img { order: 2; }
  .content-with-image.reversed .content-text { order: 1; }
}

/* --- Eco Section --- */
.eco-section {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-light) 100%);
}
.eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.eco-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.eco-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.eco-icon svg { width: 22px; height: 22px; color: var(--green); }
.eco-item h4 { margin-bottom: 4px; }
.eco-item p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }
@media (min-width: 768px) {
  .eco-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand {
  max-width: 300px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  display: inline;
  padding: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Sticky Phone CTA (mobile only) --- */
.sticky-phone {
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 900;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,191,99,0.4);
  transition: all var(--transition);
}
.sticky-phone:hover {
  background: var(--green-dark);
}
.sticky-phone svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 899px) {
  body { padding-bottom: 90px; }
  .hero-content { padding-bottom: 130px; }
  .hero-btns { padding-bottom: 80px; }
  .service-card { scroll-margin-bottom: 100px; }
  .services-grid { padding-bottom: 20px; }
  .btn { position: relative; z-index: 950; }
}
@media (min-width: 900px) {
  .sticky-phone { display: none; }
}

/* --- Misc / Utility --- */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-soft { background: var(--bg-soft); }
.bg-white { background: #fff; }

/* Two-col layout for contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.contact-layout > * { min-width: 0; }
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* Service page image banner */
.service-banner {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.service-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .service-banner { height: 360px; }
}

/* Checklist style */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Two-col text section */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .two-col-text { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* --- Custom Scrollbar (desktop) --- */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg-soft); }
  ::-webkit-scrollbar-thumb {
    background: #c8d6d3;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover { background: #a0b0ac; }
}

/* --- Print --- */
@media print {
  .nav, .sticky-phone, .cta-banner { display: none; }
  body { font-size: 12pt; }
}
