/* Add at top of style.css */
@font-face {
    font-display: swap;
}

:root {
  /* Brand Palette */
  --green-900:  #1b4332;
  --green-800:  #2d6a4f;
  --green-700:  #40916c;
  --green-500:  #52b788;
  --green-400:  #74c69d;
  --green-200:  #b7e4c7;
  --green-100:  #d8f3dc;
  --green-50:   #f0fdf4;

  --earth-800:  #7f4f24;
  --earth-500:  #a67c52;
  --earth-200:  #ddb892;
  --earth-100:  #fef3c7;

  /* Golden Accent Palette */
  --gold-700:   #b8860b;
  --gold-500:   #d4af37;
  --gold-400:   #e8c766;
  --gold-200:   #f3e2a9;
  --gold-100:   #fbf3d9;
  --gold-50:    #fefbef;

  --cream:      #fdfbf7;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e2e8f0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-py: 80px;
  --section-py-sm: 50px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(45,106,79,.08);
  --shadow-md: 0 6px 24px rgba(45,106,79,.12);
  --shadow-lg: 0 12px 48px rgba(45,106,79,.16);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); color: var(--green-800); }
a:hover { color: var(--green-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

p { margin-bottom: 1rem; }

section { position: relative; }

/* ─────────────────────────────────────────────
   TOP BAR
   ───────────────────────────────────────────── */
.top-bar {
  background: var(--green-900);
  color: var(--green-200);
  font-size: 13px;
}

.top-bar-link {
  color: var(--green-200);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.top-bar-link:hover { color: var(--white); }

.top-bar-hours { color: var(--green-200); font-size: 12px; }

.social-icon {
  color: var(--green-300, #95d5b2);
  font-size: 14px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
}

/* ─────────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────────── */
.main-navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--green-100);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1000;
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 6px 0;
}

/* Logo */
.logo-icon { flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  color: var(--earth-500);
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 2px;
}

/* Nav Links */
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark) !important;
  letter-spacing: .3px;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-link:hover { color: var(--green-800) !important; }
.nav-link.active { color: var(--green-800) !important; }

/* Appointment Button */
.btn-appointment {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: white !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(45,106,79,.25);
  transition: var(--transition);
}

.btn-appointment:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,.35);
  color: white !important;
}

/* ─────────────────────────────────────────────
   SECTION UTILITY CLASSES
   ───────────────────────────────────────────── */
.section-py   { padding: var(--section-py) 0; }
.section-py-sm{ padding: var(--section-py-sm) 0; }
.bg-green-50  { background: var(--green-50); }
.bg-green-900 { background: var(--green-900); }
.bg-cream     { background: var(--cream); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.section-title span { color: var(--green-700); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.divider-leaf {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-200));
  border-radius: 2px;
  margin: 14px 0 24px;
}

.divider-leaf.mx-auto { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(82,183,136,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(45,106,79,.08) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}

/* Decorative leaf shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 0 0 0 100%;
  background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 100% 0 0 0;
  background: radial-gradient(circle, var(--green-50) 0%, transparent 70%);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero-badge i { color: var(--green-500); font-size: 16px; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--green-800);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green-200);
  border-radius: 2px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--green-800);
  color: var(--green-800) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-green:hover {
  background: var(--green-800);
  color: white !important;
}

.hero-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
}

.hero-trust-item i { color: var(--green-500); font-size: 16px; }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-img-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-card img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  object-fit: cover;
  height: 480px;
}

.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-card.card-1 { bottom: 30px; left: -20px; }
.hero-stat-card.card-2 { top: 30px; right: -20px; }

.hero-stat-icon {
  width: 40px;
  height: 40px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.hero-stat-label { font-size: 11px; color: var(--text-light); font-weight: 600; }

/* ─────────────────────────────────────────────
   CARDS — SERVICES
   ───────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300, #95d5b2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-lg); 
  border-color: var(--green-200);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--green-700);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-800);
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text-dark);
}

.service-card p { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ─────────────────────────────────────────────
   STATS COUNTER SECTION
   ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold-500);
  border-bottom: 4px solid var(--gold-500);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item { text-align: center; position: relative; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--green-200);
  font-weight: 600;
  letter-spacing: .5px;
}

.stat-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.15);
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US
   ───────────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-text { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ─────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--green-200);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; }

.testimonial-text {
  font-size: .95rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--green-100);
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.author-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.author-location { font-size: .8rem; color: var(--text-light); }

/* ─────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--green-800);
  background: var(--green-50);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: hue-rotate(120deg) saturate(0.8);
}

.faq-accordion .accordion-body {
  font-size: .9rem;
  color: var(--text-mid);
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   APPOINTMENT / CONTACT FORMS
   ───────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-100);
}

.form-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
  outline: none;
}

.form-control::placeholder { color: var(--text-light); }

.btn-submit {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  width: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Alert Messages */
.alert-success-custom {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.alert-error-custom {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   DOCTOR PROFILE CARD
   ───────────────────────────────────────────── */
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

.doctor-img-wrap {
  background: var(--green-50);
  padding: 20px;
  text-align: center;
}

.doctor-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.doctor-img-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-200), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--green-800);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.doctor-info { padding: 24px; }

.doctor-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 4px;
}

.doctor-degree { font-size: .9rem; color: var(--text-mid); margin-bottom: 12px; }

.doctor-badge {
  display: inline-block;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────
   FLOATING BUTTONS
   ───────────────────────────────────────────── */
.float-whatsapp,
.float-call {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: var(--transition);
  text-decoration: none;
}

.float-whatsapp {
  background: #25d366;
  color: white;
  bottom: 90px;
  right: 24px;
}

.float-whatsapp:hover {
  background: #1ebe5c;
  transform: scale(1.1);
  color: white;
}

.float-call {
  background: var(--green-800);
  color: white;
  bottom: 156px;
  right: 24px;
  font-size: 20px;
}

.float-call:hover {
  background: var(--green-700);
  transform: scale(1.1);
  color: white;
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-800);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover { background: var(--green-700); }

/* WhatsApp button variant for forms/footer */
.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-whatsapp:hover { background: #1ebe5c; color: white; transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.site-footer { background: var(--green-900); color: var(--green-200); }

.footer-cta-strip {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 40px 0;
}

.footer-cta-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.footer-cta-subtitle { color: var(--green-200); margin: 0; font-size: .95rem; }

.footer-main { padding: 60px 0 30px; }

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.footer-logo-tag { font-size: 10px; color: var(--green-300, #95d5b2); letter-spacing: .8px; text-transform: uppercase; }

.footer-desc { font-size: .9rem; color: var(--green-300, #95d5b2); line-height: 1.8; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-200);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--green-200);
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a i { font-size: 11px; }

.footer-links a:hover { color: var(--green-400); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }

.footer-contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--green-400);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a { color: var(--green-200); font-size: .875rem; }
.footer-contact-list span { color: var(--green-200); font-size: .875rem; line-height: 1.6; }
.footer-contact-list a:hover { color: var(--green-400); }

/* Fix: footer-contact-list reused on white cards (e.g. homepage map section) —
   override the light-green text so it's visible on white/light backgrounds */
.form-card .footer-contact-list a,
.form-card .footer-contact-list span,
.form-card .footer-contact-list strong,
.form-card .footer-contact-list div {
  color: var(--text-mid);
}
.form-card .footer-contact-list strong { color: var(--green-800); }
.form-card .footer-contact-list a:hover { color: var(--green-700); }

/* ─────────────────────────────────────────────
   GREEN-GOLD DECORATIVE PATTERNS
   ───────────────────────────────────────────── */

/* Subtle leaf + dot pattern background — green on cream */
.bg-pattern-leaf {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 20px 20px, rgba(45,106,79,.05) 2px, transparent 2.5px),
    radial-gradient(circle at 60px 60px, rgba(212,175,55,.08) 2px, transparent 2.5px);
  background-size: 80px 80px;
}

/* Gold-green diagonal accent stripe (use on section top/bottom) */
.gold-divider {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--green-700) 0%, var(--gold-500) 50%, var(--green-700) 100%);
}

/* Gold ornamental corner accents for cards */
.gold-frame {
  position: relative;
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-md);
}
.gold-frame::before,
.gold-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold-500);
  pointer-events: none;
}
.gold-frame::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
  border-radius: var(--radius-md) 0 0 0;
}
.gold-frame::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
  border-radius: 0 0 var(--radius-md) 0;
}

/* Section label — gold variant */
.section-label-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  padding: 5px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}

/* Gold accent divider (alternative to green divider-leaf) */
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-200));
  border-radius: 2px;
  margin: 14px 0 24px;
}
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* Decorative full-width herbal/gold pattern band — used between sections */
.pattern-band {
display:none;
  height: 0px;
  background:
    repeating-linear-gradient(135deg,
      var(--green-700) 0px, var(--green-700) 14px,
      var(--gold-500) 14px, var(--gold-500) 28px);
  opacity: 0.35;
}

/* Card with gold-touched border + subtle shadow, for highlighting */
.card-gold-accent {
  border: 1px solid var(--gold-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
}
.card-gold-accent:hover {
  box-shadow: 0 8px 24px rgba(212,175,55,.18);
  transform: translateY(-4px);
}

/* Badge ribbon - gold */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
  color: var(--green-300, #95d5b2);
}

.footer-bottom p { margin: 0; }
.footer-bottom-links a { color: var(--green-300, #95d5b2); margin: 0 6px; }
.footer-bottom-links a:hover { color: var(--green-400); }

/* ─────────────────────────────────────────────
   BREADCRUMBS
   ───────────────────────────────────────────── */
.breadcrumb-section {
  background: var(--green-50);
  border-bottom: 1px solid var(--green-100);
  padding: 14px 0;
}

.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--green-700); }
.breadcrumb-item.active { color: var(--text-mid); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(82,183,136,.2), transparent);
}

.page-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  font-family: var(--font-display);
  position: relative;
  margin-bottom: 10px;
}

.page-hero-subtitle { color: var(--green-200); font-size: 1rem; position: relative; margin: 0; }

/* ─────────────────────────────────────────────
   HERBAL TREATMENT HIGHLIGHT SECTION
   ───────────────────────────────────────────── */
.treatment-highlight {
  border-radius: var(--radius-md);
  padding: 28px;
  background: linear-gradient(135deg, var(--green-50), var(--white));
  border: 1px solid var(--green-100);
  height: 100%;
  transition: var(--transition);
}

.treatment-highlight:hover { box-shadow: var(--shadow-md); }

.treatment-highlight-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.treatment-highlight h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 6px;
}

.treatment-highlight p { font-size: .875rem; color: var(--text-mid); margin: 0; }

/* ─────────────────────────────────────────────
   MAP EMBED
   ───────────────────────────────────────────── */
.map-embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

.map-embed-wrap iframe { display: block; width: 100%; border: none; }

/* ─────────────────────────────────────────────
   LOADING SPINNER
   ───────────────────────────────────────────── */
.spinner-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 80px 0 50px; }
  .hero-image-wrap { margin-top: 40px; }
  .hero-img-card img { height: 320px; }
  .hero-stat-card.card-1 { left: 0; }
  .hero-stat-card.card-2 { right: 0; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 55px; --section-py-sm: 35px; }
  .form-card { padding: 24px 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust-items { gap: 14px; }
  .stat-divider { display: none; }
  .stats-section .row > div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 24px; margin-bottom: 24px; }
}

/* Lazy loading */
img[loading="lazy"] { opacity: 0; transition: opacity .4s ease; }
img[loading="lazy"].loaded { opacity: 1; }

/* Smooth animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fadeInUp { animation: fadeInUp .5s ease forwards; }

/* Honeypot field */
.honeypot-field { display: none !important; visibility: hidden; }

/* ─────────────────────────────────────────────
   BLOG STYLES
   ───────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.07); }

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-800);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-card-meta i { color: var(--gold-500); margin-right: 4px; }

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-title a { color: var(--text-dark); }
.blog-card-title a:hover { color: var(--green-700); }

.blog-card-excerpt {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-readmore i { transition: transform .3s ease; }
.blog-card:hover .blog-card-readmore i { transform: translateX(4px); }

/* Blog Single Page */
.blog-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}
.blog-hero-img img { width: 100%; display: block; aspect-ratio: 16/7; object-fit: cover; }

.blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
}
.blog-content h2 {
  font-size: 1.5rem;
  color: var(--green-800);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-200);
}
.blog-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 24px 0 12px;
}
.blog-content p { margin-bottom: 16px; }
.blog-content ul { margin-bottom: 16px; padding-left: 20px; }
.blog-content ul li { margin-bottom: 8px; }
.blog-content ul li::marker { color: var(--gold-500); }

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.blog-tag {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--green-100);
}
.blog-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-size: 15px;
}
.blog-share a:hover { background: var(--green-800); color: white; border-color: var(--green-800); }

/* Sidebar */
.blog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
}
.blog-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-200);
}
.related-post-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--green-50);
}
.related-post-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-post-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.related-post-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.related-post-title:hover { color: var(--green-700); }
.related-post-date { font-size: .75rem; color: var(--text-light); margin-top: 4px; }


/* ─── SKIP LINK — Accessibility ─────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green-800);
  color: white;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 99999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
