/* ============================
   AKANKSHA IVF CENTRE — STYLES
   Warm & Luxurious Fertility Clinic
   ============================ */

:root {
  --rose: #C4736A;
  --rose-light: #E8A99E;
  --rose-pale: #FDF0EE;
  --gold: #C9973A;
  --gold-light: #F5E6C8;
  --cream: #FBF7F4;
  --white: #FFFFFF;
  --dark: #1A1210;
  --dark-mid: #3D2B27;
  --mid: #7A5C56;
  --light-text: #A08880;
  --border: #EDD9D3;
  --shadow: 0 4px 24px rgba(196,115,106,0.10);
  --shadow-lg: 0 12px 48px rgba(196,115,106,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), #A85850);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(196,115,106,0.3);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,115,106,0.4); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--rose);
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--rose);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--rose); color: white; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--rose);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.center-cta { text-align: center; margin-top: 48px; }

/* ── SECTION LABELS / TITLES ── */
.section-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 48px;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251,247,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-icon {
  font-size: 20px;
  color: var(--rose);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}
.logo-sub {
  font-size: 11px;
  color: var(--light-text);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.nav-cta { font-size: 13px !important; padding: 10px 22px !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 32px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--dark-mid); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob1 { width: 500px; height: 500px; background: radial-gradient(circle, #E8C3BE, transparent); top: -100px; left: -100px; }
.blob2 { width: 400px; height: 400px; background: radial-gradient(circle, #F5E6C8, transparent); top: 200px; right: -50px; }
.blob3 { width: 300px; height: 300px; background: radial-gradient(circle, #E8C3BE, transparent); bottom: 0; left: 40%; }

.hero-badge {
  display: inline-block;
  background: var(--rose-pale);
  color: var(--rose);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--light-text);
  margin-top: 4px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  width: 320px;
  height: 400px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder {
  text-align: center;
  color: var(--mid);
}
.placeholder-icon { font-size: 80px; }
.placeholder-icon.large { font-size: 100px; }
.placeholder-text { font-size: 14px; margin-top: 8px; }
.placeholder-text small { font-size: 12px; color: var(--light-text); }

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.card-f1 { top: 60px; left: -20px; animation-delay: 0s; }
.card-f2 { bottom: 80px; right: -20px; animation-delay: 1.5s; }

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

/* ── WHY US ── */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-card.featured {
  background: linear-gradient(135deg, var(--rose), #A85850);
  color: white;
  border: none;
}
.why-card.featured h3, .why-card.featured p { color: white; }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── TREATMENTS ── */
.treatments-preview { background: var(--cream); }
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  display: block;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.treatment-card:hover::before { transform: scaleX(1); }
.t-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.treatment-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.treatment-card p { font-size: 14px; color: var(--mid); margin-bottom: 16px; }
.t-arrow { color: var(--rose); font-size: 18px; font-weight: bold; }

/* ── DOCTOR PREVIEW ── */
.doctor-preview { background: var(--white); }
.doctor-preview-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-preview-img {
  position: relative;
}
.doc-img-placeholder {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--rose-pale), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}
.doc-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  box-shadow: var(--shadow);
  white-space: nowrap;
  border: 1px solid var(--border);
}
.doctor-preview-text .section-title { margin-bottom: 8px; }
.doc-subtitle {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-display);
}
.doctor-preview-text p { color: var(--mid); margin-bottom: 24px; }
.doc-highlights { margin-bottom: 32px; }
.doc-highlights li { font-size: 14px; color: var(--dark-mid); padding: 8px 0; border-bottom: 1px solid var(--border); }
.doc-highlights li:last-child { border-bottom: none; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--rose-pale); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.testimonial-card.featured-t {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  color: white;
  border: none;
}
.testimonial-card.featured-t p, .testimonial-card.featured-t .testimonial-author strong { color: white; }
.testimonial-card.featured-t .testimonial-author span { color: rgba(255,255,255,0.6); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.testimonial-card p { font-size: 14px; color: var(--mid); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--dark); }
.testimonial-author span { font-size: 12px; color: var(--light-text); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--rose), #A85850, var(--gold));
  color: white;
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-banner p { font-size: 16px; opacity: 0.85; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: white; }
.footer-brand p { font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); }
.footer-links h4, .footer-contact h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.05em; }
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose-light); }
.footer-contact p { font-size: 13px; margin-bottom: 10px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  padding: 140px 32px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--rose); font-style: italic; }
.page-hero p {
  font-size: 16px;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  width: 100%; height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--rose-pale), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  border: 2px solid var(--border);
}
.about-text p { color: var(--mid); margin-bottom: 20px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.value-card .why-icon { font-size: 28px; }
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; color: var(--dark); }
.value-card p { font-size: 14px; color: var(--mid); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 250px; height: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}
.team-avatar img {border-radius: 50%;}
.team-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.team-card span { font-size: 13px; color: var(--rose); display: block; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--mid); }

/* ── TREATMENTS PAGE ── */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.treatment-detail:last-child { border-bottom: none; }
.treatment-detail.reverse { direction: rtl; }
.treatment-detail.reverse > * { direction: ltr; }
.treatment-detail h2 { font-family: var(--font-display); font-size: 2rem; color: var(--dark); margin-bottom: 16px; }
.treatment-detail p { color: var(--mid); margin-bottom: 16px; }
.treatment-detail ul { margin: 16px 0; padding-left: 0; }
.treatment-detail ul li { font-size: 14px; color: var(--dark-mid); padding: 8px 0; border-bottom: 1px solid var(--border); padding-left: 20px; position: relative; }
.treatment-detail ul li::before { content: '✦'; position: absolute; left: 0; color: var(--rose); font-size: 10px; top: 10px; }
.treatment-img {
  width: 100%; height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--rose-pale), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  border: 2px solid var(--border);
}

/* ── DOCTOR PAGE ── */
.doctor-full {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.doctor-full-img {
  position: sticky;
  top: 90px;
}
.doc-full-placeholder {
  width: 100%; height: 390px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(160deg, var(--rose-pale), var(--gold-light));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px solid var(--border);
  font-size: 90px;
}
.credentials-list { margin: 24px 0; }
.credential-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cred-year { font-size: 13px; color: var(--light-text); min-width: 50px; }
.cred-text h4 { font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.cred-text p { font-size: 13px; color: var(--mid); }
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.award-card { background: white; border-radius: var(--radius-sm); padding: 16px; border: 1px solid var(--border); }
.award-card .why-icon { font-size: 24px; margin-bottom: 8px; }
.award-card p { font-size: 13px; color: var(--mid); }

/* ── SUCCESS STORIES ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.story-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-header {
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.story-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid white;
}
.story-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--dark); }
.story-meta { font-size: 12px; color: var(--light-text); }
.story-body { padding: 24px 32px; }
.story-treatment {
  display: inline-block;
  background: var(--rose-pale);
  color: var(--rose);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.story-body p { font-size: 14px; color: var(--mid); font-style: italic; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--dark);
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; font-weight: 600; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--mid); display: block; }
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--dark);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--dark-mid); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--rose);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #e8f5e9;
  color: #388e3c;
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}

/* ── DROPDOWN NAV ── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 6px);
}
.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--dark-mid) !important;
  transition: all 0.15s;
  border-bottom: none !important;
}
.dropdown a:hover {
  background: var(--rose-pale);
  color: var(--rose) !important;
  padding-left: 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid, .treatments-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doctor-preview-inner, .doctor-full, .about-story { grid-template-columns: 1fr; }
  .treatment-detail { grid-template-columns: 1fr; }
  .treatment-detail.reverse { direction: ltr; }
  .hero { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .why-grid, .treatments-grid, .team-grid, .testimonials-grid, .stories-grid, .contact-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .awards-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════ */
.announcement-bar {
  background: linear-gradient(90deg, var(--rose), #A85850, var(--gold), #A85850, var(--rose));
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  color: white;
  padding: 10px 0;
  overflow: hidden;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  z-index: 999;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.announcement-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-track span { flex-shrink: 0; }
.hero-banner { margin-top: 110px; }

/* ════════════════════════════════
   HERO BANNER — FULL WIDTH SLIDER
   ════════════════════════════════ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
}
.banner-slides { width: 100%; height: 100%; position: relative; }
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.slide-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.banner-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  color: white; width: 100%;
}
.banner-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 8px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 2s ease infinite; flex-shrink: 0;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}
.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.05;
  color: white; margin-bottom: 20px;
}
.banner-title em { font-style: italic; color: #F5C6C0; display: block; }
.banner-desc {
  font-size: 16px; color: rgba(255,255,255,0.85);
  max-width: 520px; line-height: 1.75; margin-bottom: 36px;
}
.banner-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-banner-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--rose), #A85850);
  color: white; padding: 15px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(196,115,106,0.5); white-space: nowrap;
}
.btn-banner-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(196,115,106,0.65); }
.btn-banner-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4); color: white;
  padding: 13px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 500; transition: all 0.3s; white-space: nowrap;
}
.btn-banner-outline:hover { background: rgba(255,255,255,0.22); border-color: white; }
.banner-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.bstat { text-align: center; }
.bstat-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #F5C6C0; line-height: 1; }
.bstat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 4px; white-space: nowrap; letter-spacing: 0.04em; }
.bstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.banner-float-cards {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 16px;
}
.float-card {
  background: rgba(255,255,255,0.13); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 16px;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  color: white; min-width: 200px; animation: floatCard 3s ease-in-out infinite;
}
.fc1 { animation-delay: 0s; }
.fc2 { animation-delay: 1s; }
.fc3 { animation-delay: 2s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fc-icon { font-size: 28px; flex-shrink: 0; }
.fc-title { font-size: 13px; font-weight: 700; color: white; }
.fc-sub { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.banner-treatments { display: flex; gap: 10px; flex-wrap: wrap; }
.banner-treatments span {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 500;
}
.banner-creds { display: flex; gap: 16px; flex-wrap: wrap; }
.bcred {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); color: white;
  padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 500;
}
.banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  width: 52px; height: 52px; border-radius: 50%; font-size: 20px;
  cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.banner-arrow:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-50%) scale(1.1); }
.banner-prev { left: 24px; }
.banner-next { right: 24px; }
.banner-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.dot.active { background: white; transform: scale(1.3); }
.scroll-indicator {
  position: absolute; bottom: 32px; right: 60px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform:scaleY(1); opacity:1; } 50% { transform:scaleY(0.5); opacity:0.5; } }

/* ════════════════════════════════
   WHATSAPP + CALL FLOATING BUTTONS
   ════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
.whatsapp-tooltip {
  position: absolute; right: 68px;
  background: #25D366; color: white;
  padding: 6px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.call-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--rose); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(196,115,106,0.5); transition: all 0.3s;
  animation: callPulse 2s ease infinite;
}
.call-float:hover { transform: scale(1.1); animation: none; }
@keyframes callPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(196,115,106,0.5); }
  50% { box-shadow: 0 4px 36px rgba(196,115,106,0.8), 0 0 0 10px rgba(196,115,106,0.15); }
}
/* Banner JS script added inline in HTML */
@media(max-width:1024px) {
  .banner-float-cards { display: none; }
  .banner-content { padding: 0 40px; }
}
@media(max-width:768px) {
  .hero-banner { height: auto; min-height: 100vh; max-height: none; }
  .banner-slide { padding: 20px 0; }
  .banner-content { padding: 40px 24px; }
  .banner-title { font-size: 2.4rem; }
  .banner-stats { gap: 16px; }
  .bstat-num { font-size: 1.5rem; }
  .banner-arrow { display: none; }
  .scroll-indicator { display: none; }
}


.treatments-grid{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.treatment-card{
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  padding: 28px;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.treatment-card *{
  display: block !important;
}

.t-arrow{
  margin-top: auto;
}
.treatments-grid p {display: none;}
:root{
  --scroll-offset: 150px;
}

section[id]{
  scroll-margin-top: var(--scroll-offset);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.pricing-card {
  background: white; border-radius: var(--radius); border: 2px solid var(--border);
  padding: 36px 28px; text-align: center; transition: all 0.3s; position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--rose); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: white; padding: 4px 20px;
  border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; white-space: nowrap;
}
.price-icon { font-size: 40px; margin-bottom: 16px; }
.price-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.price-range {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--rose); line-height: 1; margin: 16px 0 4px;
}
.price-sub { font-size: 12px; color: var(--light-text); margin-bottom: 20px; }
.price-includes { text-align: left; margin-bottom: 24px; }
.price-includes li {
  font-size: 13px; color: var(--mid); padding: 6px 0;
  border-bottom: 1px solid var(--border); padding-left: 20px; position: relative;
}
.price-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 700; }
.cost-table { width: 100%; border-collapse: collapse; margin-bottom: 48px; }
.cost-table th {
  background: var(--dark); color: white; padding: 14px 20px;
  text-align: left; font-size: 13px; font-weight: 500;
}
.cost-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.cost-table tr:nth-child(even) { background: var(--cream); }
.cost-table tr:hover { background: var(--rose-pale); }
.cost-table .price-col { font-weight: 600; color: var(--rose); }
.emi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.emi-card {
  background: white; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); text-align: center;
}
.emi-amount { font-family: var(--font-display); font-size: 1.8rem; color: var(--rose); font-weight: 600; }
.emi-period { font-size: 13px; color: var(--mid); margin-top: 4px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--rose); color: white; padding: 14px 20px; font-size: 13px; }
.compare-table th:first-child { background: var(--dark); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table tr:nth-child(even) td { background: var(--cream); }
.check { color: #2e7d32; font-weight: 700; }
.cross { color: #c62828; }
@media(max-width:768px){.pricing-grid,.emi-cards{grid-template-columns:1fr;}}
@media(max-width:1024px){.pricing-grid{grid-template-columns:1fr 1fr;}}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    display: none;
    z-index: 999;
    padding: 0;
    margin: 0;
}

.nav-links .sub-menu li {
    width: 100%;
}

.nav-links .sub-menu a {
    display: block;
    padding: 12px 15px;
}

.nav-links li:hover > .sub-menu {
    display: block;
}

.rating-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.rating-label { font-size: 13px; color: var(--mid); width: 50px; }
.rating-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--rose)); border-radius: 4px; }
.rating-count { font-size: 13px; color: var(--light-text); width: 40px; text-align: right; }
.review-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  padding: 28px; transition: all 0.3s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: white; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 15px; color: var(--dark); }
.review-meta { font-size: 12px; color: var(--light-text); }
.review-treatment {
  display: inline-block; background: var(--rose-pale); color: var(--rose);
  padding: 3px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; margin-bottom: 12px;
}
.review-text { font-size: 14px; color: var(--mid); line-height: 1.8; font-style: italic; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 8px 18px; border-radius: 50px; border: 1px solid var(--border);
  background: white; font-size: 13px; color: var(--mid); cursor: pointer; transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--rose); color: white; border-color: var(--rose); }
.overall-rating { background: white; border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: center; margin-bottom: 48px; }

/* ------------blogs--------------*/
.big-rating { text-align: center; }
.big-num { font-family: var(--font-display); font-size: 5rem; color: var(--rose); font-weight: 600; line-height: 1; }
.big-stars { color: var(--gold); font-size: 22px; margin: 4px 0; }
.big-count { font-size: 13px; color: var(--light-text); }
@media(max-width:768px){.review-grid{grid-template-columns:1fr;}.overall-rating{grid-template-columns:1fr;text-align:center;}}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 180px; background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  position: relative;
}
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--rose); color: white; padding: 4px 12px;
  border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12px; color: var(--light-text); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.blog-read { color: var(--rose); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-read:hover { gap: 8px; }
.blog-featured {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden;
  margin-bottom: 64px; box-shadow: var(--shadow);
}
.blog-featured-img {
  background: linear-gradient(135deg, var(--rose), #A85850);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
  min-height: 320px;
}
.blog-featured-body { padding: 48px; }
.blog-featured-body .blog-title { font-size: 1.8rem; margin-bottom: 16px; }
.categories-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-pill {
  padding: 7px 18px; border-radius: 50px; background: white; border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--mid); cursor: pointer; transition: all 0.2s;
}
.cat-pill.active, .cat-pill:hover { background: var(--rose); color: white; border-color: var(--rose); }
.newsletter-box {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  border-radius: var(--radius); padding: 48px; text-align: center; color: white; margin-top: 64px;
}
.newsletter-box h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.newsletter-box p { opacity: 0.8; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 13px 18px; border-radius: 50px; border: none;
  font-family: var(--font-body); font-size: 14px; outline: none;
}
@media(max-width:1024px){.blog-grid{grid-template-columns:repeat(2,1fr);}.blog-featured{grid-template-columns:1fr;}}
@media(max-width:768px){.blog-grid{grid-template-columns:1fr;}.newsletter-form{flex-direction:column;}.blog-featured-body{padding:28px;}}

/* ------------fqs--------------*/
.faq-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.faq-cat-btn {
  padding: 8px 20px; border-radius: 50px; border: 2px solid var(--border);
  background: white; font-size: 13px; font-weight: 500; color: var(--mid);
  cursor: pointer; transition: all 0.2s;
}
.faq-cat-btn.active, .faq-cat-btn:hover { background: var(--rose); color: white; border-color: var(--rose); }
.faq-section { margin-bottom: 48px; }
.faq-section-title {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--rose-pale);
  display: flex; align-items: center; gap: 10px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--dark); cursor: pointer; text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--rose); }
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--rose-pale);
  color: var(--rose); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0; transition: all 0.3s;
}
.faq-q.open .faq-icon { background: var(--rose); color: white; transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 0 20px 44px;
  font-size: 14px; color: var(--mid); line-height: 1.8;
}
.faq-a.open { display: block; }
.ask-box {
  background: linear-gradient(135deg, var(--rose), #A85850);
  border-radius: var(--radius); padding: 40px; color: white; text-align: center;
  margin-top: 64px;
}
.ask-box h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.ask-box p { opacity: 0.9; margin-bottom: 24px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--dark); cursor: pointer; text-align: left;
}
.faq-q:hover { color: var(--rose); }
.faq-a {
  display: none; padding: 0 0 20px 0;
  font-size: 14px; color: var(--mid); line-height: 1.75;
}
.faq-a.open { display: block; }
.hidden-fields-container {display: none;}
.faq-a{
    display:none;
}

.faq-a.open{
    display:block;
}

