/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-deep: #1B4D1B;
  --green-dark: #0D1F0D;
  --green-accent: #4CAF50;
  --green-light: #72c776;
  --green-glow: rgba(76, 175, 80, 0.35);
  --green-mid: #2a6b2a;
  --white: #ffffff;
  --off-white: #f7f9f5;
  --text-primary: #0f1a0f;
  --text-secondary: #4a5c4a;
  --text-muted: #7a917a;
  --border: rgba(76, 175, 80, 0.15);

  --font-head: 'Syne', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(27, 77, 27, 0.12);

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  /* 18px */
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 108px 0;
  position: relative;
}

/* ============================================================
   ANIMATED SCROLLING BACKGROUND GRADIENT
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--off-white);
  pointer-events: none;
}

/* ============================================================
   SECTION TAGS, TITLES, SUBS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.reveal:nth-child(6) {
  transition-delay: 0.40s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: env(safe-area-inset-top) 24px 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: var(--green-deep);
  backdrop-filter: none;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.25);
  padding: env(safe-area-inset-top) 24px 0;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.nav:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--green-light);
}

.nav-cta-btn {
  background: var(--green-accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px var(--green-glow);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}

.nav-cta-btn:hover {
  background: var(--green-light) !important;
  box-shadow: 0 6px 32px var(--green-glow) !important;
  transform: translateY(-1px) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--green-accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--green-light);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-glow-border {
  border: 2px solid var(--green-accent);
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4), 0 4px 24px var(--green-glow);

}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(13, 31, 13, 0.55) 0%,
      rgba(13, 31, 13, 0.35) 40%,
      rgba(13, 31, 13, 0.75) 100%);
}

/* floating leaf particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.leaf-particle {
  position: absolute;
  width: 12px;
  height: 8px;
  background: radial-gradient(ellipse at 40% 40%, rgba(76, 175, 80, 0.8), rgba(27, 77, 27, 0.5));
  border-radius: 50% 0 50% 0;
  animation: floatLeaf linear infinite;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 0.7;
  }

  95% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-10vh) translateX(var(--drift, 80px)) rotate(var(--spin, 360deg));
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  margin-top: 120px;
}

.hero-sub,
.hero-area {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.9s ease both;
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-accent {
  background: linear-gradient(120deg, var(--green-light), var(--green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-area {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  animation: fadeSlideDown 0.9s 0.28s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeSlideDown 0.9s 0.36s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  animation: fadeSlideDown 0.9s 0.44s ease both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 14px;
  height: 14px;
  color: var(--green-light);
}



@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-dark);
  position: relative;
  z-index: 2;
  padding: 56px 24px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green-accent);
  vertical-align: middle;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--off-white);
  overflow: hidden;
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: default;

  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);

}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(76, 175, 80, 0.25);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(76, 175, 80, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
  opacity: 0;
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(27, 77, 27, 0.08), rgba(76, 175, 80, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--green-accent);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.service-list li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
}

.service-card-footer {
  position: relative;
  z-index: 1;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--green-accent);
  padding: 8px 0;
  transition: gap var(--transition), color var(--transition);
}

.service-link::after {
  content: '→';
}

.service-link:hover {
  gap: 12px;
  color: var(--green-deep);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--green-dark);
}

.about .section-title,
.about .section-tag {
  color: #fff;
}

.about .section-tag {
  color: var(--green-light);
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.2);
}

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

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 500px;
}

.about-img-main {
  width: 80%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: 0;
  width: 55%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--green-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--green-accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.4);
}

.about-badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-txt {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content {
  color: rgba(255, 255, 255, 0.75);
}

.about .section-title {
  color: #fff;
  margin-top: 12px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-quote {
  border-left: 3px solid var(--green-accent);
  padding-left: 20px;
  margin: 32px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.value-item strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.about-tagline {
  font-size: 0.92rem;
  color: var(--green-light);
  font-style: italic;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  overflow: hidden;
}

.section-bg-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--off-white) 0%, #e8f5e9 100%);
  z-index: 0;
  pointer-events: none;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .section-tag {
  color: var(--green-accent);
}

.why-us .section-title {
  color: var(--text-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);

  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(27, 77, 27, 0.06);
  border: 1.5px solid rgba(76, 175, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-ring svg {
  width: 24px;
  height: 24px;
  color: var(--green-accent);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--off-white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-item.tall {
  grid-row: span 2;
  grid-column: span 5;
}

.gallery-item.wide {
  grid-column: span 7;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 13, 0.85) 0%, rgba(13, 31, 13, 0.05) 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
}

/* ============================================================
   INSTANT QUOTE CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  z-index: 0;
}

.cta-strip-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-strip-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 480px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--green-dark);
}

.testimonials .section-title {
  color: #fff;
}

.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials .section-tag {
  color: var(--green-light);
  background: rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.2);
}

.testimonials-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}

.testimonial-card {
  flex: 0 0 calc(100% / 3 - 16px);
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  font-size: 1rem;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

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

.carousel-btn:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: #fff;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--green-accent);
  width: 24px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--off-white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

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

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

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

.faq-question[aria-expanded="true"] {
  color: var(--green-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer.open {
  max-height: 400px;
}

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--off-white);
}

.section-bg-gradient-alt {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(76, 175, 80, 0.06), transparent 70%);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  border: 2px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.area-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(76, 175, 80, 0.25);
  transform: translateX(4px);
}

.area-card.home-base {
  border-color: rgba(76, 175, 80, 0.3);
  background: rgba(76, 175, 80, 0.04);
}

.area-dot {
  width: 10px;
  height: 10px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse-dot {
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
}

.area-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.area-card span {
  font-size: 0.78rem;
  color: var(--green-accent);
  font-weight: 500;
}

.areas-note {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 16px;
}

.areas-note a {
  color: var(--green-accent);
  font-weight: 600;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  margin-top: 12px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-detail-item:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(76, 175, 80, 0.25);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(27, 77, 27, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green-accent);
}

.detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  word-break: break-word;
}

.contact-reassurance {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.12);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  padding: 80px 24px;
}

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

.footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: #fff;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--green-light);
}

.footer-contact-col p {
  font-size: 0.87rem;
  margin-bottom: 8px;
}

.footer-contact-col a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-contact-col a:hover {
  color: var(--green-light);
}

.footer-hours {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-hours p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-policy-links a:hover {
  color: var(--green-light);
}

.footer-policy-links span {
  color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-stack {
    height: 360px;
  }

  .about-badge-float {
    right: 0;
  }

  .areas-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }

  /* Nav mobile */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100dvh;
    background: rgba(13, 31, 13, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  /* Nav logo mobile alignment */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .nav-logo-img {
    height: 38px;
    width: auto;
  }

  .nav-hamburger {
    align-self: center;
  }

  /* Hero */
  .hero {
    align-items: flex-start;
    padding-top: calc(env(safe-area-inset-top) + 100px);
    padding-bottom: 60px;
    height: auto;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 0 24px;
    margin-left: 0;
    margin-top: 0;
  }

  .hero-scroll-indicator {
    display: none;
  }

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

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  /* Stats bar */
  .stat-divider {
    display: none;
  }

  .stats-inner {
    gap: 0;
  }

  .stat-item {
    min-width: 50%;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 100%;
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About */
  .about-img-accent {
    display: none;
  }

  .about-img-stack {
    height: 280px;
  }

  .about-img-main {
    width: 100%;
  }

  .about-badge-float {
    display: none;
  }

  /* CTA strip */
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.6rem;
  }

  .stat-item {
    min-width: 100%;
  }
}