/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --green-pale:   #D8F3DC;
  --cream:        #FFF8F0;
  --cream-dark:   #F5ECD8;
  --gold:         #C9882A;
  --gold-light:   #E6B05E;
  --text-dark:    #1A1A1A;
  --text-mid:     #3D3D3D;
  --text-light:   #6B7280;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(27,67,50,0.08);
  --shadow-md:    0 8px 32px rgba(27,67,50,0.14);
  --shadow-lg:    0 20px 60px rgba(27,67,50,0.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,106,79,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,136,42,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,136,42,0.45);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 10px 24px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: 600;
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--green-light); }
/* Fix mobile CTA button contrast */
.mobile-nav .btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: #ffffff !important;
  font-size: 1rem;
  padding: 14px 36px;
}
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green-dark);
  background: none; border: none;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_banner.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,248,240,0.85) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(201,136,42,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(27,67,50,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 1;
  transform: none;
}
.hero-title span { color: var(--gold); font-style: italic; }
/* Fade-in hero elements via class toggled by JS */
.hero-content.loaded .hero-badge  { animation: fadeSlideDown 0.8s ease forwards; }
.hero-content.loaded .hero-title   { animation: fadeSlideDown 0.9s 0.1s ease both; }
.hero-content.loaded .hero-tagline { animation: fadeSlideDown 1.0s 0.2s ease both; }
.hero-content.loaded .hero-desc    { animation: fadeSlideDown 1.1s 0.3s ease both; }
.hero-content.loaded .hero-btns    { animation: fadeSlideDown 1.2s 0.4s ease both; }
.hero-content.loaded .hero-stats   { animation: fadeSlideDown 1.3s 0.5s ease both; }
.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-btns .btn-outline { color: var(--green-dark); border-color: var(--green-dark); }
.hero-btns .btn-outline:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-mid); letter-spacing: 0.05em; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--green-dark), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ABOUT ===== */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-leaf-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.about-leaf-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.about-leaf-badge .badge-text {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.about-leaf {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text .section-subtitle { max-width: 100%; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.about-feature:hover { background: var(--green-pale); transform: translateX(4px); }
.about-feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  font-family: 'Inter', sans-serif;
  margin-bottom: 2px;
}
.about-feature-text p { font-size: 0.85rem; color: var(--text-light); }

/* ===== DOCTOR ===== */
#doctor {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}
#doctor::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
#doctor::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(201,136,42,0.08);
  border-radius: 50%;
}
.doctor-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.doctor-photo-wrap { position: relative; }
.doctor-photo-ring {
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 4px solid rgba(201,136,42,0.4);
  padding: 10px;
  margin: 0 auto;
}
.doctor-photo {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-pale);
  box-shadow: var(--shadow-lg);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-qual-badge {
  position: absolute;
  bottom: 8px; right: 0;
  background: var(--gold);
  color: white;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.doctor-text .section-label { color: var(--gold-light); }
.doctor-text .section-title { color: var(--white); }
.doctor-name-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.doctor-bio {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 28px;
}
.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.doctor-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== SERVICES ===== */
#services {
  padding: 100px 0;
  background: var(--cream);
}
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== WHY HOMEOPATHY ===== */
#why {
  padding: 100px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.why-item-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
}
.why-item-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.why-image-side {
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-image-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
}
.why-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.9;
  border-left: 3px solid var(--green-light);
  padding-left: 16px;
}
.why-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.why-pill {
  background: var(--white);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.2);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-track-wrap { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 280px;
  box-sizing: border-box;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(82,183,136,0.08);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author-name { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.testimonial-author-loc { font-size: 0.78rem; color: var(--text-light); }
.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green-mid);
  background: transparent;
  color: var(--green-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.carousel-dots { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(45,106,79,0.25);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active { background: var(--green-mid); width: 24px; border-radius: 4px; }

/* ===== APPOINTMENT ===== */
#appointment {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0e2a1c 100%);
  position: relative;
  overflow: hidden;
}
#appointment::before {
  content: '';
  position: absolute;
  top: -120px; right: 10%;
  width: 350px; height: 350px;
  background: rgba(82,183,136,0.05);
  border-radius: 50%;
}
.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.appointment-info .section-label { color: var(--gold-light); }
.appointment-info .section-title { color: var(--white); }
.appointment-info p {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 36px;
  font-size: 1rem;
}
.appointment-contacts { display: flex; flex-direction: column; gap: 16px; }
.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.appt-contact-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.appointment-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-group select option { background: var(--green-dark); color: white; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.12);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ff6b6b;
}
.form-error-msg {
  font-size: 0.75rem;
  color: #ff9999;
  display: none;
}
.form-group.error .form-error-msg { display: block; }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--green-dark);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* ===== CONTACT ===== */
#contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-section-title { font-size: 2.2rem; color: var(--green-dark); margin-bottom: 8px; }
.contact-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 8px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}
.contact-item-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; font-weight: 600; color: var(--green-mid); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item-value { font-size: 0.95rem; color: var(--text-dark); line-height: 1.6; }
.contact-item-value a { color: var(--green-dark); font-weight: 500; }
.contact-item-value a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); padding: 4px 0; border-bottom: 1px dashed rgba(0,0,0,0.06); }
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(82,183,136,0.1);
}
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ===== FOOTER ===== */
footer {
  background: #0e2a1c;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-brand .logo-tagline { color: var(--gold-light); font-size: 0.7rem; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--green-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 1px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-mid); color: white; border-color: var(--green-mid); }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 32px; left: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--green-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .doctor-grid,
  .appointment-inner,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .doctor-grid { text-align: center; }
  .doctor-tags { justify-content: center; }
  .doctor-photo-ring { width: 260px; height: 260px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .about-leaf-badge { bottom: -16px; right: -8px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .testimonial-card { min-width: 300px; }
  .appointment-form { padding: 28px 20px; }
}
