/* ─────────────────────────────────────────
   ROOT VARIABLES
───────────────────────────────────────── */
:root {
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #40916C;
  --green-600: #52B788;
  --green-400: #74C69D;
  --green-200: #B7E4C7;
  --green-100: #D8F3DC;
  --green-50:  #F0FFF4;

  --earth-900: #3D2B1F;
  --earth-100: #F5EDD8;

  --white:     #FFFFFF;
  --off-white: #F8FAF8;
  --bg-alt:    #F2FAF4;

  --text:      #1A2E20;
  --text-mid:  #3D5A44;
  --text-muted:#5A7A62;
  --text-light:#8AAD92;

  --border:    #D0EADA;
  --border-light: #E8F5EC;

  --shadow-sm: 0 1px 3px rgba(45,106,79,.08);
  --shadow:    0 4px 16px rgba(45,106,79,.12);
  --shadow-lg: 0 12px 40px rgba(45,106,79,.16);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.2s ease;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-header h2 { margin: 8px 0 14px; }
.section-header p  { font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 4px 14px;
  border-radius: 100px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm  { padding: 8px 18px; font-size: 0.82rem; border-radius: var(--radius-sm); }
.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,106,79,.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-800);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--green-700); }
.nav-logo svg   { color: var(--green-700); flex-shrink: 0; }
.nav-logo-img   { height: 48px; width: auto; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--green-800);
  background: var(--green-50);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--green-50); }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--green-900);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 67, 50, 0.72) 0%,
    rgba(27, 67, 50, 0.60) 50%,
    rgba(27, 67, 50, 0.78) 100%
  );
}

.hero-drops {
  position: absolute;
  inset: 0;
}
.hero-drops span {
  position: absolute;
  border-radius: 50% 50% 60% 40% / 60% 40% 60% 50%;
  border: 1px solid rgba(255,255,255,.08);
  animation: float 8s ease-in-out infinite;
}
.hero-drops span:nth-child(1) { width:140px; height:140px; top:15%; left:10%;  animation-delay: 0s;   }
.hero-drops span:nth-child(2) { width: 80px; height: 80px; top:60%; left:75%;  animation-delay: 2s;   }
.hero-drops span:nth-child(3) { width:110px; height:110px; top:30%; left:85%;  animation-delay: 4s;   }
.hero-drops span:nth-child(4) { width: 60px; height: 60px; top:75%; left:25%;  animation-delay: 1s;   }
.hero-drops span:nth-child(5) { width: 90px; height: 90px; top:50%; left:50%;  animation-delay: 3s;   }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  border: 1px solid rgba(116,198,157,.4);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--green-400);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.hero-stat:first-child { padding-left: 0; }

.hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

.hero-micro {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  margin-top: -4px;
  margin-bottom: 32px;
  font-style: italic;
}

/* ─────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────── */
.trust-strip {
  background: var(--green-800);
  padding: 18px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-200);
}
.trust-item svg { color: var(--green-400); flex-shrink: 0; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-800);
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green-200);
}

.service-card h3 { margin-bottom: 6px; }
.service-card p  { font-size: 0.92rem; line-height: 1.65; }
.service-price {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px !important;
}
.service-price strong {
  color: var(--green-800);
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pricing-card-featured {
  border-color: var(--green-700);
  box-shadow: 0 0 0 1px var(--green-700), var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-3px);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-800);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
}

.pricing-desc {
  font-size: 0.9rem;
  margin-bottom: 28px;
  color: var(--text-muted);
  min-height: 40px;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.pricing-features li svg {
  color: var(--green-700);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.gallery-pair {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.gallery-pair:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item {
  position: relative;
  flex: 1;
}

.gallery-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.6);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
}

.gallery-label-after {
  background: var(--green-800);
}

.gallery-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

.gallery-placeholder-dirty {
  background: linear-gradient(135deg, #6B5B45 0%, #8B7355 50%, #A09070 100%);
}
.gallery-placeholder-dirty span { color: var(--earth-100); }

.gallery-placeholder-clean {
  background: linear-gradient(135deg, #D8F3DC 0%, #B7E4C7 50%, #95D5B2 100%);
}
.gallery-placeholder-clean span { color: var(--green-800); }

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  background: var(--white);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.gallery-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.gallery-note code {
  background: var(--green-50);
  color: var(--green-800);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card p::before { content: '\201C'; }
.testimonial-card p::after  { content: '\201D'; }

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--green-200);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 24px; }

label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
label span { color: var(--green-700); }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
input::placeholder,
textarea::placeholder { color: var(--text-light); }

input:focus, select:focus, textarea:focus {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(64,145,108,.15);
}

select { cursor: pointer; 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='%235A7A62' 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 12px center; padding-right: 40px; }

textarea { resize: vertical; min-height: 100px; }

.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-status-success {
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-200);
}
.form-status-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.contact-info-item:first-of-type { border-top: 1px solid var(--border-light); }
a.contact-info-item:hover strong { color: var(--green-700); }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-info-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-cta-box {
  margin-top: 24px;
  background: var(--green-100);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.contact-cta-box p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-mid);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}

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

.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 12px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 260px; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-400); }

.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--green-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.4); }
.footer-eco {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-eco svg { color: var(--green-400); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 16px; font-size: 0.92rem; }
  .nav-menu .btn { margin-top: 8px; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }

  /* Pricing */
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-3px); }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Contact form padding */
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Trust */
  .trust-grid { gap: 12px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */

/* Hero section entrance (plays on page load) */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .badge        { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s  both; }
.hero-content h1            { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero-content .hero-sub     { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s  both; }
.hero-content .hero-actions { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s both; }
.hero-content .hero-stats   { animation: hero-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.72s both; }

/* Ambient orb drift */
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.95); }
}
.hero-orb-1 { animation: orb-drift 18s ease-in-out infinite; }
.hero-orb-2 { animation: orb-drift 22s ease-in-out infinite reverse; }

/* Trust strip entrance */
@keyframes trust-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trust-item:nth-child(1) { animation: trust-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.trust-item:nth-child(2) { animation: trust-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.trust-item:nth-child(3) { animation: trust-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.trust-item:nth-child(4) { animation: trust-in 0.5s cubic-bezier(0.16,1,0.3,1) 0.35s both; }

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-in   { transform: scale(0.92) translateY(20px); }
.reveal.visible    { opacity: 1; transform: none; }

/* Stagger delays for grouped cards */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* Button: needs position for ripple child */
.btn { position: relative; }

/* Click ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  width: 10px; height: 10px;
  transform: scale(0);
  animation: ripple-out 0.6s linear forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  to { transform: scale(40); opacity: 0; }
}

/* Hero CTA pulse glow */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(45,106,79,.35), 0 0 0 0   rgba(116,198,157,.55); }
  60%       { box-shadow: 0 6px 20px rgba(45,106,79,.35), 0 0 0 16px rgba(116,198,157,0);  }
}
.hero-cta-pulse { animation: cta-pulse 2.5s ease-in-out infinite; }

/* Gallery hover shimmer (simulates cleaning sweep) */
.gallery-placeholder { position: relative; overflow: hidden; }
.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.2) 50%, transparent 75%);
  transform: translateX(-150%);
}
.gallery-pair:hover .gallery-placeholder::after {
  transform: translateX(150%);
  transition: transform 0.75s ease;
}

/* Service icon micro-bounce on card hover */
@keyframes icon-bounce {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.2); }
  70%       { transform: scale(0.93); }
}
.service-card:hover .service-icon {
  animation: icon-bounce 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

/* Featured pricing card gentle glow pulse */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--green-700), var(--shadow-lg); }
  50%       { box-shadow: 0 0 0 3px var(--green-600), 0 16px 48px rgba(45,106,79,.28); }
}
.pricing-card-featured        { animation: glow-pulse 3s ease-in-out infinite; }
.pricing-card-featured:hover  { animation: none; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────────────────────────────────────
   GUARANTEE BANNER (hero)
───────────────────────────────────────── */
.guarantee-banner {
  margin-top: 28px;
  background: rgba(116,198,157,.13);
  border: 1px solid rgba(116,198,157,.3);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 580px;
}
.guarantee-banner svg { color: var(--green-400); flex-shrink: 0; margin-top: 1px; }
.guarantee-banner p  { color: rgba(255,255,255,.82); font-size: 0.88rem; margin: 0; line-height: 1.55; }
.guarantee-banner strong { color: var(--white); }

/* Inline guarantee line used inside pricing cards */
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--green-700);
  font-weight: 600;
  margin-top: 10px;
  justify-content: center;
}
.pricing-guarantee svg { flex-shrink: 0; }

/* Pricing urgency line */
.pricing-urgency {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--green-700);
  font-family: var(--font-head);
  font-weight: 600;
}

/* ─────────────────────────────────────────
   BEFORE / AFTER DRAG SLIDER
───────────────────────────────────────── */
.slider-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.slider-wrap:hover { box-shadow: var(--shadow-lg); }

.ba-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-after { clip-path: inset(0 0 0 50%); }

.ba-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-img span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  pointer-events: none;
}

.ba-dirty { background: linear-gradient(135deg, #6B5B45 0%, #8B7355 50%, #A09070 100%); }
.ba-dirty span { color: var(--earth-100); }
.ba-clean { background: linear-gradient(135deg, #D8F3DC 0%, #B7E4C7 50%, #95D5B2 100%); }
.ba-clean span { color: var(--green-800); }

.ba-label {
  position: absolute;
  top: 12px;
  z-index: 5;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  pointer-events: none;
}
.ba-label-before { left: 12px; background: rgba(0,0,0,.55); color: var(--white); }
.ba-label-after  { right: 12px; background: var(--green-800); color: var(--white); }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(0,0,0,.25);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
  color: var(--green-800);
}

.ba-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.35);
  padding: 3px 10px;
  border-radius: 100px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
  transition: opacity 0.3s;
}
.ba-slider.dragged .ba-hint { opacity: 0; }

/* ─────────────────────────────────────────
   SMS / TEXT CTA SECTION
───────────────────────────────────────── */
.sms-cta {
  background: var(--green-800);
  padding: 64px 0;
}
.sms-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sms-cta-text h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.sms-cta-text p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 480px;
}
.btn-white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  flex-shrink: 0;
}
.btn-white:hover {
  background: var(--green-50);
  border-color: var(--green-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* ─────────────────────────────────────────
   FLOATING CALL BUTTON
───────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  background: var(--green-800);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(45,106,79,.45);
  transition: all var(--transition);
  text-decoration: none;
}
.float-cta:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,.55);
}
.float-cta svg { flex-shrink: 0; }

/* ─────────────────────────────────────────
   GALLERY PAGE (gallery.html)
───────────────────────────────────────── */
.gallery-page-hero {
  background: var(--green-900);
  padding: 130px 0 60px;
  text-align: center;
}
.gallery-page-hero h1 { color: var(--white); margin-bottom: 10px; }
.gallery-page-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

.masonry-grid {
  columns: 3 280px;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.masonry-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.masonry-photo {
  width: 100%;
  display: block;
}
.masonry-photo-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.masonry-caption {
  padding: 12px 14px;
  background: var(--white);
}
.masonry-caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.masonry-caption span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.masonry-item[data-hidden] { display: none; }

@media (max-width: 768px) {
  .sms-cta-inner { flex-direction: column; text-align: center; }
  .sms-cta-text p { max-width: 100%; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; }
  .masonry-grid { columns: 2 200px; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
}
