/* ===========================
   VEDIC AYURVEDA - MAIN CSS
   Dark Green Theme
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --green:       #1a5c38;
  --green-light: #2d8653;
  --green-dark:  #0d3d24;
  --green-deeper:#071f12;
  --gold:        #b7791f;
  --gold-light:  #f6c94e;
  --cream:       #fefae0;
  --cream-dark:  #f0e6c8;
  --text:        #1a1a1a;
  --text-light:  #555;
  --white:       #fff;
  --shadow:      0 4px 24px rgba(13,61,36,0.13);
  --radius:      16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--green-deeper);
  color: #fff;
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: #ccc; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right { display: flex; align-items: center; gap: 6px; }
.topbar-right a {
  color: #ccc; font-size: 16px; width: 30px; height: 30px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  transition: all .2s; background: rgba(255,255,255,0.07);
}
.topbar-right a:hover { background: var(--green); color: white; }
.lang-toggle {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 3px 12px; border-radius: 50px; font-size: 12px;
  cursor: pointer; margin-left: 10px; font-family: 'Nunito', sans-serif;
  font-weight: 700; transition: all .2s;
}
.lang-toggle:hover { background: var(--gold); border-color: var(--gold); }

/* ===== NAVBAR ===== */
nav {
  background: var(--white);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}
.logo { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.logo-icon {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
  box-shadow: 0 4px 14px rgba(26,92,56,0.3);
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--green-dark); line-height: 1.2; }
.logo-text span { font-size: 10px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links li a {
  display: block; padding: 22px 13px;
  color: var(--text); font-weight: 700; font-size: 13.5px;
  border-bottom: 3px solid transparent;
  transition: all .2s; cursor: pointer;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--green); border-bottom-color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: white !important;
  border-radius: 10px; padding: 11px 22px !important;
  border-bottom: none !important; margin-left: 10px;
  box-shadow: 0 4px 14px rgba(26,92,56,0.3);
}
.nav-cta:hover { background: var(--green-dark) !important; color: white !important; border-bottom: none !important; }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--green); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); z-index: 1000;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
  background: white; width: 290px; height: 100%; padding: 0;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu-header {
  background: var(--green-dark); padding: 20px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu-header span { color: white; font-weight: 700; font-size: 16px; font-family: 'Playfair Display', serif; }
.mobile-close { font-size: 22px; cursor: pointer; color: rgba(255,255,255,0.7); background: none; border: none; }
.mobile-menu-inner a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text); font-weight: 600; font-size: 14px;
}
.mobile-menu-inner a:hover { background: var(--cream); color: var(--green); }
.mobile-lang { padding: 14px 20px; border-top: 2px solid #f0f0f0; }
.mobile-lang button {
  background: var(--green); color: white; border: none; padding: 10px 20px;
  border-radius: 8px; font-family: 'Nunito', sans-serif; font-weight: 700;
  cursor: pointer; width: 100%;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white; padding: 70px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero .label { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--gold-light); font-weight: 700; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { opacity: .85; font-size: 16px; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ===== SECTIONS ===== */
section { padding: 80px 60px; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green-dark); margin-bottom: 14px; }
.section-sub { color: var(--text-light); font-size: 16px; line-height: 1.7; max-width: 580px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-sub { margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px auto 0; }
.divider.left { margin: 16px 0 0; }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: white;
  padding: 14px 34px; border-radius: 10px;
  font-weight: 800; font-size: 15px;
  border: none; cursor: pointer;
  transition: all .25s; font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 16px rgba(183,121,31,0.35);
}
.btn-primary:hover { background: #9c6500; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(183,121,31,0.45); }
.btn-green {
  display: inline-block;
  background: var(--green); color: white;
  padding: 14px 34px; border-radius: 10px;
  font-weight: 800; font-size: 15px;
  border: none; cursor: pointer;
  transition: all .25s; font-family: 'Nunito', sans-serif;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--green);
  padding: 14px 34px; border-radius: 10px;
  font-weight: 800; font-size: 15px;
  border: 2px solid var(--green); cursor: pointer;
  transition: all .25s; font-family: 'Nunito', sans-serif;
}
.btn-outline:hover { background: var(--green); color: white; }
.btn-outline-white {
  display: inline-block;
  background: transparent; color: white;
  padding: 13px 30px; border-radius: 10px;
  font-weight: 800; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
  transition: all .25s; font-family: 'Nunito', sans-serif;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ===== TREATMENT CARDS ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.treatment-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all .3s; cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(13,61,36,0.18); }
.treatment-card-img {
  height: 170px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}
.treatment-card-body { padding: 20px; }
.treatment-card-body h3 { font-size: 17px; color: var(--green-dark); margin-bottom: 8px; }
.treatment-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.treatment-card-body .card-link { color: var(--green); font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 4px; }
.treatment-card-body .card-link:hover { color: var(--gold); }

/* ===== WHY US ===== */
.why-section { background: var(--green-dark); color: white; }
.why-section .section-title { color: white; }
.why-section .section-sub { opacity: .8; color: rgba(255,255,255,0.8); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 22px; transition: all .3s;
}
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h4 { font-size: 15px; margin-bottom: 8px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.why-card p { font-size: 13px; opacity: .75; line-height: 1.6; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green);
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; padding: 28px 40px;
}
.stats-bar .stat { padding: 10px; border-right: 1px solid rgba(255,255,255,0.2); }
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat strong { display: block; font-size: 30px; font-family: 'Playfair Display', serif; color: white; }
.stats-bar .stat span { font-size: 11px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border-left: 4px solid var(--green); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 90px;
  color: var(--cream-dark); position: absolute; top: 6px; right: 18px; line-height: 1;
}
.stars { color: #f6ad55; margin-bottom: 12px; font-size: 14px; }
.testimonial-text { font-size: 14px; line-height: 1.75; color: var(--text-light); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.author-info strong { display: block; font-size: 14px; color: var(--green-dark); }
.author-info span { font-size: 12px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-item {
  background: white; border-radius: 12px; margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); overflow: hidden;
}
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 15px; color: var(--green-dark); transition: background .2s;
}
.faq-question:hover { background: var(--cream); }
.faq-icon { font-size: 22px; color: var(--green); transition: transform .3s; flex-shrink: 0; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s;
  font-size: 14px; line-height: 1.8; color: var(--text-light); padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== FORMS ===== */
.form-wrapper {
  background: white; border-radius: 20px; padding: 50px;
  box-shadow: var(--shadow); max-width: 700px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
label { font-size: 12px; font-weight: 800; color: var(--green-dark); text-transform: uppercase; letter-spacing: .5px; }
input, select, textarea {
  border: 2px solid #e8e8e8; border-radius: 10px; padding: 12px 16px;
  font-size: 14px; font-family: 'Nunito', sans-serif;
  transition: border-color .2s; outline: none; background: #fafafa; color: var(--text);
}
input:focus, select:focus, textarea:focus { border-color: var(--green); background: white; }
textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  background: var(--green); color: white; padding: 15px 40px;
  border: none; border-radius: 10px; font-size: 16px; font-weight: 800;
  cursor: pointer; width: 100%; margin-top: 8px;
  font-family: 'Nunito', sans-serif; transition: all .25s;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }
.form-success {
  display: none; text-align: center; padding: 30px;
  color: var(--green); font-size: 18px; font-weight: 700;
}
.form-success .check { font-size: 60px; margin-bottom: 14px; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--green-dark); color: white;
  border-radius: 20px; padding: 40px;
}
.contact-info-card h3 { font-size: 24px; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 11px; opacity: .6; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Nunito', sans-serif; }
.contact-detail a, .contact-detail p { color: white; font-size: 15px; font-weight: 600; margin: 0; }
.wa-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: white; padding: 14px 22px;
  border-radius: 12px; font-weight: 800; font-size: 15px;
  margin-top: 28px; transition: all .2s; cursor: pointer;
}
.wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.social-links { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.social-link {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; transition: background .2s;
}
.social-link:hover { background: var(--green-light); }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  border-radius: 20px; overflow: hidden; height: 420px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 110px; color: white; position: relative;
}
.about-img-badge {
  position: absolute; bottom: 22px; right: 22px;
  background: white; padding: 14px 18px;
  border-radius: 12px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.about-img-badge strong { display: block; font-size: 22px; color: var(--green-dark); font-family: 'Playfair Display', serif; }
.about-img-badge span { font-size: 11px; color: var(--text-light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.value-card {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border-top: 3px solid var(--green); transition: transform .3s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card h4 { color: var(--green-dark); margin-bottom: 8px; font-size: 15px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.doctor-card {
  background: white; border-radius: 20px; padding: 40px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start;
  max-width: 820px; margin: 0 auto;
}
.doctor-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; color: white; flex-shrink: 0;
}
.doctor-info h3 { font-size: 26px; color: var(--green-dark); margin-bottom: 6px; }
.doctor-title { color: var(--gold); font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.doctor-info p { font-size: 14px; color: var(--text-light); line-height: 1.85; }
.doctor-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.badge {
  background: var(--cream-dark); color: var(--green-dark);
  padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
}

/* ===== FILTER BUTTONS ===== */
.review-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; justify-content: center; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 2px solid var(--green); background: transparent;
  color: var(--green); font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all .2s; font-family: 'Nunito', sans-serif;
}
.filter-btn.active, .filter-btn:hover { background: var(--green); color: white; }

/* ===== VIDEOS ===== */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.video-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s; }
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative; cursor: pointer;
  background: var(--green-dark); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-btn {
  position: absolute; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 22px; transition: transform .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.video-thumb:hover .play-btn { transform: scale(1.1); }
.video-info { padding: 18px; }
.video-info h4 { font-size: 15px; color: var(--green-dark); margin-bottom: 6px; font-family: 'Nunito', sans-serif; font-weight: 700; line-height: 1.4; }
.video-info span { font-size: 12px; color: var(--text-light); background: var(--cream); padding: 3px 10px; border-radius: 20px; }

/* ===== EXPLAINED ===== */
.explained-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.explained-card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .3s;
}
.explained-card:hover { transform: translateY(-4px); }
.explained-num {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-dark); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; margin-bottom: 16px; font-family: 'Nunito', sans-serif;
}
.explained-card h3 { font-size: 17px; color: var(--green-dark); margin-bottom: 10px; }
.explained-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ===== LEGAL ===== */
.legal-content {
  max-width: 800px; margin: 0 auto;
  background: white; padding: 50px; border-radius: 20px; box-shadow: var(--shadow);
}
.legal-content h2 { color: var(--green-dark); margin: 28px 0 12px; font-size: 20px; }
.legal-content p { font-size: 14px; line-height: 1.9; color: var(--text-light); margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,0.65);
  z-index: 2000; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 20px; padding: 40px;
  max-width: 520px; width: 92%; position: relative;
  max-height: 92vh; overflow-y: auto;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 20px; font-size: 22px;
  cursor: pointer; color: #999; background: none; border: none; line-height: 1;
}
.modal h3 { font-size: 22px; color: var(--green-dark); margin-bottom: 6px; }
.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.modal .form-grid { grid-template-columns: 1fr; gap: 14px; }

/* ===== FLOATING BUTTONS ===== */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366; color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900; transition: transform .2s;
  animation: waPulse 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-call {
  position: fixed; bottom: 96px; right: 24px;
  background: var(--green); color: white;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 16px rgba(26,92,56,0.4);
  z-index: 900; transition: transform .2s;
}
.float-call:hover { transform: scale(1.1); background: var(--green-dark); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-deeper);
  color: #bbb; padding: 70px 60px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
}
.footer-logo strong { color: white; font-family: 'Playfair Display', serif; font-size: 19px; }
.footer-brand p { font-size: 13px; line-height: 1.85; margin-bottom: 22px; color: #999; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 15px; transition: all .2s;
}
.footer-social a:hover { background: var(--green); color: white; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 20px; font-family: 'Nunito', sans-serif; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #999; font-size: 13px; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 13px; align-items: flex-start; color: #999; }
.footer-contact-item i { color: var(--green-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: #999; transition: color .2s; }
.footer-contact-item a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #666; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #666; transition: color .2s; }
.footer-bottom a:hover { color: var(--green-light); }

/* ===== HERO (Home Only) ===== */
.hero {
  background: linear-gradient(135deg, var(--green-deeper) 0%, var(--green-dark) 55%, var(--green) 100%);
  color: white; min-height: 90vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 70px 60px;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.hero-bg-circle.c1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-bg-circle.c2 { width: 300px; height: 300px; bottom: -100px; right: 200px; }
.hero-content { max-width: 620px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 18px; border-radius: 50px; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; font-weight: 700;
}
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.2; margin-bottom: 22px; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 17px; opacity: .88; line-height: 1.75; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 50px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 28px; font-family: 'Playfair Display', serif; }
.hero-stat span { font-size: 11px; opacity: .7; text-transform: uppercase; letter-spacing: 1px; }

/* ===== PROCESS STEPS ===== */
.step-card {
  display: flex; gap: 20px; background: white; border-radius: 14px;
  padding: 24px; box-shadow: var(--shadow); align-items: flex-start; margin-bottom: 18px;
}
.step-num {
  background: var(--green); color: white; border-radius: 50%;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
}
.step-card h4 { color: var(--green-dark); margin-bottom: 6px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.step-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav, .topbar { padding-left: 30px; padding-right: 30px; }
  section { padding: 60px 30px; }
  .hero { padding: 60px 30px; }
  .page-hero { padding: 60px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 60px 30px 28px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .topbar { padding: 8px 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  section { padding: 50px 20px; }
  .hero { padding: 50px 20px; min-height: auto; }
  .page-hero { padding: 50px 20px; }
  .hero-stats { gap: 20px; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .doctor-card { grid-template-columns: 1fr; text-align: center; }
  .doctor-avatar { margin: 0 auto; }
  .doctor-badges { justify-content: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat:nth-child(2) { border-right: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 18px; }
  footer { padding: 50px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .stats-bar { padding: 20px; }
}

.slider{
  width:1200px;
  height:468px;
  margin:auto;
  position:relative;
  overflow:hidden;
}

/* images */
.slide{
  display:none;
  width:100%;
  height:100%;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.who{
padding:70px 20px;
}

.who-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.who-img img{
width:100%;
border-radius:12px;
}

.who-content h2{
font-size:36px;
margin:10px 0;
}

.who-content .sub{
color:#2a7b5f;
font-weight:600;
}

.who-content p{
line-height:1.7;
margin:15px 0;
}

.btn{
display:inline-block;
background:#2a7b5f;
color:white;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
.who-container{
grid-template-columns:1fr;
}
}
.who-sub{
color:#2a7b5f;
font-weight:600;
margin-bottom:10px;
}

.who-title{
font-size:36px;
margin-bottom:20px;
}

.reviews{
padding:80px 20px;
text-align:center;
background:#f7fbf9;
}

.reviews-inner{
max-width:900px;
margin:auto;
}

.reviews-sub{
color:#2a7b5f;
font-weight:600;
margin-bottom:10px;
}

.reviews-title{
font-size:36px;
margin-bottom:25px;
}

.reviews-btn{
display:inline-block;
background:#2a7b5f;
color:#fff;
padding:14px 26px;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.reviews-btn:hover{
background:#1f5e48;
}

.cta-quote{
padding:80px 20px;
background:#2a7b5f;
color:#fff;
text-align:center;
}

.cta-inner{
max-width:900px;
margin:auto;
}

.cta-text{
font-size:34px;
line-height:1.4;
margin-bottom:30px;
font-weight:600;
}

.cta-btn{
display:inline-block;
background:#fff;
color:#2a7b5f;
padding:14px 26px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.cta-btn:hover{
background:#eaf5f1;
}
.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1100px;
margin:0 auto;
}

.faq-item{
border-bottom:1px solid #ddd;
padding:14px 0;
cursor:pointer;
}

.faq-q{
font-weight:600;
}

.faq-a{
max-height:0;
overflow:hidden;
transition:.3s;
color:#555;
}

.faq-item.open .faq-a{
max-height:220px;
margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){
.faq-grid{
grid-template-columns:1fr;
}
}

.popup-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
}

.popup-header {
  background: #1f5e2c;
  padding: 15px;
  text-align: center;
}

.popup-header h2 {
  color: #fff;
  margin: 0;
  font-size: 20px;
}

.popup-content {
  display: flex;
  padding: 25px;
}

.left-content {
  width: 45%;
  padding-right: 20px;
}

.left-content h3 {
  color: #1f5e2c;
  margin-bottom: 5px;
}

.left-content .sub-text {
  color: #ff7a00;
  font-size: 14px;
  margin-bottom: 15px;
}

.left-content ol {
  padding-left: 18px;
}

.right-form {
  width: 55%;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 70%;
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  height: 15px;
  resize: none;
}
/* Overlay */
.popup-overlay {
    display: flex; /* change to none if you want hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #fff;
    width: 75%;
    max-width: 750px;
    height: 75vh;              /* 🔥 50% of screen height */
    max-height: 580px;
    border-radius: 8px;
    padding: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.popup-header h2 {
    font-size: 13px;
    text-align: center;
    margin-bottom: 8px;
    
}

/* Content layout */
.popup-content {
    display: flex;
    gap: 8;
    overflow-y: auto;   /* 🔥 Scroll inside popup */
    flex: 1;
}

/* Left Side */
.left-content {
    flex: 1;
    font-size: 13px;
}

.left-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #1f5e2c;
}

.sub-text {
    font-size: 12px;
    color: #ff7a00;
    margin-bottom: 8px;
}

.left-content ol {
    padding-left: 16px;
    font-size: 12px;
}

/* Right Form */
.right-form {
    flex: 1;
}

/* Inputs */
.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 3px;
    margin-bottom: 5px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    background: #1f5e2c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #174a23;
}

/* Close button */
.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #1f5e2c;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-box {
        width: 90%;
        height: 70vh;
    }

    .popup-content {
        flex-direction: column;
    }
}

.video-section{
  text-align:center;
  padding:40px 20px;
}

.video-title{
  font-size:28px;
  margin-bottom:20px;
  font-weight:600;
}

.center-video{
  width:100%;
  max-width:700px;
  height:auto;
  border-radius:12px;
}
