:root {
  --green: #39c100;
  --green-dark: #239500;
  --text: #2d2d2d;
  --muted: #6d6d6d;
  --bg: #efefef;
  --white: #ffffff;
  --border: #d9d9d9;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 26px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #f4f4f4;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; }

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

/* TOPBAR */
.topbar {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.topbar-wrap {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-link { justify-self: start; }
.topbar-wrap > .topbar-item:nth-child(2) { justify-self: center; }
.topbar-whatsapp { justify-self: end; }

.topbar-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.phone-icon {
  width: 22px;
  height: 22px;
}

.topbar-location {
  height: 20px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.location-icon {
  height: 20px;
  width: auto;
  max-width: 120px;
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
}

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}

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

.logo { height: 42px; width: auto; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus { color: var(--green-dark); }

.menu-toggle {
  display: none;
  border: none;
  background: var(--green);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.35rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0.38)),
    radial-gradient(circle at 15% 20%, rgba(57,193,0,0.28), transparent 24%),
    linear-gradient(135deg, #2c2c2c 0%, #474747 40%, #1f1f1f 100%);
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.3));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
  padding: 72px 0;
}

.badge,
.section-kicker {
  display: inline-block;
  color: var(--green);
  background: rgba(255,255,255,0.96);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-content h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p,
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn.small { padding: 12px 22px; }

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.65);
  color: white;
  background: transparent;
}

.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(7px);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 158px;
}

.feature-icon {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.feature-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

.highlights,
.reviews,
.newsletter,
.faq-section,
.services-grid-section,
.form-strip,
.page-hero {
  padding: 56px 0;
}

.highlights { background: #ececec; }

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

.highlight-item {
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
}

.highlight-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  flex-shrink: 0;
}

.highlight-doctor {
  width: 74px !important;
  height: 74px !important;
}

.highlight-item h3 {
  color: var(--green-dark);
  margin-bottom: 4px;
}

.highlight-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.doctor-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(57,193,0,.12);
  font-size: 2.1rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

.reviews { background: var(--green); }

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.reviews .section-kicker { margin-bottom: 8px; }

.reviews h2 {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: white;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.slider-btn img { width: 28px; }

.review-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  padding: 28px;
  border-radius: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.google-icon { width: 32px; }

.review-card h3 { font-size: 1.06rem; }

.review-card span,
.review-card small { color: var(--muted); }

.review-card p { margin-bottom: 20px; }

.newsletter { background: #e8e8e8; }

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

.newsletter-wrap p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
}

.newsletter-form,
.quick-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-form input,
.quick-form input {
  min-width: 290px;
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  outline: none;
  background: white;
}

.section-head { margin-bottom: 30px; }
.section-head.center { text-align: center; }

.section-head h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.15;
}

.faq-section { background: #f1f1f1; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}

.faq-card,
.service-card {
  background: white;
  border: 3px solid var(--green);
  border-radius: 30px;
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

.faq-card h3,
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.faq-card p,
.service-card p { color: #535353; }

.page-hero {
  background: linear-gradient(180deg, rgba(57,193,0,.94), rgba(35,149,0,.94));
  color: white;
}

.page-hero .section-kicker {
  background: rgba(255,255,255,.2);
  color: white;
}

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

.form-strip {
  background: #efefef;
  padding-top: 12px;
}

.quick-form {
  background: var(--green);
  border-radius: 40px;
  padding: 26px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-form input { min-width: 320px; }

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

.center-card { grid-column: 2 / span 1; }

.footer {
  background: #e0e0e0;
  padding: 28px 0 16px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-badges span {
  border: 1px solid #7b7b7b;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  background: #f5f5f5;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-bottom p:last-child {
  max-width: 360px;
  text-align: right;
}

@media (max-width: 1024px) {
  .hero-grid,
  .highlight-grid,
  .review-slider,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid { align-items: stretch; }
  .hero-content { grid-column: 1 / -1; }
  .hero-cards { grid-column: 1 / -1; }
  .center-card { grid-column: auto; }
}

@media (max-width: 768px) {
  .newsletter-wrap,
  .footer-bottom,
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-wrap {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "phone whatsapp"
      "location location";
    row-gap: 8px;
    padding: 10px 0;
  }

  .topbar-link {
    grid-area: phone;
    justify-self: start;
  }

  .topbar-whatsapp {
    grid-area: whatsapp;
    justify-self: end;
    align-self: center;
    display: inline-flex;
  }

  .topbar-wrap > .topbar-item:nth-child(2) {
    grid-area: location;
    justify-self: center;
  }

  .topbar-location,
  .location-icon {
    height: 14px;
    max-width: 90px;
    width: auto;
  }

  .nav-wrap { min-height: 74px; }
  .menu-toggle { display: inline-grid; place-items: center; }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    display: none;
  }

  .nav-menu.open { display: flex; }

  .hero-grid,
  .hero-cards,
  .highlight-grid,
  .review-slider,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .highlight-item,
  .faq-card,
  .service-card,
  .review-card {
    border-radius: 22px;
  }

  .newsletter-form,
  .quick-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .quick-form input,
  .newsletter-form button,
  .quick-form button {
    width: 100%;
    min-width: 0;
  }

  .hero { min-height: auto; }
  .hero-grid { padding: 54px 0; }
  .footer-bottom { align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 20px, 1180px); }

  .topbar {
    font-size: 0.85rem;
  }

  .topbar-wrap {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "phone whatsapp"
      "location location";
    justify-items: stretch;
    text-align: initial;
  }

  .topbar-wrap > .topbar-item:nth-child(2) {
    justify-self: center;
  }

  .feature-card {
    flex-direction: column;
    min-height: 0;
  }

  .feature-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
  }

  .logo { height: 36px; }
  .btn { width: 100%; }

  .hero-content p,
  .page-hero p,
  .faq-card p,
  .service-card p {
    font-size: 0.95rem;
  }

  .quick-form { padding: 18px; }

  .faq-card,
  .service-card,
  .review-card {
    padding: 20px;
  }
}
.form-message {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}