:root {
  --bg: #ffffff;
  --mint-50: #e9fbcb;
  --mint-100: #d7f5ae;
  --mint-200: #c9f09c;
  --mint-300: #bde88f;
  --mint-400: #a7df72;
  --mint-500: #94d85c;
  --dark: #091512; /* main dark in hero */
  --dark-2: #0f211c; /* darker accent */
  --text: #0b1f1a; /* body text */
  --muted: #4b5b56; /* muted text */
  --ring: rgba(147, 197, 114, 0.35);
  --radius: 28px;
  --container: 1540px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}

/* TOP BAR */
.topbar {
  background: var(--mint-100);
  color: #173022;
  font-size: 14px;
  padding: 0.5rem 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4vw;
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.topbar .cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar svg {
  width: 16px;
  height: 16px;
}
.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* NAV */
.nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #dadada;
}
.nav .row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
}
.brand .mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
}
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}
.menu a {
  font-weight: 500;
  color: #32423c;
}
.menu .drop::after {
  content: "▾";
  font-size: 0.8em;
  margin-left: 6px;
}
.cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease-in-out;
}
.btn.primary {
  background: var(--mint-200);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px var(--ring);
}

/* HERO card */
.hero-wrap {
  padding: 36px 0 70px;
}
.hero {
  position: relative;
  background: radial-gradient(
    1200px 500px at 80% 40%,
    #112a24 0%,
    #0b1f1a 45%,
    #091512 70%
  );
  color: #e8f6ef;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 580px;
}
.hero .inner {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 20px;
}
.hero .col-left {
  padding: 80px 64px;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 10px;
  height: 10px;
  background: var(--mint-300);
  border-radius: 50%;
}
.title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.2;
  margin: 18px 0 18px;
}
.desc {
  color: #cfe6da;
  max-width: 640px;
  line-height: 1.7;
}
.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0 26px;
}
.btn.lg {
  padding: 14px 22px;
  font-size: 15px;
}
.btn.solid {
  background: var(--mint-200);
  color: #0d1e18;
  border-color: transparent;
}
.btn.solid:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: #e8f6ef;
  border-color: #355b51;
}
.btn.ghost:hover {
  background: #0f2621;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cfe6da;
  font-size: 14px;
}
.stars {
  display: inline-flex;
  gap: 4px;
}
.star {
  width: 16px;
  height: 16px;
  fill: #b6f377;
}

/* Doctor image + ornaments */
.hero .col-right {
  position: relative;
}
.doc-wrap {
  position: absolute;
  right: 30px;
  bottom: -150px;
  display: flex;
  align-items: flex-end;
}
.doc {
  height: 640px;
  width: auto;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.35));
}
.rings {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      200px 200px at 75% 42%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    radial-gradient(
      320px 320px at 75% 42%,
      rgba(255, 255, 255, 0.05),
      transparent 60%
    ),
    radial-gradient(
      460px 460px at 75% 42%,
      rgba(255, 255, 255, 0.035),
      transparent 60%
    );
  pointer-events: none;
}

/* Talk-to-doctors bubble */
.bubble {
  position: absolute;
  left: 56px;
  bottom: 120px;
  background: #c9f09c;
  color: #0b1a15;
  padding: 12px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -18px var(--ring);
}
.avatars {
  display: flex;
}
.avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #c9f09c;
  object-fit: cover;
  margin-left: -8px;
}
.avatars img:first-child {
  margin-left: 0;
}
.bubble small {
  font-weight: 600;
  white-space: nowrap;
}

/* Satisfied clients badge */
.badge {
  position: absolute;
  right: 40px;
  bottom: 60px;
  background: #c9f09c;
  color: #0b1a15;
  border-radius: 24px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -18px var(--ring);
}
.badge .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #9bd26a;
  display: grid;
  place-items: center;
}
.badge strong {
  font-size: 18px;
}
.badge span {
  display: block;
  font-size: 13px;
  color: #294137;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .doc {
    height: 560px;
  }
}
@media (max-width: 940px) {
  .menu {
    display: none;
  }
  .hero .inner {
    grid-template-columns: 1fr;
  }
  .hero .col-right {
    min-height: 520px;
  }
  .doc-wrap {
    right: 0;
    left: 0;
    justify-content: center;
  }
  .bubble {
    left: 24px;
    bottom: 180px;
  }
  .badge {
    right: 24px;
  }
}
@media (max-width: 640px) {
  .title {
    font-size: 40px;
  }

  .hero .col-left {
    padding: 56px 24px;
  }
  .topbar .row {
    flex-wrap: wrap;
  }
  .cta {
    display: none;
  }
}

/* ABOUT SECTION */
.about {
  padding: 90px 0 80px;
}
.about-head {
  text-align: center;
  max-width: var(--container);
  margin: 0 auto 34px;
}
.about .eyebrow {
  justify-content: center;
  color: black;
}
.about-title {
  font-weight: 400;
  max-width: 62rem;
  margin: 16px auto 10px;
}
.about-actions .btn {
  margin: 0 auto;
  margin-top: 10px;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.about-card {
  background: #f3f9ef; /* soft mint panel */
  border: 1px solid #eef2ec;
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
}
.about-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 14px 0 8px;
  color: var(--dark-2);
}
.about-card p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* Image shapes */
.shape {
  width: 150px;
  height: 150px;
  margin: 0 auto 14px;
  position: relative;
}
.shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* burst (star-like) */
.shape.burst img {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

/* flower (petal-like) */
.shape.flower img {
  clip-path: polygon(
    50% 8%,
    62% 22%,
    92% 22%,
    78% 38%,
    84% 64%,
    61% 54%,
    50% 92%,
    39% 54%,
    16% 64%,
    22% 38%,
    8% 22%,
    38% 22%
  );
}

/* organic blob */
.shape.blob img {
  border-radius: 54% 46% 58% 42% / 44% 58% 42% 56%;
  clip-path: inset(0 round 54% 46% 58% 42%);
}

/* Responsive */
@media (max-width: 1100px) {
  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .about {
    padding: 64px 0 56px;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
}

/* === OUR SERVICES === */
.services {
  padding: 88px 0 80px;
  background: #ffffff;
}
.services-head {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 30px;
  padding: 0 30px;
}
.services-title {
  margin-top: 14px;
}

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

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card .thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f9ef;
  border: 1px solid #e8efe5;
  box-shadow: 0 1px 0 #eef4ea inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  aspect-ratio: 4 / 3;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card .service-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #448f07;
  color: #ffff;
  font-weight: 700;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
}

.service-card:hover .thumb {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .services {
    padding: 68px 0 60px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* === APPOINTMENT === */
.appointment {
  padding: 86px 0 88px;
}
.appt-card {
  background: #dfeafe;
  border-radius: var(--radius);
  padding: 46px 56px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.appt-figure {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.appt-figure img {
  border-radius: 30px;
  z-index: 1;
  width: min(520px, 95%);
  height: auto;
  object-fit: contain;
  transform: translateY(16px);
}
.appt-title {
  margin: 10px 0 18px;
}

/* Form */
.appt-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 6px;
}
.appt-form .input {
  height: 56px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 1px 0 #e7eefc inset;
}
.appt-form .input:focus {
  box-shadow: 0 0 0 3px var(--ring);
}
/* date icon */
.appt-form .input.date {
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23535f6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 22px;
}
/* select arrow */
.appt-form .input.select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23535f6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
}
.btn.block {
  width: 100%;
  justify-content: center;
  padding: 14px 22px;
}
.appt-button {
  margin-top: 6px;
  border: none;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 10px 30px !important;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1, 1);
  white-space: nowrap;
  border: 0;
}

.appt-body-title .eyebrow {
  justify-content: start;
}

/* Responsive */
@media (max-width: 1100px) {
  .appt-card {
    grid-template-columns: 1fr;
    padding: 36px 26px;
  }
  .appt-figure {
    order: 2;
    min-height: 260px;
  }
  .appt-figure::before {
    left: 50%;
    transform: translateX(-50%);
    bottom: 4%;
    width: 440px;
    height: 440px;
  }
  .appt-figure img {
    transform: none;
    width: min(460px, 92%);
  }
  .appt-body {
    order: 1;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .appt-form {
    grid-template-columns: 1fr;
  }
}

/* === CONSULT STRIP === */
.consult-strip {
  margin-top: 40px;
}
.consult-strip .consult-inner {
  background: #d8f5a6;
  border-radius: 36px 36px 0 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.consult-title {
  font-size: 36px;
  font-family: "Playfair Display", serif;
  color: #0c1916;
}
.consult-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pill-dark {
  background: #0d1b18;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pill-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* === FOOTER === */
.site-footer {
  background: #081b1a;
  color: #e6f0ec;
  /* border-radius: 0 0 36px 36px; */
  padding: 56px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-name {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #d8f5a6;
}
.footer-title {
  color: #ffffff;
  margin: 18px 0 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.contact-item h4 {
  color: #c6d9d3;
  margin-bottom: 6px;
  font-size: 15px;
  text-transform: none;
}
.contact-item p {
  font-size: 18px;
  color: #ffffff;
}
.contact-item a {
  color: #ffffff;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}

.community-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #ffffff;
  margin: 10px 0 8px;
}
.community-desc {
  color: #c6d9d3;
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 12px;
}
.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bce59f;
  color: #bce59f;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social:hover {
  background: #bce59f;
  color: #0d1b18;
  transform: translateY(-2px);
}

.footer-sep {
  margin: 28px 0 18px;
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: #e6f0ec;
}
.footer-nav a {
  color: inherit;
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.copyright {
  color: #c6d9d3;
  text-align: right;
}

/* Responsive */
@media (max-width: 1100px) {
  .consult-title {
    font-size: 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .copyright {
    text-align: left;
  }
}
@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .consult-strip .consult-inner {
    padding: 22px 20px;
  }
}

.hero-eyebrow .eyebrow {
  color: white;
  justify-content: start;
}
