﻿:root {
  --bg: #f4f7f2;
  --surface: #ffffff;
  --brand: #0f6b3f;
  --brand-dark: #0a4a2b;
  --accent: #f28b30;
  --text: #182217;
  --muted: #5e6b5d;
  --shadow: 0 12px 30px rgba(15, 107, 63, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #dcefd7 0%, var(--bg) 45%, #edf3ea 100%);
  line-height: 1.6;
}

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

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--brand-dark);
  color: #eaf7ef;
  font-size: 0.9rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #f28b30;
  background: #f28b30;
  color: #fff;
  font-weight: 600;
}

.topbar-btn-wa {
  background: #25d366;
  border-color: #25d366;
  color: #08301a;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav li {
  position: relative;
}

nav a {
  font-weight: 500;
  color: #1e3120;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 260px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: #edf7ef;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #cfe0cf;
  background: #fff;
  color: var(--brand-dark);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.btn,
button {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: #0d5a36;
}

.btn-alt {
  background: var(--accent);
  color: #fff;
}

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

.btn-wa {
  background: #25d366;
  color: #08301a;
  border: 2px solid #25d366;
}

.btn-wa:hover {
  background: #1fb95a;
  border-color: #1fb95a;
}

.hero {
  padding: 44px 0 26px;
}

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

.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.2;
  margin: 0 0 14px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 370px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(16, 33, 22, 0.7);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}

section {
  padding: 34px 0;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.section-intro {
  margin-top: 0;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero .actions {
  margin-top: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.grid-4 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.service-card {
  display: block;
}

.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 12px;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ecf7ef;
  color: var(--brand-dark);
  font-size: 1.95rem;
}

.cta-band {
  margin: 24px 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0f6b3f 0%, #184f34 100%);
  color: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cta-band .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-band .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.steps {
  counter-reset: steps;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e9f6ec;
  color: var(--brand-dark);
  font-size: 1.7rem;
}

.steps .card h3::before {
  counter-increment: steps;
  content: "Step " counter(steps) " - ";
  color: var(--brand);
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
}

.testimonial-card {
  background: #f7fbf7;
  border: 1px solid #dbe8db;
  border-radius: 14px;
  padding: 20px;
}

.testimonial-rating {
  margin: 0 0 8px;
  color: #f28b30;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.testimonial-text {
  margin: 0;
  color: #304033;
}

.testimonial-author {
  margin: 12px 0 0;
  font-weight: 600;
  color: var(--brand-dark);
}

form {
  display: grid;
  gap: 10px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d3dfd0;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

textarea {
  min-height: 100px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq details {
  background: #fff;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

footer {
  background: #102117;
  color: #e8f4ed;
  margin-top: 26px;
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 20px;
}

footer a {
  color: #d7efe1;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.inner-hero {
  padding: 38px 0;
}

.inner-hero .card {
  background: linear-gradient(145deg, #eff8f0 0%, #ffffff 100%);
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    order: 2;
  }

  .navbar nav {
    order: 3;
    width: 100%;
    display: none;
  }

  .navbar.nav-open nav {
    display: block;
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  nav li,
  nav a {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 4px 0 0 10px;
    border-radius: 0;
    margin-top: 4px;
    border-left: 2px solid #dce9dc;
  }

  .dropdown-menu a {
    padding: 5px 10px;
  }

  .navbar > .btn.btn-primary {
    order: 4;
    width: 100%;
    display: none;
  }

  .navbar.nav-open > .btn.btn-primary {
    display: inline-flex;
    margin-top: 10px;
  }

  .hero-grid,
  .two-col,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero .actions .btn {
    width: 100%;
  }

  .hero-slider {
    min-height: 280px;
  }
}
