:root {
  --navy: #0d2d6b;
  --blue: #1a4fa0;
  --green: #1db87a;
  --green-dark: #159e68;
  --green-light: #e8f9f2;
  --blue-light: #e8eef9;
  --text: #1a2340;
  --muted: #5a6a8a;
  --white: #ffffff;
  --bg: #f5f8ff;
  --card: #ffffff;
  --border: #dde4f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,45,107,0.1);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-img {
    height: 50px;
    width: auto;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.logo-text span { color: var(--green); }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.logo-icon i { color: white; font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 1.1rem; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: white !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; transition: transform .2s, box-shadow .2s !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,184,122,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a6e50 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
}
.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");
}
.hero-blob {
  position: absolute; right: -10%; top: 10%; width: 55%; height: 80%;
  background: radial-gradient(ellipse, rgba(29,184,122,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,184,122,0.2); border: 1px solid rgba(29,184,122,0.4);
  color: #5dffc0; padding: 6px 16px; border-radius: 50px; font-size: 1rem; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white; padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(29,184,122,0.5); }
.btn-outline {
  background: transparent; color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.4); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 1rem; color: rgba(255,255,255,0.65); margin-top: 2px; letter-spacing: 0.5px; }
.hero-form-wrap {
  position: relative; z-index: 2;
  margin-left: auto; width: 340px; flex-shrink: 0;
}
.hero-form {
  background: white; border-radius: 20px;
  padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.hero-form h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 6px; }
.hero-form p { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--text); transition: border-color .2s; background: #fafbfd;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }
.phone-row { display: flex; gap: 8px; }
.phone-row .cc { width: 90px; flex-shrink: 0; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white; padding: 13px; border-radius: 50px; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: transform .2s, box-shadow .2s; margin-top: 6px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(29,184,122,0.4); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--navy); padding: 18px 5%; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.trust-item i { color: var(--green); font-size: 1rem; }

/* ─── SECTION BASE ─── */
.section { padding: 80px 5%; }
.section-tag {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  padding: 5px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── WHY INDIA ─── */
.why-india { background: var(--bg); }
.why-india-container {
    display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; flex-wrap:wrap;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.why-img { position: relative; border-radius: 20px; overflow: hidden; margin-top: 15px; }
.why-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; }
.why-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: white; padding: 14px 18px; border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 10px;
}
.why-img-badge .badge-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.why-img-badge .badge-icon i { color: var(--green); }
.badge-text strong { display: block; color: var(--navy); font-size: 0.9rem; }
.badge-text span { font-size: 0.75rem; color: var(--muted); }
.why-points { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point .icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-point .icon i { color: var(--green); font-size: 1rem; }
.why-point h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── TREATMENTS ─── */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.treatment-card {
  background: var(--card); border: 1.5px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; cursor: pointer;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,45,107,0.1); border-color: var(--green); }
.tc-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tc-icon i { color: var(--blue); font-size: 1.4rem; }
.treatment-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.treatment-card p { font-size: 1rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.tc-link { color: var(--green); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.tc-link:hover { gap: 10px; }

/* ─── DOCTORS ─── */

.doctors { background: var(--bg); }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.doctor-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1.5px solid var(--border); transition: transform .25s, box-shadow .25s;
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,45,107,0.1); }
.dc-img { background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%); height: 300px; display: flex; align-items: center; justify-content: center; position: relative; background-size: cover; background-position: top; }
.dc-img i { font-size: 5rem; color: var(--blue); opacity: 0.3; }
.dc-exp { position: absolute; top: 12px; right: 12px; background: var(--navy); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.dc i {
    display: none;
}
.dc .dc1 { background-image: url('https://cureviaa.mydayfold.com/assets/images/doctor/Dr-sanjay-singh.jpeg'); }
.dc .dc2 { background-image: url('https://cureviaa.mydayfold.com/assets/images/doctor/Siddharth-Shah.jpeg'); }
.dc .dc3 { background-image: url('https://cureviaa.mydayfold.com/assets/images/doctor/Dr-Dhananjay-parab.jpeg'); }
.dc .dc4 { background-image: url('https://cureviaa.mydayfold.com/assets/images/doctor/Dr-Hardik-Ghundiyal.jpeg'); }
.dc .dc5 { background-image: url('https://cureviaa.mydayfold.com/assets/images/doctor/Dr-deepika-singh.jpeg'); }
.dc-body { padding: 20px; }
.dc-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dc-spec { font-size: 0.8rem; color: var(--green-dark); font-weight: 600; margin-bottom: 8px; }
.dc-hospital { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.dc-stars { color: #f5a623; font-size: 0.75rem; margin-bottom: 16px; }
.dc-stars span { color: var(--muted); font-size: 0.75rem; margin-left: 4px; }
.btn-appt {
  width: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white; padding: 11px; border-radius: 50px; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.btn-appt:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,45,107,0.35); }

/* ─── PROCESS ─── */
.process-steps { display: flex; gap: 0; margin-top: 50px; position: relative; flex-wrap: wrap; }
.process-steps::before {
  content: ''; position: absolute;
  top: 38px; left: 9%; right: 9%;
  height: 2px; background: linear-gradient(90deg, var(--green), var(--blue));
}
.step-item { flex: 1; min-width: 140px; text-align: center; padding: 0 10px; position: relative; }
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: white; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  position: relative; z-index: 1; box-shadow: 0 8px 25px rgba(29,184,122,0.35);
}
.step-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ─── COST COMPARISON ─── */
.cost-section {
  background: linear-gradient(135deg, #06193d 0%, var(--navy) 50%, #0a3d2e 100%);
  padding: 80px 5%; position: relative; overflow: hidden;
}
.cost-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'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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");
}
.cost-section .section-tag { background: rgba(29,184,122,0.2); color: #5dffc0; }
.cost-section .section-title { color: white; }
.cost-section .section-sub { color: rgba(255,255,255,0.65); }

/* Summary cards */
.cost-summary-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 40px 0;
}
.cost-summary-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px; text-align: center;
  transition: transform .2s, background .2s;
}
.cost-summary-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.cost-summary-card .treatment-name { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.cost-compare-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 8px; }
.cost-compare-row:last-child { margin-bottom: 0; }
.cost-flag { font-size: 0.78rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.cost-flag i { font-size: 0.7rem; }
.cost-pill {
  font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; white-space: nowrap;
}
.cost-pill.india { background: rgba(29,184,122,0.25); color: #5dffc0; border: 1px solid rgba(29,184,122,0.4); }
.cost-pill.other { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); }
.cost-saving-badge {
  margin-top: 14px; background: rgba(29,184,122,0.15); border: 1px solid rgba(29,184,122,0.3);
  border-radius: 10px; padding: 8px; text-align: center;
}
.cost-saving-badge span { font-size: 0.75rem; color: var(--green); font-weight: 700; }

/* Tabs */
.cost-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 24px; }
.cost-tab {
  padding: 9px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  background: transparent; font-family: 'DM Sans', sans-serif; transition: all .2s;
}
.cost-tab.active, .cost-tab:hover {
  background: var(--green); border-color: var(--green); color: white;
}
.cost-tab-content { display: none; }
.cost-tab-content.active { display: block; }

/* Comparison table */
.cost-table-wrap { background: rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.cost-table { width: 100%; border-collapse: collapse; }
.cost-table thead tr { background: rgba(255,255,255,0.08); }
.cost-table th { padding: 14px 20px; text-align: left; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.cost-table td { padding: 14px 20px; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cost-table tbody tr:last-child td { border-bottom: none; }
.cost-table tbody tr { transition: background .15s; }
.cost-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.country-cell { display: flex; align-items: center; gap: 10px; }
.country-flag-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.country-name { color: rgba(255,255,255,0.85); font-weight: 500; }
.cost-value { font-weight: 700; }
.cost-value.india-val { color: var(--green); }
.cost-value.other-val { color: rgba(255,255,255,0.55); }
.savings-bar-wrap { display: flex; align-items: center; gap: 10px; }
.savings-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.savings-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--green), var(--blue)); }
.savings-pct { font-size: 0.75rem; font-weight: 700; color: var(--green); white-space: nowrap; }
.india-row { background: rgba(29,184,122,0.06) !important; }
.india-row td:first-child { border-left: 3px solid var(--green); }
.best-badge { display: inline-block; background: var(--green); color: white; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 8px; vertical-align: middle; }

.cost-disclaimer { text-align: center; margin-top: 28px; font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.cost-disclaimer i { color: rgba(255,255,255,0.3); margin-right: 4px; }
.cost-cta { text-align: center; margin-top: 36px; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 5%;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.ss-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--green); }
.ss-label { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 4px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testi-card {
  background: white; border-radius: 18px; padding: 28px;
  border: 1.5px solid var(--border); position: relative;
}
.testi-card::before {
  content: '"'; font-size: 5rem; color: var(--green-light);
  font-family: Georgia, serif; position: absolute; top: 10px; left: 20px;
  line-height: 1;
}
.testi-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; margin-top: 30px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-country { font-size: 0.75rem; color: var(--muted); }
.testi-stars { color: #f5a623; font-size: 0.75rem; margin-top: 2px; }

/* ─── DISCOUNT BANNER ─── */
.discount-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 50px 5%; text-align: center; color: white;
}
.discount-banner h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; }
.discount-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 26px; }
.btn-white { background: white; color: var(--green-dark); padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s; text-decoration: none; display: inline-block; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; transition: background .2s; text-decoration: none; }
.footer-socials a:hover { background: var(--green); }
.footer-col h4 { color: white; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; font-size: 0.8rem; }

/* ─── POPUP MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,45,107,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 24px; max-width: 500px; width: 100%;
  padding: 36px; position: relative;
  transform: translateY(30px); transition: transform .3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-tag { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.modal h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.modal-sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.modal-doctor-info { display: flex; align-items: center; gap: 12px; background: var(--bg); border-radius: 12px; padding: 14px; margin-bottom: 22px; }
.modal-doc-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.modal-doc-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.modal-doc-spec { font-size: 0.78rem; color: var(--green-dark); }



/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .hero { flex-direction: column; gap: 50px; }
  .hero-form-wrap { width: 100%; max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-india-container {
      display: block;
  }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .navbar { padding: 0 4%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 4% 50px; }
  .section { padding: 60px 4%; }
  .treatments-grid, .doctors-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .step-item { flex: 0 0 50%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-form-wrap { width: 100%; }
  .hero-stats { gap: 20px; }
  .trust-inner { gap: 20px; }
  .cost-summary-grid { grid-template-columns: 1fr 1fr; }
  .cost-table th:last-child, .cost-table td:last-child { display: none; }
  .cost-tabs { gap: 6px; }
  .cost-tab { padding: 7px 14px; font-size: 0.78rem; }

}
@media (max-width: 400px) {
  .cost-summary-grid { grid-template-columns: 1fr; }
}


/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeInUp 0.6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-form-wrap { animation: fadeInUp 0.6s 0.3s ease both; }
