/* ===== SwasthyaGyan — Shared Styles ===== */
:root {
  --coral: #E07A5F;
  --coral-dark: #c9694f;
  --cream: #FFF5F0;
  --brown: #3A2722;
  --blush: #F0D2C3;
  --muted: #7a635b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(58,39,34,.08);
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit }
ul { list-style: none }
.container { width: 90%; max-width: 1100px; margin: 0 auto }
.section { padding: 64px 0 }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 12px }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 46px }

/* ===== Navbar ===== */
.navbar { background: var(--cream); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(58,39,34,.05) }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 700; color: var(--brown) }
.logo-mark { width: 38px; height: 38px; background: var(--coral); border-radius: 10px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1.1rem }
.logo b { color: var(--coral) }
.nav-links { display: flex; gap: 30px }
.nav-links a { font-weight: 500; transition: color .2s; position: relative }
.nav-links a:hover, .nav-links a.active { color: var(--coral) }
.nav-links a.active::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--coral); border-radius: 2px }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--brown); line-height: 1 }

/* ===== Buttons ===== */
.btn { display: inline-block; padding: 13px 30px; border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; border: 2px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, color .2s }
.btn-primary { background: var(--coral); color: #fff }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(224,122,95,.4) }
.btn-outline { background: transparent; color: var(--coral); border-color: var(--coral) }
.btn-outline:hover { background: var(--coral); color: #fff; transform: translateY(-2px) }

/* ===== Hero ===== */
.hero { text-align: center; padding: 84px 0 72px }
.hero-tag { display: inline-block; background: var(--blush); color: var(--coral-dark); padding: 6px 16px; border-radius: 20px; font-size: .85rem; font-weight: 600; margin-bottom: 22px }
.hero h1 { font-size: 2.9rem; line-height: 1.18; margin-bottom: 18px }
.hero h1 .accent { color: var(--coral) }
.hero .sub { font-size: 1.15rem; max-width: 660px; margin: 0 auto 34px; color: var(--muted) }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }

/* ===== Cards grid ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px }
.card { background: var(--white); border-left: 5px solid var(--coral); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s }
.card:hover { transform: translateY(-7px); box-shadow: 0 14px 32px rgba(58,39,34,.13) }
.card .icon { width: 54px; height: 54px; background: var(--blush); border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; color: var(--coral-dark) }
.card .icon svg { width: 28px; height: 28px }
.card h3 { font-size: 1.18rem; margin-bottom: 10px }
.card p { color: var(--muted); font-size: .97rem }

/* ===== Stats bar ===== */
.stats { background: var(--coral); color: #fff }
.stats .container { padding: 42px 0 }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center }
.stat .num { font-size: 2.1rem; font-weight: 700; line-height: 1.1 }
.stat .label { font-size: .95rem; opacity: .95; margin-top: 4px }

/* ===== Steps (how it works) ===== */
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 0 auto }
.step { display: flex; gap: 22px; align-items: flex-start; background: var(--white); border-left: 5px solid var(--coral); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow); transition: transform .25s }
.step:hover { transform: translateX(7px) }
.step-num { flex-shrink: 0; width: 46px; height: 46px; background: var(--coral); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 1.2rem }
.step-body h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: 1.15rem }
.step-body h3 svg { width: 20px; height: 20px; color: var(--coral) }
.step-body p { color: var(--muted) }

/* ===== Two-column benefits ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px }
.col-box { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border-top: 5px solid var(--coral) }
.col-box h3 { margin-bottom: 20px; color: var(--coral-dark); font-size: 1.3rem }
.col-box ul { display: flex; flex-direction: column; gap: 13px }
.col-box li { display: flex; gap: 11px; color: var(--brown) }
.col-box li::before { content: "✓"; color: var(--coral); font-weight: 700; flex-shrink: 0 }

/* ===== Pills (specialties) ===== */
.pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center }
.pill { background: var(--blush); color: var(--coral-dark); padding: 12px 26px; border-radius: 30px; font-weight: 600; transition: transform .2s }
.pill:hover { transform: translateY(-3px) }

/* ===== Testimonial ===== */
.testimonial { background: var(--blush); border-radius: var(--radius); padding: 44px; text-align: center; max-width: 720px; margin: 0 auto }
.testimonial-quote { font-size: 1.2rem; font-style: italic; margin-bottom: 18px; color: var(--brown) }
.testimonial-author { font-weight: 600; color: var(--coral-dark) }
.testimonial-note { font-size: .85rem; color: var(--muted); margin-top: 8px }

/* ===== Contact ===== */
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start }
.form-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); border-left: 5px solid var(--coral) }
.form-group { margin-bottom: 18px }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .93rem }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--blush); border-radius: 10px; font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--brown); transition: border-color .2s }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--coral) }
.form-group textarea { resize: vertical; min-height: 120px }
.form-msg { display: none; background: var(--blush); color: var(--coral-dark); padding: 12px 16px; border-radius: 10px; font-weight: 600; margin-bottom: 18px }
.info-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); border-top: 5px solid var(--coral) }
.info-card h3 { margin-bottom: 18px; color: var(--coral-dark) }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px }
.info-row .ic { width: 42px; height: 42px; flex-shrink: 0; background: var(--blush); border-radius: 11px; display: grid; place-items: center; color: var(--coral-dark) }
.info-row .ic svg { width: 20px; height: 20px }
.info-row .label { font-size: .82rem; color: var(--muted) }
.info-row .value { font-weight: 600 }
.map-placeholder { margin-top: 8px; background: var(--blush); border-radius: 11px; height: 160px; display: grid; place-items: center; color: var(--coral-dark); font-weight: 600; text-align: center; padding: 16px }

/* ===== Footer ===== */
.footer { background: var(--brown); color: var(--cream); text-align: center; padding: 32px 0; margin-top: 64px }
.footer a { color: var(--blush); font-weight: 600 }
.footer .sep { margin: 0 10px; opacity: .5 }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 67px; right: -100%; flex-direction: column; background: var(--cream); width: 64%; max-width: 280px; height: calc(100vh - 67px); padding: 34px 28px; gap: 24px; box-shadow: -6px 0 24px rgba(58,39,34,.15); transition: right .3s }
  .nav-links.open { right: 0 }
  .nav-toggle { display: block }
  .hero { padding: 56px 0 48px }
  .hero h1 { font-size: 2.05rem }
  .hero .sub { font-size: 1.05rem }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px }
  .two-col, .contact-wrap { grid-template-columns: 1fr }
  .section-title { font-size: 1.7rem }
}