/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --green-dark: #1e3a1e;
  --green-primary: #2d5a35;
  --green-mid: #4a7a4a;
  --green-light: #6a9a5a;
  --green-muted: #7a9a6a;
  --gold: #d4a04a;
  --gold-light: #f0d8a8;
  --cream: #faf7f2;
  --text: #1e2a1e;
  --text-light: #4a5a4a;
  --bg-alt: #f4f1eb;
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e8e4de;
}
.nav-logo { height: 70px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95em; color: var(--text-light); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green-primary); }
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95em; transition: all 0.25s; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-primary:hover { background: #c0900a; color: #fff; }
.btn-outline { border: 2px solid var(--green-primary); color: var(--green-primary); background: transparent; }
.btn-outline:hover { background: var(--green-primary); color: #fff; }
.btn-dark { background: var(--green-dark); color: #fff; }
.btn-dark:hover { background: #152e15; }
.btn-white { background: #fff; color: var(--green-primary); }
.btn-white:hover { background: var(--cream); }
.btn-lg { padding: 16px 36px; font-size: 1.05em; }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: #1a1a1a; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}
.hero-subtitle { font-size: 1.1em; text-transform: uppercase; letter-spacing: 2px; opacity: 0.85; margin-bottom: 12px; font-weight: 500; }
.hero h1 { font-size: 5.5em; font-weight: 600; margin-bottom: 20px; line-height: 1.05; letter-spacing: 0.12em; text-transform: uppercase; transform: scaleY(1.15); }
.hero p { font-size: 1.2em; margin-bottom: 8px; opacity: 0.92; }
.hero-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--green-dark); color: #fff; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 2em; font-weight: 700; text-align: center; margin-bottom: 48px; }
.section-dark .section-title { color: #fff; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.service-icon { font-size: 2.4em; margin-bottom: 16px; }
.service-card h3 { font-size: 1.25em; margin-bottom: 12px; color: #1a1a1a; }
.service-card p { color: #666; font-size: 0.98em; line-height: 1.65; }
.section-alt .service-card { background: #fff; }
.services-cta { text-align: center; margin-top: 36px; }

/* ===== WHY CHOOSE ===== */
.why-list {
  max-width: 600px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #3a5a3a;
  font-size: 1.12em;
}
.why-item:last-child { border-bottom: none; }
.why-check { color: var(--gold); font-size: 1.4em; flex-shrink: 0; }

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.location-info h3 { font-size: 1.3em; margin-bottom: 12px; }
.location-info p { color: #555; font-size: 1.05em; line-height: 1.8; margin-bottom: 20px; }
.map-container { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.map-container iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #fff;
}
.cta h2 { font-size: 2.2em; margin-bottom: 28px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== SERVICES PAGE ===== */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 48px;
  align-items: start;
}
.services-image { border-radius: 12px; overflow: hidden; }
.services-img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.sp-item {
  margin: 0 0 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}
.sp-item:last-child { border-bottom: none; margin-bottom: 0; }
.sp-item h2 { font-size: 1.6em; margin-bottom: 12px; }
.sp-item p { color: #555; font-size: 1.05em; line-height: 1.7; margin-bottom: 8px; }
.sp-item ul { padding-left: 20px; list-style: disc; color: #555; line-height: 2; margin-bottom: 8px; }
.sp-item .btn { margin-top: 16px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: #e8e4df;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1em;
}
.about-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
}
.about-bio p { color: #555; font-size: 1.05em; line-height: 1.8; margin-bottom: 16px; }
.about-bio strong { color: #1a1a1a; }
.doctor-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 80px auto;
  width: 60%;
}

/* ===== BOOK ===== */
.book-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.book-content p { font-size: 1.1em; color: #555; margin-bottom: 28px; }
.book-divider { margin-top: 40px; padding-top: 32px; border-top: 1px solid #e5e5e5; }
.book-divider a { color: #1a1a1a; font-weight: 700; font-size: 1.3em; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 { font-size: 1.3em; margin-bottom: 12px; color: #1a1a1a; }
.contact-info p { color: #555; font-size: 1.05em; line-height: 1.8; margin-bottom: 20px; }
.contact-info a { color: var(--green-primary); font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 16px 10px 0; font-size: 1em; color: #555; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; padding-right: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-dark);
  color: #b0c0a8;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9em;
}
.footer a { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 12px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid #eee; gap: 16px; }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2em; }
  .hero p { font-size: 1em; }
  .location-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 250px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .services-image { position: static; max-width: 300px; margin: 0 auto; order: -1; }
}
