/* ===== Base ===== */
:root {
  --cream: #fbf6ec;
  --cream-2: #f3ecdb;
  --green-900: #1f3a2e;
  --green-700: #2f5d45;
  --green-600: #3f7a58;
  --green-500: #5c9a72;
  --green-100: #e3efdf;
  --gold: #d9a441;
  --gold-dark: #b9822c;
  --text: #2b2620;
  --text-soft: #6b6357;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(63, 122, 88, 0.12);
  --shadow-sm: 0 4px 14px rgba(63, 122, 88, 0.10);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Comfortaa', cursive;
  color: var(--green-900);
  line-height: 1.25;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

ul { list-style: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn--ghost:hover { background: var(--green-100); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  background: var(--green-900);
  color: var(--cream-2);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar__phone { color: var(--gold); font-weight: 700; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(63, 122, 88, 0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-900);
}
.logo__icon { font-size: 1.6rem; }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--green-700); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--green-900);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--green-600); }
.hero__lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust strong { font-family: 'Comfortaa', cursive; font-size: 1.5rem; color: var(--green-700); }
.hero__trust span { color: var(--text-soft); font-size: 0.85rem; }

.hero__art {
  position: relative;
  height: 420px;
}
.hero__blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--green-100), transparent 60%),
              radial-gradient(circle at 70% 70%, #fbe8c6, transparent 55%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  background-color: var(--green-100);
}
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-800, var(--green-700));
}
.hero__card--1 { top: 12%; left: 4%; }
.hero__card--2 { top: 46%; right: 0%; }
.hero__card--3 { bottom: 8%; left: 18%; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section--soft { background: var(--cream-2); }
.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.section__head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.section__head p { color: var(--text-soft); }

/* ===== Grids & Cards ===== */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.card--service .card__icon {
  font-size: 1.9rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-100);
  border-radius: 16px;
  margin-bottom: 18px;
}
.card--service h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card--service p { color: var(--text-soft); font-size: 0.95rem; }

.card--doctor { text-align: center; }
.doctor__avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.card--doctor h3 { font-size: 1.05rem; margin-bottom: 4px; }
.doctor__role {
  display: block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.card--doctor p { color: var(--text-soft); font-size: 0.88rem; }

.card--review .review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.card--review p { color: var(--text); font-style: italic; margin-bottom: 16px; }
.review__author { font-weight: 700; color: var(--green-700); }

/* ===== Why us ===== */
.grid--why { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
.why__list { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.why__item { display: flex; gap: 18px; align-items: flex-start; }
.why__num {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.why__item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why__item p { color: var(--text-soft); font-size: 0.92rem; }

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card__num {
  font-family: 'Comfortaa', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
}
.stat-card__label { color: var(--text-soft); font-size: 0.85rem; margin-top: 6px; }

/* ===== Prices ===== */
.price-table {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.98rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { font-weight: 700; color: var(--green-700); }
.price-row--head {
  background: var(--green-700);
  color: var(--white);
  font-weight: 800;
}
.price-row--head span:last-child { color: var(--white); }

/* ===== Booking / Contact ===== */
.grid--contact { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
.booking-form-wrap h2 { margin-bottom: 10px; }
.booking-form-wrap > p { color: var(--text-soft); margin-bottom: 30px; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-800, var(--green-700));
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1.5px solid #e4dcc9;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--green-500);
}
.form-note { font-size: 0.9rem; font-weight: 700; color: var(--green-700); min-height: 1.2em; }

.contact-info h3 { margin-bottom: 24px; font-size: 1.3rem; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list li span { font-size: 1.3rem; }
.contact-list li strong { color: var(--green-900); }
.contact-list li a:hover { color: var(--green-700); }

.socials { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.socials a {
  background: var(--white);
  border: 1.5px solid var(--green-500);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}
.socials a:hover { background: var(--green-600); color: var(--white); }

.map-placeholder {
  background: var(--green-100);
  border-radius: var(--radius);
  padding: 50px 20px;
  text-align: center;
  color: var(--green-700);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 1.6rem;
}
.map-placeholder span { font-size: 0.9rem; color: var(--text-soft); font-weight: 600; }

/* ===== Footer ===== */
.footer { background: var(--green-900); color: var(--cream-2); padding: 36px 0; margin-top: 40px; }
.footer .logo { color: var(--white); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__inner p { font-size: 0.85rem; color: #b9c9bd; }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.88rem; color: #cfe0d3; }
.footer__nav a:hover { color: var(--gold); }

/* ===== Floating call button ===== */
.float-call {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(217, 164, 65, 0.5);
  z-index: 200;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(217, 164, 65, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 164, 65, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--why, .grid--contact { grid-template-columns: 1fr; }
  .why__stats { max-width: 460px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 320px; order: -1; }
}

@media (max-width: 760px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 150;
  }
  .nav.is-open { right: 0; }
  .header__cta { display: none; }
  .burger { display: flex; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Nav overlay for mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31, 58, 46, 0.4);
  z-index: 140;
}
.nav-overlay.is-open { display: block; }
