
:root {
  --bg: #f7f7f8;
  --surface: rgba(255,255,255,0.96);
  --surface-soft: #f2f6f7;
  --text: #0f172a;
  --muted: #5f6677;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #1ac7a2;
  --accent-2: #57d6ff;
  --accent-dark: #09122b;
  --shadow: 0 26px 65px rgba(11, 18, 39, 0.08);
  --radius: 28px;
  --radius-lg: 34px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87,214,255,.48), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,171,194,.28), transparent 24%),
    linear-gradient(180deg, #f6f7fb 0%, #fbfcff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-gap { padding: 88px 0; }
.section-gap-lg { padding: 42px 0 96px; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 92px;
}
.brand { display: inline-flex; align-items: center; gap: 16px; }
.brand-logo { width: 58px; height: 58px; border-radius: 18px; box-shadow: 0 18px 30px rgba(26,199,162,.18); }
.brand-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-subtitle { margin-top: 4px; font-size: .86rem; color: var(--muted); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: .95rem; color: #1f2937; font-weight: 600;
}
.nav-links a:not(.btn):hover { color: #0ea5e9; }
.menu-toggle {
  display: none; width: 58px; height: 58px; border-radius: 20px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.75); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--accent-dark); border-radius: 999px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 800; letter-spacing: -0.01em;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { height: 44px; padding: 0 18px; font-size: .92rem; }
.btn-dark { background: var(--accent-dark); color: white; box-shadow: 0 18px 30px rgba(9,18,43,.16); }
.btn-light { background: rgba(255,255,255,.92); color: var(--accent-dark); border-color: rgba(255,255,255,.9); }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.42); }
.hero-card {
  background: white; border: 1px solid rgba(15,23,42,.06); border-radius: 34px; box-shadow: var(--shadow);
  padding: 18px; display: grid; grid-template-columns: 1.02fr 1fr; gap: 22px;
}
.hero-copy {
  border-radius: 28px;
  padding: 48px clamp(26px, 5vw, 54px);
  min-height: 600px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, rgba(87,214,255,.08), rgba(26,199,162,.08));
}
.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -0.05em; margin: 28px 0 18px;
  max-width: 12ch;
}
.hero-copy p { color: var(--muted); font-size: 1.02rem; line-height: 1.9; max-width: 44ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-badge { width: fit-content; max-width: 100%; }
.hero-media { position: relative; min-height: 600px; }
.hero-photo {
  position: absolute; inset: 0; border-radius: 28px; background-size: cover; background-position: center;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(270deg, rgba(13,110,253,.08), rgba(0,0,0,.04));
}
.hero-glow {
  position: absolute; inset: 18px; border-radius: 28px; border: 1px solid rgba(255,255,255,.16); pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px;
  padding: 11px 16px; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  color: #09987e; background: rgba(26,199,162,.10); border: 1px solid rgba(26,199,162,.16);
}
.eyebrow.light { color: rgba(255,255,255,.86); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); }
.split-grid { display: grid; gap: 48px; align-items: center; }
.mission-grid, .trust-grid, .story-grid, .inner-hero-grid { grid-template-columns: 1.02fr .98fr; }
.mission-copy h2, .section-heading h2, .trust-grid h2, .inner-hero h1, .cta-banner h2, .story-grid h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1.06; letter-spacing: -0.05em; margin: 18px 0 18px;
}
.mission-copy p, .section-heading p, .trust-grid p, .inner-hero p, .story-grid p, .service-panel p {
  color: var(--muted); font-size: 1rem; line-height: 1.85;
}
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 30px 0 28px; }
.mini-stat { background: rgba(255,255,255,.72); padding: 22px; border-radius: 24px; border: 1px solid rgba(15,23,42,.06); box-shadow: 0 18px 34px rgba(15,23,42,.04); }
.mini-stat-index {
  width: 34px; height: 34px; display: inline-grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, rgba(87,214,255,.22), rgba(26,199,162,.18)); color: #0b4f64; font-weight: 800; margin-bottom: 14px;
}
.mini-stat h3 { margin: 0 0 10px; font-size: 1.15rem; letter-spacing: -0.03em; }
.mission-stack { position: relative; min-height: 620px; }
.mission-photo {
  position: absolute; inset: 0; border-radius: 30px; background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.mission-photo::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.06));
}
.chat-bubble {
  position: absolute; background: rgba(255,255,255,.95); color: #111827; padding: 14px 18px; border-radius: 18px; max-width: 230px;
  font-size: .94rem; line-height: 1.4; box-shadow: 0 18px 36px rgba(15,23,42,.12);
}
.bubble-top { top: 26px; left: 26px; }
.bubble-middle { left: -10px; top: 250px; }
.bubble-bottom { right: -10px; bottom: 34px; }
.split-head {
  display: grid; grid-template-columns: 1fr minmax(280px, 420px); align-items: end; gap: 34px; margin-bottom: 42px;
}
.pill-link {
  display: inline-flex; margin-top: 22px; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line); background: white; font-weight: 700;
}
.feature-cards.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
.feature-card {
  min-height: 430px; border-radius: 28px; overflow: hidden; position: relative; box-shadow: var(--shadow); border: 1px solid rgba(15,23,42,.06);
}
.image-card { background-size: cover; background-position: center; }
.soft-card { background: linear-gradient(180deg, #f4f7f8, #edf2f4); }
.tall-card { min-height: 470px; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(9,18,43,.55)); }
.card-overlay.dark { background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(9,18,43,.76)); }
.card-content {
  position: relative; z-index: 2; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; min-height: 100%;
}
.card-content h3 { margin: 0; font-size: clamp(1.6rem, 2vw, 2.3rem); line-height: 1.15; letter-spacing: -0.04em; }
.card-content p { margin: 0; line-height: 1.75; }
.white-text { color: white; }
.dark-text { color: var(--text); }
.service-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.mini-service-card {
  padding: 24px; border-radius: 22px; background: rgba(255,255,255,.82); border: 1px solid rgba(15,23,42,.06); box-shadow: 0 18px 30px rgba(15,23,42,.05);
}
.mini-service-card h4 { margin: 0 0 10px; font-size: 1.08rem; }
.mini-service-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.alt-band {
  background: linear-gradient(180deg, rgba(87,214,255,.08), rgba(26,199,162,.06));
  border-top: 1px solid rgba(15,23,42,.05); border-bottom: 1px solid rgba(15,23,42,.05);
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li {
  position: relative; padding-left: 30px; color: #111827; line-height: 1.6; font-weight: 600;
}
.check-list li::before {
  content: '•'; position: absolute; left: 0; top: -2px; font-size: 1.45rem; color: var(--accent);
}
.check-list.compact { gap: 10px; }
.trust-card, .booking-tips-card, .form-side-card, .contact-card, .service-panel, .doctor-card-premium, .value-card, .stat-panel, .steps-grid article {
  background: rgba(255,255,255,.88); border: 1px solid rgba(15,23,42,.06); box-shadow: var(--shadow);
}
.trust-card { padding: 20px; border-radius: 32px; }
.cta-banner {
  background: linear-gradient(135deg, #7c8ef9 0%, #7fc8ff 25%, #79e2d0 100%);
  color: #09122b; border-radius: 34px; padding: 36px clamp(24px, 4vw, 52px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.site-footer {
  background: #03102f; color: rgba(255,255,255,.82); margin-top: 34px; padding-top: 68px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand-title { color: white; }
.footer-brand .brand-subtitle { color: rgba(255,255,255,.55); }
.footer-text { max-width: 35ch; line-height: 1.8; color: rgba(255,255,255,.62); }
.site-footer h4 { margin: 4px 0 18px; color: white; font-size: 1.02rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.footer-links a { color: rgba(255,255,255,.74); }
.footer-bottom {
  margin-top: 42px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.55); font-size: .94rem;
}
.inner-hero { background: transparent; }
.rounded-photo, .inner-photo {
  min-height: 500px; border-radius: 32px; background-size: cover; background-position: center; box-shadow: var(--shadow); border: 1px solid rgba(15,23,42,.06);
}
.card-image-holder { background: white; display: grid; place-items: center; padding: 14px; }
.values-grid, .doctor-grid, .service-list-grid { display: grid; gap: 22px; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.value-card { padding: 30px; border-radius: 28px; }
.value-card span, .steps-grid span {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(87,214,255,.22), rgba(26,199,162,.18)); font-weight: 800; color: #0b4f64; margin-bottom: 18px;
}
.value-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.value-card p { margin: 0; color: var(--muted); line-height: 1.8; }
.about-side-stack { display: grid; gap: 18px; }
.stat-panel { border-radius: 26px; padding: 26px; }
.stat-panel strong { display: block; font-size: 2.6rem; letter-spacing: -0.05em; }
.stat-panel span { color: var(--muted); }
.service-list-grid { grid-template-columns: repeat(2, 1fr); }
.service-panel { padding: 28px; border-radius: 26px; }
.service-panel h3 { margin: 0 0 12px; font-size: 1.45rem; letter-spacing: -0.04em; }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.steps-grid article { padding: 24px; border-radius: 24px; }
.steps-grid h4 { margin: 0 0 8px; }
.steps-grid p { margin: 0; color: var(--muted); }
.refined-doctors { grid-template-columns: repeat(2, 1fr); }
.doctor-card-premium {
  padding: 18px; border-radius: 30px; display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: center;
}
.doctor-card-premium img { width: 100%; border-radius: 24px; }
.doctor-card-premium h3 { margin: 0 0 8px; font-size: 1.55rem; letter-spacing: -0.04em; }
.doctor-card-premium p { margin: 0 0 10px; color: #09987e; font-weight: 800; }
.doctor-card-premium span { color: var(--muted); line-height: 1.75; }
.booking-layout, .contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: start; }
.form-card, .form-side-card, .booking-tips-card {
  padding: 30px; border-radius: 30px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid-single { grid-template-columns: 1fr; }
label { display: block; }
label span { display: block; margin-bottom: 10px; font-weight: 700; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.88);
  border-radius: 18px; padding: 15px 16px; font: inherit; color: var(--text); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(26,199,162,.48); box-shadow: 0 0 0 4px rgba(26,199,162,.08); }
.full-width { margin-top: 18px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { border-radius: 24px; padding: 24px; }
.contact-card h3 { margin: 0 0 10px; }
.contact-card p { margin: 0; color: var(--muted); line-height: 1.75; }
@media (max-width: 1080px) {
  .hero-card, .mission-grid, .trust-grid, .story-grid, .inner-hero-grid, .booking-layout, .contact-grid, .split-head { grid-template-columns: 1fr; }
  .feature-cards.three-col, .values-grid, .service-mini-grid, .service-list-grid, .refined-doctors, .footer-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .hero-copy, .hero-media { min-height: unset; }
  .hero-media { height: 520px; }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: calc(100% + 12px);
    background: rgba(255,255,255,.95); border: 1px solid rgba(15,23,42,.08); border-radius: 24px; box-shadow: var(--shadow);
    padding: 18px; display: none; flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .hero-copy { padding: 34px 24px; }
  .hero-copy h1, .mission-copy h2, .section-heading h2, .trust-grid h2, .inner-hero h1, .cta-banner h2, .story-grid h2 { font-size: clamp(2.25rem, 8vw, 3.6rem); }
  .feature-cards.three-col, .values-grid, .service-mini-grid, .service-list-grid, .refined-doctors, .footer-grid, .contact-cards, .steps-grid, .stats-row { grid-template-columns: 1fr; }
  .doctor-card-premium { grid-template-columns: 1fr; }
  .footer-bottom, .cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .nav-wrap { min-height: 82px; }
  .brand-logo { width: 50px; height: 50px; }
  .brand-title { font-size: 1.14rem; }
  .hero-card { padding: 10px; gap: 12px; border-radius: 24px; }
  .hero-copy { border-radius: 22px; }
  .hero-media { height: 430px; }
  .mission-stack { min-height: 430px; }
  .bubble-middle { left: 14px; top: 210px; }
  .bubble-bottom { right: 14px; }
  .chat-bubble { max-width: 190px; font-size: .82rem; padding: 12px 14px; }
  .btn, .btn-sm { width: 100%; }
  .hero-actions, .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}


/* Chat widget */
.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.chat-fab {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #09122b 0%, #0f1d44 100%);
  box-shadow: 0 24px 55px rgba(7, 14, 33, 0.26);
}
.chat-fab-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.chat-fab-icon svg { width: 22px; height: 22px; }
.chat-fab-copy { display: flex; flex-direction: column; align-items: flex-start; }
.chat-fab-copy strong { font-size: 14px; line-height: 1; }
.chat-fab-copy small { margin-top: 4px; font-size: 11px; color: rgba(255,255,255,0.7); }
.chat-panel {
  width: min(400px, calc(100vw - 24px));
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 32px 80px rgba(8, 15, 34, 0.22);
}
.chat-panel[hidden] { display: none !important; }
.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, rgba(87,214,255,0.16), rgba(26,199,162,0.16));
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.chat-panel-brand { display: flex; align-items: center; gap: 12px; }
.chat-panel-logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.chat-panel-brand strong { display: block; font-size: 15px; }
.chat-panel-brand span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.chat-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.84);
  color: var(--accent-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.chat-suggestions {
  display: flex;
  gap: 8px;
  padding: 12px 16px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.chat-suggestions::-webkit-scrollbar { display: none; }
.chat-suggestions button {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
  cursor: pointer;
}
.chat-messages {
  height: 360px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.58), rgba(242,246,247,0.92));
}
.chat-message { display: flex; }
.chat-message-user { justify-content: flex-end; }
.chat-bubble-message {
  max-width: 84%;
  border-radius: 20px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  white-space: pre-wrap;
}
.chat-message-bot .chat-bubble-message {
  background: white;
  color: var(--text);
  border-bottom-left-radius: 8px;
}
.chat-message-user .chat-bubble-message {
  background: linear-gradient(135deg, #0f1d44 0%, #09122b 100%);
  color: white;
  border-bottom-right-radius: 8px;
}
.chat-message-status .chat-bubble-message {
  background: rgba(15,23,42,0.06);
  color: var(--muted);
  font-size: 13px;
}
.chat-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(15,23,42,0.06);
  background: white;
}
.chat-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  font: inherit;
  color: var(--text);
  background: #fbfcff;
}
.chat-input-wrap input:focus { border-color: rgba(26,199,162,0.6); box-shadow: 0 0 0 4px rgba(26,199,162,0.12); }
.chat-send {
  border: 0;
  border-radius: 16px;
  padding: 0 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}
.chat-footnote {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 11px;
  color: var(--muted);
  background: white;
}
.chat-footnote span { color: var(--accent-dark); font-weight: 700; }
.chat-fab.is-hidden { display: none; }

@media (max-width: 720px) {
  .chat-widget {
    right: 12px;
    left: 12px;
    bottom: 12px;
    align-items: stretch;
  }
  .chat-fab {
    width: 100%;
    justify-content: center;
  }
  .chat-panel {
    width: 100%;
    max-height: calc(100vh - 110px);
  }
  .chat-messages { height: min(46vh, 380px); }
}
