/* ================================
   Kathmandu Mental Health Clinic
   Temporary framework stylesheet
   ================================ */

:root {
  --green: #5a8a63;
  --green-dark: #3f6647;
  --green-light: #eaf3ec;
  --ink: #14171a;
  --gray: #5b6169;
  --gray-light: #8b929a;
  --border: #e6e8e9;
  --bg: #ffffff;
  --bg-soft: #f7f8f6;
  --gold: #e8b84b;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(20, 23, 26, 0.06);
  --maxw: 1160px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.placeholder {
  background: repeating-linear-gradient(45deg, #fff7e0, #fff7e0 10px, #fdeeba 10px, #fdeeba 20px);
  border: 1px dashed #d8a72a;
  color: #8a6400;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(90,138,99,.35); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Top banner ---------- */
.top-banner {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
}
.top-banner a { color: var(--gold); font-weight: 700; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.brand-text .name { font-size: 15px; font-weight: 800; }
.brand-text .tagline { font-size: 11.5px; color: var(--gray); font-weight: 600; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--green-light) 0%, #fff 78%);
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero h1 { font-size: 44px; margin-bottom: 18px; }
.hero h1 .accent { color: var(--green-dark); }
.hero p.lead { font-size: 17px; color: var(--gray); max-width: 520px; margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-microlist { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-microlist li { font-size: 13.5px; font-weight: 600; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.hero-microlist li::before { content: "✓"; color: var(--green); font-weight: 800; }

.hero-visual {
  position: relative;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-visual .rating-chip {
  position: absolute;
  left: -14px;
  bottom: -18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-chip .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.rating-chip .num { font-weight: 800; font-size: 15px; }
.rating-chip .sub { font-size: 11.5px; color: var(--gray); }
.hero-visual img { border-radius: 16px; width: 100%; aspect-ratio: 4/3.1; object-fit: cover; background: var(--green-light); }

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
  text-align: center;
}
.trust-grid .stat-num { font-size: 26px; font-weight: 800; color: var(--green-dark); }
.trust-grid .stat-label { font-size: 12.5px; color: var(--gray); font-weight: 600; margin-top: 2px; }

/* ---------- Section shell ---------- */
section { padding: 72px 0; }
.section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.section-head .kicker { color: var(--green-dark); font-weight: 800; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.section-head h2 { font-size: 32px; margin-bottom: 12px; }
.section-head p { color: var(--gray); font-size: 15.5px; }

/* ---------- Why-us features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.feature-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 13.8px; color: var(--gray); }

/* ---------- Process ---------- */
.process { background: var(--bg-soft); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; }
.process-card .step-num {
  counter-increment: step;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.process-card h3 { font-size: 16px; margin-bottom: 8px; }
.process-card p { font-size: 13.8px; color: var(--gray); }

/* ---------- Doctors ---------- */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.doctor-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.doctor-photo {
  aspect-ratio: 4/3.4;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-body { padding: 20px 22px 24px; }
.doctor-body .name { font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.doctor-body .role { font-size: 13.5px; color: var(--green-dark); font-weight: 700; margin-bottom: 10px; }
.doctor-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.doctor-meta li { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.doctor-card.is-placeholder { opacity: .75; border-style: dashed; }
.doctor-card.is-placeholder .doctor-photo { background: repeating-linear-gradient(45deg, #f3f4f1, #f3f4f1 10px, #eceee9 10px, #eceee9 20px); color: var(--gray-light); }

/* ---------- Services / conditions ---------- */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pill {
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}
.pill:hover { border-color: var(--green); color: var(--green-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.service-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.service-card p { font-size: 13.8px; color: var(--gray); }

/* ---------- Compare table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); }
table.compare th { background: var(--bg-soft); font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--gray); }
table.compare td.check { text-align: center; color: var(--green-dark); font-weight: 800; font-size: 16px; }
table.compare tr:last-child td { border-bottom: none; }
table.compare td:first-child { font-weight: 600; }

/* ---------- Locations ---------- */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.location-card h3 { font-size: 17px; margin-bottom: 10px; }
.location-card p { color: var(--gray); font-size: 14px; margin-bottom: 4px; }
.country-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.country-chips span { font-size: 12.5px; background: var(--bg-soft); border: 1px solid var(--border); padding: 5px 10px; border-radius: var(--radius-pill); color: var(--gray); }

/* ---------- Testimonials ---------- */
.testimonial-box {
  border: 1px dashed #d8a72a;
  background: #fffaf0;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: #8a6400;
  font-weight: 600;
  font-size: 14.5px;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  margin: 0 auto 28px;
  width: fit-content;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-size: 15.5px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
}
.faq-q .plus { font-size: 20px; color: var(--green-dark); transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 20px; color: var(--gray); font-size: 14.3px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { font-size: 28px; margin-bottom: 12px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 26px; }
.cta-band .btn-outline { background: #fff; border-color: #fff; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #d7dad8; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 13.5px; margin-bottom: 16px; letter-spacing: .03em; text-transform: uppercase; }
.footer-col p, .footer-col li { font-size: 13.5px; color: #aeb3b0; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2b2f2c; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #8b918d; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  font-size: 26px;
  z-index: 60;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .process-grid, .doctors-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
  .features-grid, .process-grid, .doctors-grid, .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { margin: 0 16px; padding: 34px 22px; }
}
