/* ============================================================
   CityHealth — AI Health Support Portal
   styles.css
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  color: #111827;
  line-height: 1.5;
}

/* ── Utility ── */
.btn {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.88; }
.btn-outline {
  background: #fff;
  border: 0.5px solid #d1d5db;
  color: #374151;
}
.btn-primary {
  background: #185FA5;
  color: #fff;
  border: none;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 58px;
  border-bottom: 0.5px solid #e5e7eb;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #185FA5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.logo-sub {
  font-size: 11px;
  color: #9ca3af;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #185FA5;
  font-weight: 500;
}

.nav-cta {
  display: flex;
  gap: 8px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: #0A3D6B;
  color: #fff;
  padding: 56px 32px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.hero-bg--1 { width: 300px; height: 300px; top: -80px; right: 120px; }
.hero-bg--2 { width: 160px; height: 160px; bottom: -40px; right: 60px; }

.hero-content { flex: 1; position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-call-card {
  background: rgba(255, 255, 255, 0.10);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.call-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.call-sub {
  font-size: 11px;
  opacity: 0.65;
  margin-top: 2px;
}

.call-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: #fff;
  color: #185FA5;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.call-btn:hover { opacity: 0.88; }

.hero-tip {
  font-size: 12px;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero visual */
.hero-visual {
  flex-shrink: 0;
  position: relative;
}

.hero-img-box {
  width: 220px;
  height: 240px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-inner { text-align: center; }

.hero-img-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-img-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-img-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0.5px solid #e5e7eb;
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EAF3DE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #3B6D11;
}

.hero-badge-title {
  font-size: 12px;
  font-weight: 600;
  color: #111827;
}

.hero-badge-sub {
  font-size: 10px;
  color: #9ca3af;
}

/* ============================================================
   How It Works
   ============================================================ */
.section {
  padding: 40px 32px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #185FA5;
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  border: 0.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  transition: box-shadow 0.2s;
}
.step-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E6F1FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #185FA5;
  margin-bottom: 12px;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}
.step-icon--blue { background: #E6F1FB; color: #185FA5; }
.step-icon--green { background: #EAF3DE; color: #3B6D11; }
.step-icon--amber { background: #FAEEDA; color: #854F0B; }

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}

.step-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* ============================================================
   Services
   ============================================================ */
.services {
  padding: 0 32px 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-card {
  border: 0.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.service-icon--blue  { background: #E6F1FB; color: #185FA5; }
.service-icon--green { background: #EAF3DE; color: #3B6D11; }
.service-icon--amber { background: #FAEEDA; color: #854F0B; }
.service-icon--pink  { background: #FBEAF0; color: #993556; }

.service-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.service-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* ============================================================
   Tip Bar
   ============================================================ */
.tip-bar {
  margin: 0 32px 32px;
  background: #FFFBEB;
  border: 0.5px solid #FDE68A;
  border-radius: 10px;
  padding: 11px 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #92400E;
}

.tip-bar .ti-bulb {
  font-size: 15px;
  color: #D97706;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  margin: 0 32px 40px;
  background: #0A3D6B;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.cta-text { flex: 1; }

.cta-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cta-sub {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
}

.cta-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cta-btn-w {
  padding: 10px 18px;
  border-radius: 8px;
  background: #fff;
  color: #185FA5;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s;
}
.cta-btn-w:hover { opacity: 0.88; }

.cta-btn-o {
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cta-btn-o:hover { background: rgba(255, 255, 255, 0.18); }

/* ============================================================
   Human Fallback
   ============================================================ */
.human-sect {
  padding: 0 32px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.human-img {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  background: #f0f7ff;
  border: 0.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 44px;
  color: #185FA5;
}

.human-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.human-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 440px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #111827;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 24px;
}

.footer-brand { display: flex; flex-direction: column; gap: 10px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #185FA5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.footer-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-tagline {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 200px;
}

.social-row { display: flex; gap: 7px; }

.social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9ca3af;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.social-btn:hover { background: #374151; }

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}
.footer-links a:hover { color: #9ca3af; }

.footer-bottom {
  background: #0d1117;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 11px;
  color: #6b7280;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-powered .ti-wave-sine {
  font-size: 12px;
  color: #185FA5;
}

/* ============================================================
   Voice Widget
   ============================================================ */
.widget-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.widget-card {
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(12, 68, 124, 0.20);
  background: #fff;
  /* Hidden by default — JS toggles visibility */
  display: none;
}
.widget-card.is-open { display: block; }

/* Widget header */
.wc-header {
  background: #0A3D6B;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wc-header-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.wc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.wc-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.wc-status {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 1px;
}

.wc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9FE1CB;
  flex-shrink: 0;
}
.wc-dot.is-speaking { background: #378ADD; }
.wc-dot.is-thinking { background: #FAEEDA; }

.wc-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  transition: background 0.15s;
}
.wc-close:hover { background: rgba(255, 255, 255, 0.25); }

/* Tabs */
.wc-tabs {
  display: flex;
  background: #f9fafb;
  border-bottom: 0.5px solid #e5e7eb;
}

.wc-tab {
  flex: 1;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  color: #6b7280;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.wc-tab.active {
  color: #185FA5;
  border-bottom-color: #185FA5;
  background: #fff;
}
.wc-tab:hover:not(.active) { color: #374151; }

/* Body */
.wc-body {
  background: #fff;
  padding: 14px 12px;
}

.transcript-box {
  background: #f9fafb;
  border-radius: 8px;
  padding: 9px 11px;
  margin-bottom: 10px;
  border: 0.5px solid #e5e7eb;
}

.t-label {
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.t-text {
  font-size: 11px;
  color: #111827;
  line-height: 1.5;
}
.t-text--muted { color: #6b7280; }

/* Waveform */
.wave-row { margin-bottom: 10px; }

.wave-lbl {
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wave-lbl .ti-volume { font-size: 11px; color: #185FA5; }

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 36px;
}

.waveform .bar {
  width: 3px;
  border-radius: 2px;
  background: #185FA5;
  transition: height 0.1s ease;
}

/* State pill */
.state-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.state-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  background: #E6F1FB;
  color: #185FA5;
}
.state-pill.is-listening {
  background: #EAF3DE;
  color: #3B6D11;
}
.state-pill.is-thinking {
  background: #FAEEDA;
  color: #854F0B;
}

/* Mic button */
.mic-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 8px 0 10px;
}

.mic-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #EBF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ring-pulse {
  position: absolute;
  border-radius: 50%;
  animation: ringPulse 1.8s ease-out infinite;
}
.rp1 { width: 60px; height: 60px; border: 2px solid #378ADD; }
.rp2 { width: 60px; height: 60px; border: 1.5px solid #B5D4F4; animation-delay: 0.6s; }

@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  100% { transform: scale(1.65); opacity: 0;   }
}

.mic-ring.is-listening .ring-pulse { animation-play-state: running; }
.mic-ring.is-idle      .ring-pulse { animation-play-state: paused;  opacity: 0; }

.mic-inner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #185FA5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: #fff;
  transition: background 0.15s;
}
.mic-inner:hover { background: #0C447C; }
.mic-inner.is-active { background: #E24B4A; }

.mic-hint {
  font-size: 10px;
  color: #9ca3af;
  text-align: center;
}

/* Doctor recommendation */
.rec-label {
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rec-label .ti-sparkles { font-size: 11px; color: #185FA5; }

.rec-card {
  border: 0.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 9px 10px;
  background: #f9fafb;
  margin-bottom: 8px;
}

.rc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.rc-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #B5D4F4;
  font-size: 10px;
  font-weight: 600;
  color: #042C53;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-name {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.rc-spec {
  font-size: 10px;
  color: #6b7280;
}

.rc-rating {
  margin-left: auto;
  font-size: 10px;
  background: #EAF3DE;
  color: #3B6D11;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2px;
}

.rc-actions { display: flex; gap: 5px; }

.rc-btn {
  flex: 1;
  padding: 5px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s;
}
.rc-btn:hover { opacity: 0.88; }
.rc-confirm { background: #185FA5; color: #fff; border: none; }
.rc-alt     { background: transparent; border: 0.5px solid #d1d5db; color: #6b7280; }

/* Widget footer */
.wc-footer {
  background: #f9fafb;
  border-top: 0.5px solid #e5e7eb;
  padding: 6px 12px;
  text-align: center;
  font-size: 10px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.wc-footer .ti-wave-sine { font-size: 11px; color: #185FA5; }

/* FAB */
.fab-wrap { position: relative; }

.fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #185FA5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24, 95, 165, 0.35);
  transition: background 0.15s, transform 0.15s;
}
.fab:hover { background: #0C447C; transform: scale(1.05); }

.fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E24B4A;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 32px 20px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .human-sect { flex-direction: column; text-align: center; }
}

/* ============================================================
   Practo-style CityHealth homepage refresh
   ============================================================ */
.practo-nav { height: 64px; padding: 0 38px; box-shadow: 0 1px 12px rgba(15,23,42,.04); }
.practo-nav .logo-mark { background: linear-gradient(135deg,#0b7ff3,#0b54d6); }
.practo-nav .logo-text { font-size: 22px; font-weight: 800; color: #0b2545; }
.practo-nav .nav-links a { color: #071938; font-weight: 600; font-size: 14px; }
.practo-nav .nav-links a.active,
.practo-nav .nav-links a:hover { color: #0b5be7; }
.practo-nav-cta { align-items: center; }
.location-pill { display: inline-flex; gap: 6px; align-items: center; color: #071938; font-size: 14px; font-weight: 500; margin-right: 8px; }

.practo-home { background: linear-gradient(180deg,#f8fbff 0%,#ffffff 58%); color: #071938; min-height: 100vh; }
.practo-hero { max-width: 1280px; margin: 0 auto; padding: 58px 32px 24px; position: relative; display: grid; grid-template-columns: 1fr 300px; gap: 34px; align-items: start; overflow: hidden; }
.practo-hero:before { content:""; position:absolute; inset:0 210px 20px 310px; background: radial-gradient(circle at 58% 50%, rgba(30,117,255,.16), transparent 35%), linear-gradient(180deg, transparent 10%, rgba(30,117,255,.08)); border-radius: 45% 45% 0 0; pointer-events:none; }
.hero-copy { position: relative; z-index: 1; padding-top: 18px; }
.hero-copy h1 { font-size: 48px; line-height: 1.1; letter-spacing: -1.6px; margin-bottom: 14px; color:#071938; font-weight: 850; }
.hero-copy h1 span { color:#0b5be7; }
.hero-copy p { max-width: 590px; font-size: 18px; line-height: 1.65; color:#2f4162; }
.appointment-cta-card { position: relative; z-index: 2; background:#fff; border:1px solid #dbe7f8; border-radius:18px; box-shadow:0 18px 50px rgba(15,44,78,.10); padding:24px; }
.cta-top-icon { width:44px; height:44px; border-radius:14px; display:grid; place-items:center; background:#eaf2ff; color:#0b5be7; font-size:24px; margin-bottom:12px; }
.appointment-cta-card h3 { font-size:20px; margin-bottom:8px; }
.appointment-cta-card p { color:#2f4162; line-height:1.5; margin-bottom:16px; }
.appointment-cta-card ul { list-style:none; display:grid; gap:12px; margin-bottom:20px; }
.appointment-cta-card li { display:flex; align-items:center; gap:10px; color:#071938; font-size:14px; }
.appointment-cta-card li i { color:#0b5be7; }
.primary-wide { width:100%; border:0; border-radius:10px; padding:14px 18px; font-weight:800; color:white; background:linear-gradient(135deg,#115fed,#0648d7); box-shadow:0 10px 18px rgba(11,91,231,.22); cursor:pointer; display:flex; justify-content:center; align-items:center; gap:8px; font-size:15px; }

.home-search-card { grid-column: 1 / -1; position: relative; z-index: 5; background:#fff; border:1px solid #dbe7f8; border-radius:18px; box-shadow:0 16px 40px rgba(15,44,78,.09); padding:16px; display:grid; grid-template-columns: 1.25fr .95fr .95fr 160px; gap:0; }
.search-field { min-height:64px; padding:0 20px; display:flex; align-items:center; gap:14px; border-right:1px solid #e6edf7; color:#61708d; }
.search-field:last-of-type { border-right:0; }
.search-field i { font-size:22px; color:#5b6b88; }
.search-field label { display:block; font-size:12px; color:#5b6b88; margin-bottom:3px; }
.search-field span { color:#61708d; font-size:15px; }
.search-field strong { color:#071938; font-size:15px; }
.search-field .ti-chevron-down { margin-left:auto; font-size:16px; }
.search-btn { border:0; background:#0b5be7; color:#fff; font-weight:800; border-radius:12px; margin:4px; font-size:16px; cursor:pointer; display:flex; justify-content:center; align-items:center; gap:8px; }

.center-tiles { max-width:1280px; margin: 0 auto; padding: 16px 32px 40px; display:grid; grid-template-columns: repeat(5, minmax(150px,1fr)); gap:16px; }
.tile-card { min-height:166px; background:#fff; border:1px solid #dbe7f8; border-radius:16px; padding:18px; position:relative; box-shadow:0 12px 30px rgba(15,44,78,.05); cursor:pointer; transition: transform .15s ease, box-shadow .15s ease; }
.tile-card:hover, .dept-tile:hover, .doctor-dept-card:hover { transform: translateY(-2px); box-shadow:0 18px 42px rgba(15,44,78,.10); }
.tile-icon, .dept-icon { width:54px; height:54px; border-radius:50%; display:grid; place-items:center; font-size:28px; margin-bottom:16px; }
.tile-icon.blue,.dept-icon.blue { background:#eaf2ff; color:#0b5be7; }
.tile-icon.purple,.dept-icon.purple { background:#f0eaff; color:#7c3aed; }
.tile-icon.orange { background:#fff1e7; color:#ea7511; }
.tile-icon.pink,.dept-icon.pink { background:#ffeaf4; color:#ec4899; }
.tile-icon.cyan,.dept-icon.cyan,.dept-icon.teal { background:#e8fbff; color:#06aabd; }
.dept-icon.rose { background:#ffeaf4; color:#db2777; }
.dept-icon.red { background:#ffecec; color:#ef4444; }
.tile-card h3, .dept-tile h3 { font-size:16px; margin-bottom:8px; color:#071938; }
.tile-card p, .dept-tile span { color:#41506b; font-size:14px; line-height:1.45; }
.tile-arrow, .dept-tile > .ti-arrow-right { position:absolute; right:16px; bottom:16px; color:#0b5be7; font-size:20px; }

.department-section, .doctor-dept-section { max-width:1280px; margin:0 auto; padding: 0 32px 34px; }
.section-row { display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-bottom:18px; }
.section-row h2 { font-size:24px; letter-spacing:-.4px; color:#071938; }
.section-row p { color:#61708d; margin-top:4px; }
.link-btn { border:0; background:transparent; color:#0b5be7; font-weight:800; cursor:pointer; display:flex; align-items:center; gap:8px; }
.department-grid { display:grid; grid-template-columns: repeat(6, minmax(140px,1fr)); gap:14px; }
.dept-tile { min-height:196px; position:relative; background:#fff; border:1px solid #dbe7f8; border-radius:16px; padding:18px; box-shadow:0 12px 28px rgba(15,44,78,.045); cursor:pointer; transition: transform .15s ease, box-shadow .15s ease; }
.dept-tile p { color:#64748b; margin-bottom:12px; font-weight:700; }

.doctor-dept-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.doctor-dept-card { background:#fff; border:1px solid #dbe7f8; border-radius:16px; padding:18px; box-shadow:0 12px 28px rgba(15,44,78,.045); transition: transform .15s ease, box-shadow .15s ease; }
.doctor-dept-card h3 { font-size:17px; color:#0b5be7; display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.doctor-mini { display:flex; justify-content:space-between; align-items:center; gap:14px; padding:12px 0; border-top:1px solid #edf2f8; }
.doctor-mini:first-of-type { border-top:0; }
.doctor-mini b { color:#071938; font-size:14px; }
.doctor-mini span { color:#61708d; font-size:13px; white-space:nowrap; }
.home-stats { max-width:1280px; margin: 0 auto 60px; padding: 22px 32px; display:grid; grid-template-columns: repeat(4, 1fr); background:#f5f9ff; border:1px solid #e0eafa; border-radius:16px; }
.home-stats div { display:flex; justify-content:center; align-items:center; gap:12px; border-right:1px solid #dce6f5; }
.home-stats div:last-child { border-right:0; }
.home-stats i { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:#eaf2ff; color:#0b5be7; font-size:24px; }
.home-stats strong { font-size:20px; color:#071938; }
.home-stats span { display:block; color:#61708d; font-size:13px; }

@media (max-width: 1100px) {
  .practo-nav .nav-links { display:none; }
  .practo-hero { grid-template-columns:1fr; }
  .home-search-card { grid-template-columns:1fr; }
  .search-field { border-right:0; border-bottom:1px solid #e6edf7; }
  .center-tiles, .department-grid { grid-template-columns: repeat(2,1fr); }
  .doctor-dept-grid, .home-stats { grid-template-columns:1fr; }
  .home-stats div { border-right:0; border-bottom:1px solid #dce6f5; padding:12px 0; }
}

/* Practo-style 3-tile homepage update */
.practo-lite-nav{height:76px;background:#fff;border-bottom:1px solid #e8edf5;box-shadow:0 1px 8px rgba(15,45,90,.04)}
.practo-three-tile-home{max-width:1280px;margin:0 auto;padding:28px 48px 70px;background:#fff;min-height:100vh}
.practo-search-hero{padding:8px 0 90px;display:flex;justify-content:center;background:#fff}
.practo-search-row{width:min(760px,100%);height:54px;border:1px solid #bfc7d5;display:grid;grid-template-columns:300px 1fr;background:#fff}
.practo-location-box,.practo-search-box{display:flex;align-items:center;gap:12px;padding:0 18px;color:#4a5568;font-size:16px}.practo-location-box{border-right:1px solid #bfc7d5}.practo-search-box span{color:#7a8190}.practo-search-row i{font-size:20px;color:#6b7280}
.home-main-tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:880px;margin:0 auto 86px}.home-service-card{background:#fff;border-radius:22px;overflow:hidden;box-shadow:0 10px 28px rgba(20,35,70,.16);border:1px solid #edf1f7;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}.home-service-card:hover{transform:translateY(-4px);box-shadow:0 18px 38px rgba(20,35,70,.2)}.service-visual{height:180px;display:grid;place-items:center;font-size:92px}.service-visual i{font-size:104px}.service-ai{background:#d8ecff;color:#1768d8}.service-doc{background:#d4f4f2;color:#0f8f86}.service-lab{background:#e6e1ff;color:#7357e8}.service-body{padding:24px 24px 22px}.service-body h2{margin:0 0 10px;font-size:26px;line-height:1.08;color:#202124}.service-body p{margin:0 0 22px;color:#717583;font-size:16px;line-height:1.45}.service-link{display:flex;align-items:center;justify-content:space-between;border-radius:12px;background:#edf5ff;color:#0b5cff;padding:12px 14px;font-weight:800}.service-link.green{background:#e9faf5;color:#03966f}.service-link.purple{background:#f4efff;color:#6745d8}.department-section,.doctor-dept-section{max-width:1080px;margin:0 auto 38px}.department-section .section-row,.doctor-dept-section .section-row{margin-bottom:18px}.department-section h2,.doctor-dept-section h2{font-size:30px;margin:0 0 6px;color:#1f2933}.practo-dept-grid{grid-template-columns:repeat(3,1fr)}.lab-home-section{max-width:1080px;margin:34px auto;padding:28px;border:1px solid #e3eaf5;border-radius:20px;background:linear-gradient(135deg,#fbf8ff,#fff);display:flex;align-items:center;gap:20px}.lab-home-section>div:first-child{width:64px;height:64px;border-radius:50%;background:#f0e8ff;display:grid;place-items:center;color:#7657e8;font-size:34px}.lab-home-section h2{margin:0 0 6px}.lab-home-section p{margin:0;color:#647085}.doctor-dept-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.doctor-dept-card{border:1px solid #e3eaf5;border-radius:18px;background:#fff;padding:18px;box-shadow:0 8px 20px rgba(15,45,90,.06)}.doctor-dept-card h3{display:flex;align-items:center;gap:8px;margin:0 0 12px;color:#0d2b62}.doctor-mini{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-top:1px solid #eef2f7}.doctor-mini span{color:#647085;font-size:13px;white-space:nowrap}.home-stats{max-width:1080px;margin-left:auto;margin-right:auto}@media(max-width:900px){.practo-three-tile-home{padding:24px}.home-main-tiles,.doctor-dept-grid,.practo-dept-grid{grid-template-columns:1fr}.practo-search-row{grid-template-columns:1fr;height:auto}.practo-location-box{border-right:0;border-bottom:1px solid #bfc7d5;height:54px}.practo-search-box{height:54px}.nav-links{display:none}}

/* Department tile navigation highlight */
.doctor-dept-card.is-selected {
  border-color: #0b5be7;
  box-shadow: 0 0 0 4px rgba(11,91,231,.12), 0 18px 42px rgba(15,44,78,.12);
}


/* Practo-inspired bottom footer for the home page */
.cityhealth-footer {
  margin-top: 70px;
  background: #26358c;
  color: #ffffff;
  padding: 66px 10vw 54px;
}

.cityhealth-footer-grid {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1.55fr 1.2fr 1.35fr 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.cityhealth-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cityhealth-footer-col h4 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.cityhealth-footer-col .footer-subtitle {
  margin-top: 18px;
}

.cityhealth-footer-col a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.18;
  transition: color 0.15s ease, transform 0.15s ease;
}

.cityhealth-footer-col a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.cityhealth-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 72px;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.cityhealth-footer-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #35c7e9;
  display: inline-block;
  transform: translateY(8px);
}

.cityhealth-footer-copy {
  text-align: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .cityhealth-footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .cityhealth-footer { padding: 44px 28px 40px; }
  .cityhealth-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cityhealth-footer-brand { font-size: 42px; margin-top: 48px; }
}

@media (max-width: 480px) {
  .cityhealth-footer-grid { grid-template-columns: 1fr; }
}

/* Full-bleed footer alignment fix */
.practo-three-tile-home {
  padding-bottom: 0;
}

.cityhealth-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  padding-left: max(10vw, 48px);
  padding-right: max(10vw, 48px);
}

body {
  overflow-x: hidden;
}

@media (max-width: 720px) {
  .cityhealth-footer {
    padding-left: 28px;
    padding-right: 28px;
  }
}
