:root {
  --bg: #f6f8f2;
  --bg-2: #eef5ec;
  --paper: #ffffff;
  --text: #16271d;
  --muted: #617067;
  --primary: #5fa463;
  --primary-2: #3e7544;
  --primary-3: #1f5b35;
  --soft: #eaf4e7;
  --cream: #fbfaf5;
  --border: #dfe9dc;
  --shadow: 0 24px 70px rgba(22, 39, 29, 0.10);
  --shadow-soft: 0 14px 35px rgba(22, 39, 29, 0.08);
  --radius: 28px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(95, 164, 99, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfdf9 0%, var(--bg) 100%);
  line-height: 1.65;
}

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

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: var(--primary-3);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: var(--primary-3);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 9px 0;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 39, 29, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 270px;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.brand-name {
  font-size: 22px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--primary-3);
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 1.1px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-weight: 800;
  font-size: 15px;
  color: #213428;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-2);
}

.btn,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-btn,
.btn-primary {
  background: var(--primary);
  color: #fff !important;
}

.nav-btn:hover,
.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

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

.btn-light:hover {
  background: #f5f5ef;
  transform: translateY(-1px);
}

.hero {
  padding: 76px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 244, 231, 0.92);
  border: 1px solid var(--border);
  color: var(--primary-2);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -1.9px;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}

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

.trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
}

.trust-pills li {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 850;
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.photo-card {
  background: linear-gradient(180deg, #fff 0%, #f3f8ef 100%);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.photo-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(95, 164, 99, 0.15);
  border-radius: 50%;
  right: -40px;
  top: -42px;
}

.profile-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 26px;
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  left: -16px;
  bottom: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  max-width: 285px;
}

.floating-card strong {
  display: block;
  color: var(--primary-3);
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(22, 39, 29, 0.04);
  border-bottom: 1px solid rgba(22, 39, 29, 0.04);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.section-kicker {
  color: var(--primary-2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.about-mini {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.about-logo {
  width: 126px;
  height: 126px;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
}

.about-mini h3 {
  font-size: 28px;
  letter-spacing: -0.7px;
  margin-bottom: 8px;
}

.about-mini p,
.about-content p,
.text-block p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-content strong {
  color: var(--text);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 18px;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

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

.process-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.process-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 950;
  margin-bottom: 14px;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-3), var(--primary));
  color: #fff;
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  right: -70px;
  top: -90px;
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
}

.cta-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid #ebf0e9;
}

.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-weight: 900;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 17px;
  font-weight: 900;
}

.contact-value a:hover,
.text-link:hover {
  color: var(--primary-2);
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 22px;
}

.page-hero {
  padding: 72px 0 46px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 34px;
  align-items: center;
}

.page-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.page-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-card li {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  background: var(--cream);
  font-weight: 850;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.text-block h2,
.faq h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.text-block h3 {
  font-size: 23px;
  margin: 28px 0 8px;
}

.text-block ul {
  margin: 14px 0 14px 20px;
  color: var(--muted);
}

.side-sticky {
  position: sticky;
  top: 118px;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}

.legal-page h2 {
  margin: 26px 0 8px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  margin-left: 22px;
  margin-bottom: 14px;
}

.site-footer {
  background: #17281e;
  color: rgba(255, 255, 255, 0.86);
  padding: 32px 0;
  margin-top: 50px;
}

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

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25D366;
  color: #fff;
  min-width: 56px;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1020px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .page-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .side-sticky {
    position: static;
  }

  .floating-card {
    left: 18px;
  }
}

@media (max-width: 760px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

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

  .nav-links {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }

  .nav-links li {
    display: none;
  }

  .nav-links li:last-child {
    display: block;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 19px;
  }

  .hero,
  .section,
  .page-hero {
    padding: 52px 0;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: -1.1px;
  }

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

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .service-card,
  .cta-box,
  .page-card {
    padding: 22px;
    border-radius: 22px;
  }

  .photo-card {
    border-radius: 24px;
    padding: 12px;
  }

  .profile-main {
    border-radius: 18px;
  }

  .floating-card {
    position: static;
    margin: 14px 0 0;
    max-width: none;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}


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

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 164, 99, 0.45);
}

.location-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.location-card p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.text-link {
  color: var(--primary-2);
  font-weight: 950;
}

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--primary-2);
}

.nearby-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
}

.nearby-list li a {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 900;
}

.nearby-list li a:hover {
  color: var(--primary-2);
  border-color: rgba(95, 164, 99, 0.45);
}

.nav-links a[aria-current="page"] {
  color: var(--primary-2);
}

@media (max-width: 1020px) {
  .location-links,
  .nearby-list {
    grid-template-columns: 1fr;
  }
}
