:root {
  --bg-soft: #eef5ef;
  --bg-white: #fbfcfb;
  --header-bg: rgba(251, 252, 251, 0.95);
  --text-dark: #082916;
  --text-body: #53675c;
  --green-main: #058337;
  --green-main-hover: #046d2f;
  --green-light: #dfeae1;
  --green-chip: #d9e8db;
  --green-strong: #006d2f;
  --red-main: #e1132f;
  --red-hover: #c80f27;
  --red-soft: #f7d9dc;
  --card-white: #fbfafb;
  --line-soft: #d9e5db;
  --footer-green: #00691f;
  --shadow-soft: 0 10px 30px rgba(5, 42, 20, 0.06);
  --shadow-card: 0 18px 50px rgba(5, 42, 20, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1120px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #dfe8e0;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  background: white;
  border-radius: 50%;

}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--green-strong);
}

.brand-text span {
  margin-top: 7px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: #627368;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  color: #33483c;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-wide {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
}

.btn-light {
  background: #ffffff;
  color: #24382e;
  border: 1px solid #d5e0d7;
}

.btn-green {
  background: var(--green-main);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-main-hover);
}

.btn-red {
  background: var(--red-main);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-hover);
}

.btn-white {
  background: #ffffff;
  color: var(--green-main);
}

.btn-white2 {
  background: #d70808;
  color: #00691f;
}

.btn-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #d7e2d8;
  background: white;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  margin: 4px auto;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 0 24px 18px;
  background: var(--header-bg);
  border-bottom: 1px solid #dfe8e0;
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a:not(.btn) {
  padding: 10px 0;
}

.full {
  width: 100%;
}

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

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

.hero {
  padding: 52px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-label,
.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--green-chip);
  color: var(--green-main);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6858e;
}

.hero h1,
.section-head h2,
.about-copy h2,
.cta-box h2 {
  margin: 18px 0 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--text-dark);
}

.hero h1 {
  font-size: clamp(3rem, 5.3vw, 5.2rem);
  max-width: 10.3ch;
}

.hero h1 span,
.about-copy h2 span {
  color: var(--green-main);
}

.hero-text,
.section-head p,
.about-copy p,
.team-content p,
.location-card p,
.cta-box p,
.service-card p,
.footer-col p,
.footer-brand p {
  color: var(--text-body);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
  color: #476055;
  font-size: 0.98rem;
}

.hero-image-card {
  position: relative;
  border-radius: 34px;
  overflow: visible;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.top-card {
  top: 32px;
  left: -24px;
}

.bottom-card {
  right: -18px;
  bottom: 42px;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ebf5ee;
  color: var(--green-main);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.floating-icon.red {
  background: #fde8ea;
  color: var(--red-main);
}

.floating-card small {
  display: block;
  color: #7b8a80;
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.floating-card strong {
  display: block;
  color: #27382f;
  font-size: 1rem;
}

.about,
.services,
.professionals,
.location,
.cta {
  padding: 88px 0;
}

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

.about-image-card {
  position: relative;
}

.about-image-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
}

.about-stat {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 214px;
  min-height: 122px;
  background: var(--green-main);
  color: white;
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.about-stat strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.about-stat span {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.about-copy h2 {
  font-size: clamp(2.6rem, 4.1vw, 4.5rem);
  max-width: 11ch;
}

.about-copy p {
  margin: 22px 0 0;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 28px;
}

.check-item {
  position: relative;
  padding-left: 34px;
  color: #30453a;
  font-size: 1rem;
  line-height: 1.55;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 2px solid #39a864;
  color: #118b3e;
  border-radius: 50%;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.section-head {
  margin: 0 auto 42px;
}

.section-head.centered {
  text-align: center;
  max-width: 820px;
}

.section-head h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head p {
  max-width: 740px;
  margin: 18px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fbf9fa;
  border: 1px solid #edf2ee;
  border-radius: 30px;
  padding: 28px 28px 26px;
  min-height: 206px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6efe7;
  color: var(--green-main);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.team-card {
  background: transparent;
}

.team-image-wrap {
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}

.team-image-wrap img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.team-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 76, 33, 0.72), rgba(0, 0, 0, 0.06));
}

.team-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5fbf6;
  color: #178f43;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.86rem;
}

.team-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: white;
}

.team-overlay span {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 8px;
}

.team-overlay h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.team-content {
  background: transparent;
  padding: 20px 18px 0;
}

.team-content p {
  margin: 0 0 14px;
  font-size: 1rem;
}

.team-content a {
  color: #13863b;
  font-weight: 700;
}

.location-grid {
  align-items: stretch;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 448px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.location-card {
  background: #fbfafb;
  border: 1px solid #edf2ee;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.address-top {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.address-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e4efe6;
  color: var(--green-main);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}

.address-top h3 {
  margin: 4px 0 10px;
  font-size: 1.4rem;
}

.address-top p {
  margin: 4px 0;
}

.contact-box {
  min-height: 58px;
  border: 1px solid #dbe5dc;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-box span {
  color: #71847a;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.contact-box a {
  font-weight: 700;
  color: #20352a;
}

.cta-box {
  background: linear-gradient(180deg, #058337, #04752f);
  color: white;
  border-radius: 38px;
  padding: 60px 32px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #ecfff2;
}

.cta-box h2 {
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  color: white;
  margin-top: 22px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin: 18px auto 0;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.site-footer {
  background: var(--footer-green);
  color: white;
  padding: 58px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-text strong,
.footer-brand-text span,
.site-footer h4,
.site-footer a,
.site-footer span,
.site-footer p {
  color: white;
}

.footer-brand-text span {
  opacity: 0.82;
}

.footer-brand p,
.footer-col p,
.footer-col span,
.footer-col a {
  line-height: 1.75;
  opacity: 0.95;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-btn {
  align-self: flex-start;
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #01853a;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(2, 109, 45, 0.3);
  z-index: 1001;
  border: 4px solid #e8f1e9;
  transition: transform 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  background: #017532;
}

.floating-whatsapp i {
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp i {
    font-size: 1.8rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {

  .hero-grid,
  .about-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1,
  .about-copy h2 {
    max-width: none;
  }

  .top-card {
    left: 18px;
  }

  .bottom-card {
    right: 18px;
  }

  .about-stat {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 860px) {

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .services-grid,
  .team-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0 64px;
  }

  .about,
  .services,
  .professionals,
  .location,
  .cta {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .section-head h2,
  .about-copy h2,
  .cta-box h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .hero-features {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
    min-width: auto;
  }

  .hero-image-card {
    display: flex;
    flex-direction: column;
  }

  .about-stat {
    position: static;
    margin-top: 14px;
    width: 100%;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

.carousel-card {
  position: relative;
  overflow: visible;
}

.about-carousel {
  position: relative;
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #f4f7f4;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.72;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-main);
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(5, 131, 55, 0.28);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dots .dot.active {
  background: var(--green-main);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-dots {
    bottom: 12px;
    gap: 6px;
    padding: 7px 10px;
  }

  .carousel-dots .dot {
    width: 8px;
    height: 8px;
  }
}

.services-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.service-highlight {
  background: linear-gradient(135deg, #058337, #04752f);
  color: white;
  border-radius: 30px;
  padding: 28px 30px;
  margin: 0 auto 28px;
  max-width: 900px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.service-highlight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.service-highlight h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.service-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.team-grid-detailed {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-grid-detailed .team-card {
  background: #ffffff;
  border: 1px solid #edf2ee;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.team-grid-detailed .team-image-wrap {
  border-radius: 0;
}

.team-grid-detailed .team-image-wrap img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.team-grid-detailed .team-content {
  padding: 22px 20px 24px;
  background: #ffffff;
}

.team-grid-detailed .team-content p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-body);
}

.team-grid-detailed .team-content p strong {
  color: var(--text-dark);
}

@media (max-width: 1100px) {

  .services-grid-large,
  .team-grid-detailed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {

  .services-grid-large,
  .team-grid-detailed {
    grid-template-columns: 1fr;
  }

  .service-highlight {
    padding: 24px 18px;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: white;
  opacity: 0.95;
  line-height: 1.6;
}

.footer-contact-item:hover {
  opacity: 1;
}

.footer-contact-icon {
  width: 22px;
  min-width: 22px;
  display: inline-flex;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 2px;
}