/* ============================================
   ASHA'S AROGYA KAYA - Main Stylesheet
   ============================================ */

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

:root {
  --green-dark: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #95d5b2;
  --green-tint: #d8f3dc;
  --green-bg: #f0faf3;
  --gold: #c9973b;
  --gold-light: #e8c47a;
  --cream: #faf8f2;
  --text-dark: #1c2b1e;
  --text-mid: #3d5440;
  --text-light: #6b8c72;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(26,74,46,0.08);
  --shadow-md: 0 8px 32px rgba(26,74,46,0.12);
  --shadow-lg: 0 20px 60px rgba(26,74,46,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,106,79,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,151,59,0.4);
}
.btn-gold:hover {
  background: #b8862e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,151,59,0.5);
}

.btn-white {
  background: var(--white);
  color: var(--green-mid);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--green-tint);
  transform: translateY(-2px);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.green-bg { background: var(--green-bg); }
.dark-bg { background: var(--green-dark); }
.cream-bg { background: var(--cream); }

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.nav-logo .logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo .logo-main { color: var(--green-dark); }
.navbar.scrolled .nav-logo .logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.9);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active {
  color: var(--green-mid);
  background: var(--green-tint);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(201,151,59,0.4);
}
.nav-cta:hover { background: #b8862e !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--green-dark); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--green-tint); color: var(--green-mid); }

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #3a8a62 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::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");
}

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

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--green-pale); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================
   HOME HERO
   ============================================ */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #3a8a62 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-circles {
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-circle-2 {
  position: absolute;
  right: 100px; bottom: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,59,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 200px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-visual {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 15px;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.hero-card-visual img{
  border-radius: 15px;
}

.hero-card-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-light), var(--green-pale));
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.hero-card-visual h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-card-visual p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-card-pills span {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ============================================
   INTRO STRIP
   ============================================ */

.intro-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--green-tint);
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.intro-item-icon {
  width: 36px; height: 36px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  border: 6px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-accent .years {
  text-align: center;
}
.about-img-accent .years .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.about-img-accent .years .small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}

.about-text { }

.about-points {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-point-icon {
  width: 36px; height: 36px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   TREATMENTS GRID
   ============================================ */

.treatment-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--green-tint);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.treatment-card:hover {
  border-color: var(--green-light);
  background: var(--green-bg);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.treatment-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.treatment-card:hover .treatment-icon {
  background: var(--green-light);
}

.treatment-card h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.treatment-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ============================================
   PANCHKARMA CARDS
   ============================================ */

.pk-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-top: 4px solid var(--green-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pk-card:hover {
  border-top-color: var(--green-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pk-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.pk-card h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.pk-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pk-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pk-benefits span {
  background: var(--green-tint);
  color: var(--green-mid);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--green-tint);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-stars span { color: var(--gold); font-size: 1rem; }

.testi-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-mid);
  font-family: 'Cormorant Garamond', serif;
}

.testi-author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
}

.testi-author-info .city {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   DOCTOR PROFILE
   ============================================ */

.doctor-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.doctor-img {
  background: linear-gradient(160deg, var(--green-mid), var(--green-dark));
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
}

.doctor-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 4px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.doctor-img h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

.doctor-img .title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
}

.doctor-img .exp-badge {
  margin-top: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  color: var(--white);
}

.doctor-info { padding: 48px 48px 48px 0; }

.doctor-info h3 {
  font-size: 1.1rem;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.qual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.qual-item::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.expertise-tag {
  background: var(--green-bg);
  color: var(--green-mid);
  border: 1px solid var(--green-tint);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item-inner {
  width: 100%;
  height: 100%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,74,46,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.gallery-emoji {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  opacity: 0.5;
}

/* ============================================
   BLOG
   ============================================ */

.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-content { padding: 24px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-cat {
  background: var(--green-tint);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.blog-date { font-size: 0.78rem; color: var(--text-light); }

.blog-card h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.blog-read { font-size: 0.85rem; font-weight: 600; color: var(--green-mid); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-read:hover,
.blog-card:hover .blog-read { color: var(--green-dark); gap: 10px; }

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { font-size: 2.4rem; color: var(--green-dark); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--green-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--green-tint);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(82,183,136,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   APPOINTMENT POPUP
   ============================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,74,46,0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.open .popup-box {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-tint);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mid);
  transition: var(--transition);
}
.popup-close:hover { background: var(--green-mid); color: var(--white); }

.popup-header { margin-bottom: 28px; }
.popup-header h3 { font-size: 2rem; color: var(--green-dark); margin-bottom: 6px; }
.popup-header p { font-size: 0.9rem; color: var(--text-light); }

.popup-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.popup-success.show { display: block; }

.popup-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.popup-success h4 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.popup-success p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.social-link:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

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

.footer-contact-item .icon { font-size: 1rem; margin-top: 2px; }
.footer-contact-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: var(--green-pale); }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(82,183,136,0.15) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================
   FLOATING APPOINTMENT BUTTON
   ============================================ */

.float-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 998;
  background: var(--gold);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(201,151,59,0.5);
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  animation: floatUp 3s ease-in-out infinite;
}

.float-btn:hover {
  background: #b8862e;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(201,151,59,0.6);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 100px 0; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-area { display: none; }
  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .about-img-stack { height: 300px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-info { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .popup-box { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px 18px; border-radius: 50%; }
}

/* ============================================
   BLOG ARTICLE BODY (rich text from CMS)
   ============================================ */

.blog-article {
  color: var(--text-mid);
  font-size: 1.08rem;
  line-height: 1.95;
}
.blog-article > *:first-child { margin-top: 0; }

.blog-article > p:first-of-type {
  font-size: 1.18rem;
  color: var(--text-dark);
}

.blog-article > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 600;
  color: var(--green-mid);
  float: left;
  line-height: 0.8;
  margin: 8px 10px 0 0;
}

.blog-article h2 {
  font-size: 1.9rem;
  color: var(--green-dark);
  margin: 48px 0 18px;
  line-height: 1.3;
}

.blog-article h3 {
  font-size: 1.45rem;
  color: var(--green-dark);
  margin: 36px 0 14px;
  line-height: 1.35;
}

.blog-article h4 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 28px 0 12px;
}

.blog-article p { margin-bottom: 22px; }
.blog-article strong { color: var(--text-dark); font-weight: 600; }
.blog-article em { color: var(--text-dark); }

.blog-article ul,
.blog-article ol {
  margin: 0 0 24px 24px;
  padding: 0;
}
.blog-article ul { list-style: none; }
.blog-article ul li { position: relative; padding-left: 26px; }
.blog-article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}
.blog-article ol { list-style: decimal; }
.blog-article ol li { padding-left: 4px; }
.blog-article li { margin-bottom: 10px; }

.blog-article a {
  color: var(--green-mid);
  text-decoration: underline;
  text-decoration-color: var(--green-tint);
  text-underline-offset: 3px;
  transition: var(--transition);
}
.blog-article a:hover { color: var(--green-dark); text-decoration-color: var(--green-light); }

.blog-article img {
  width: 100%;
  border-radius: var(--radius);
  margin: 36px 0;
  box-shadow: var(--shadow-md);
}

.blog-article figure { margin: 36px 0; }
.blog-article figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

.blog-article blockquote {
  position: relative;
  background: var(--green-bg);
  padding: 32px 36px 28px 60px;
  border-radius: var(--radius);
  margin: 36px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--green-dark);
}
.blog-article blockquote::before {
  content: '"';
  position: absolute;
  left: 18px;
  top: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--green-light);
  font-style: normal;
  line-height: 1;
}

.blog-article hr {
  border: none;
  border-top: 1px solid var(--green-tint);
  margin: 44px 0;
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}
.blog-article th {
  background: var(--green-tint);
  color: var(--green-dark);
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
}
.blog-article td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--green-tint);
}


/* ============================================
   PANCHKARMA — FULL ALTERNATING BLOCKS
   ============================================ */

.pk-full {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  background: var(--white);
}
.pk-full:nth-child(even) { direction: rtl; }
.pk-full:nth-child(even) > * { direction: ltr; }

.pk-full-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  min-height: 360px;
}
.pk-full-visual .big-icon { font-size: 4rem; margin-bottom: 16px; }
.pk-full-visual h2 { font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.pk-full-visual .pk-origin {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pk-full-info { padding: 48px; }
.pk-full-info .section-label { display: block; margin-bottom: 12px; }
.pk-full-info h3 { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 16px; }
.pk-full-info p { color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; font-size: 0.95rem; }

.pk-benefits-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.pk-alt { background: var(--green-bg); }
.pk-alt .pk-full-visual { background: linear-gradient(135deg, var(--green-mid), #3a8a62); }

@media (max-width: 768px) {
  .pk-full { grid-template-columns: 1fr; }
  .pk-full:nth-child(even) { direction: ltr; }
  .pk-full-visual { min-height: 200px; }
  .pk-full-info { padding: 28px 24px; }
  .blog-article > p:first-of-type::first-letter { font-size: 3rem; margin: 4px 6px 0 0; }
  .blog-article blockquote { padding: 26px 22px 22px 46px; font-size: 1.15rem; }
  .blog-article blockquote::before { left: 12px; font-size: 2.6rem; }
}
