:root {
  --green: #2f6d33;
  --green-deep: #17371d;
  --green-soft: #4a9652;
  --gold: #d7b24b;
  --gold-soft: #f3dd97;
  --white: #ffffff;
  --ink: #10181d;
  --text: #29343d;
  --muted: #60707b;
  --surface: #f5f8f6;
  --surface-2: #eef3ee;
  --border: rgba(16, 24, 29, 0.08);
  --shadow: 0 22px 60px rgba(13, 22, 16, 0.18);
  --shadow-soft: 0 16px 40px rgba(13, 22, 16, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfcfb 0%, #f4f8f4 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2 { line-height: 1.03; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 800; }
p { line-height: 1.75; color: var(--muted); }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(215, 178, 75, 0.12);
  color: var(--green);
  border: 1px solid rgba(215, 178, 75, 0.35);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-soft) 100%);
  box-shadow: 0 18px 35px rgba(47, 109, 51, 0.22);
}
.btn-secondary {
  color: var(--green-deep);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(47,109,51,0.12);
  backdrop-filter: blur(18px);
}
.btn-light {
  background: #fff;
  color: var(--green);
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(16,24,29,0.06);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.brand strong { display: block; color: var(--green-deep); }
.brand span { display: block; font-size: .92rem; color: var(--muted); }
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.menu a { font-weight: 600; }
.desktop-cta { white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 15% 20%, rgba(215,178,75,.22), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(47,109,51,.12), transparent 25%),
    linear-gradient(180deg, #f8fbf8 0%, #eef5ef 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .25;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.hero-copy { max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(47,109,51,0.12);
  border-radius: 999px;
  color: var(--green);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.hero-copy p { font-size: 1.06rem; max-width: 600px; margin-top: 20px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-info-card {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(16,24,29,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.hero-info-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 1rem;
  line-height: 1.25;
}
.hero-info-card span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 7px;
  line-height: 1.45;
}
.hero-visual { display: grid; gap: 18px; }
.hero-slider-card {
  position: relative;
  padding: 16px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(16,24,29,0.06);
  border-radius: calc(var(--radius-xl) + 8px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-glow {
  position: absolute;
  inset: auto 10% -15% 10%;
  height: 120px;
  background: radial-gradient(circle, rgba(215,178,75,0.26) 0%, rgba(215,178,75,0.08) 45%, transparent 75%);
  filter: blur(26px);
  pointer-events: none;
}
.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #dbe6dd;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 1.1s ease, visibility .8s ease;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-caption-box {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.65) 100%);
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow-soft);
}
.caption-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,178,75,.12);
  color: var(--green);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero-caption-box h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.12;
}
.hero-caption-box p { margin-top: 12px; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(16,24,29,0.08);
  background: rgba(255,255,255,0.75);
  color: var(--green-deep);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.dots { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; }
.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(47,109,51,.18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.dot.active {
  background: linear-gradient(135deg, var(--green), var(--gold));
  transform: scale(1.25);
}

.value-strip { padding: 10px 0 30px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow-soft);
}
.value-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(215,178,75,.14);
  color: var(--green);
  font-weight: 800;
}
.value-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.15rem;
  margin: 16px 0 8px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.bullet-item {
  padding: 16px 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--green-deep);
}
.image-stack {
  position: relative;
  min-height: 620px;
}
.main-image {
  width: 82%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.floating-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 10px solid #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow-soft);
}
.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.service-content { padding: 24px; }
.service-content h3 { color: var(--green-deep); margin-bottom: 10px; }

.quote-band {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 55%, #3f8a48 100%);
}
.quote-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.quote-copy h2, .quote-copy p { color: #fff; }
.quote-copy p { color: rgba(255,255,255,0.82); margin-top: 18px; max-width: 650px; }
.quote-copy .btn { margin-top: 28px; }
.quote-panel {
  display: grid;
  gap: 16px;
}
.quote-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
}
.quote-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.quote-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-box {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow-soft);
}
.feature-box h3 { color: var(--green-deep); margin-bottom: 12px; }

.masonry-grid {
  columns: 3 280px;
  column-gap: 18px;
}
.masonry-grid img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  break-inside: avoid;
}

.budget {
  background: linear-gradient(180deg, #f3f7f3 0%, #edf4ee 100%);
}
.budget-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: start;
}
.budget-copy h2 { margin-bottom: 16px; }
.contact-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow-soft);
}
.contact-box strong {
  display: block;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.contact-box a {
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
}
.budget-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16,24,29,0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.input-group { display: grid; gap: 8px; }
.input-group label { font-weight: 700; color: var(--green-deep); }
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(16,24,29,0.1);
  background: #fff;
  outline: none;
}
.input-group textarea { resize: vertical; min-height: 130px; }
.input-group.full-width { grid-column: 1 / -1; }
.full-button { width: 100%; grid-column: 1 / -1; }

.footer {
  background: #121b15;
  color: rgba(255,255,255,.8);
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
.footer-brand strong, .footer h4 { color: #fff; }
.footer-brand span, .footer p, .footer a, .footer span { color: rgba(255,255,255,.76); }
.footer h4 { margin-bottom: 12px; }
.footer a, .footer span { display: block; margin-bottom: 8px; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 15px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #1bb154 0%, #0f8a3f 100%);
  box-shadow: 0 18px 36px rgba(15,138,63,.32);
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-columns,
  .quote-layout,
  .budget-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .feature-grid,
  .cards-grid,
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-info-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .desktop-cta { display: none; }
  .menu {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(16,24,29,0.06);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .section { padding: 78px 0; }
  .hero-slider { min-height: 440px; }
  .main-image { width: 100%; height: 460px; }
  .floating-image {
    position: relative;
    width: 72%;
    height: 250px;
    margin: -56px 0 0 auto;
  }
  .image-stack { min-height: auto; }
  .feature-grid,
  .cards-grid,
  .value-grid,
  .footer-grid,
  .bullet-grid,
  .budget-form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { padding-top: 32px; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 1.85rem; }
  .nav { min-height: 74px; }
  .brand img { width: 50px; height: 50px; }
  .hero-slider-card { padding: 10px; }
  .hero-slider { min-height: 360px; }
  .hero-caption-box, .feature-box, .value-card, .budget-form, .contact-box { padding: 20px; }
  .arrow { width: 46px; height: 46px; }
  .masonry-grid { columns: 1; }
  .floating-whatsapp {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
