:root {
  --primary: #0a2540;
  --primary-accent: #1e40af;
  --teal-brand: #0f766e;
  --teal-soft: #f0fdfa;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-card: #cbd5e1;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-subtle: 0 4px 16px rgba(10, 37, 64, 0.05);
  --shadow-hover: 0 14px 32px rgba(10, 37, 64, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* Icons */
.icon-inline {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  vertical-align: middle;
}

/* Topbar */
.topbar {
  background: #09131f;
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse-indicator {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sep {
  color: #334155;
}
.topbar-phone {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-brand);
}
.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.brand-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--primary-accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.15);
}
.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: #f1f5f9;
}

/* Hero */
.hero-section {
  padding: 70px 0 50px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 54px;
}
.hero-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #e6fffa;
  color: var(--teal-brand);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 18px;
}
.lead-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}
.badge-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary);
}
.badge-item span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.badge-line {
  width: 1px;
  height: 30px;
  background: var(--border-light);
}

/* Visual Block */
.visual-stack {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.visual-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.doctor-highlight-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
}
.doc-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.doctor-highlight-card h4 {
  font-size: 0.98rem;
  color: var(--primary);
}
.doctor-highlight-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Standards Bar */
.standards-bar {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.standard-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-brand);
  flex-shrink: 0;
}
.icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.standard-box h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.standard-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}
.tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-brand);
  display: block;
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: 2.1rem;
  color: var(--text-main);
  margin-bottom: 12px;
}
.section-title p {
  color: var(--text-muted);
}

/* Real Reviews Cards */
.reviews-section {
  background: #f1f5f9;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.stars-cluster {
  color: #f59e0b;
  letter-spacing: 2px;
}
.badge-source {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #eff6ff;
  color: var(--primary-accent);
  padding: 4px 8px;
  border-radius: 4px;
}
.review-text {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: normal;
}
.reviewer-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer-info h4 {
  font-size: 0.92rem;
  color: var(--text-main);
}
.reviewer-info span {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* Booking Section */
.booking-section {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.direct-contact-panel {
  margin-top: 32px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}
.direct-contact-panel h4 {
  font-size: 0.96rem;
  margin-bottom: 6px;
}
.direct-contact-panel p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.phone-link {
  display: inline-block;
  color: var(--primary-accent);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
}

.form-container {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-subtle);
}
.form-group {
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
}
.btn-submit {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
}

/* Location Card & Map Fix */
.location-section {
  background: var(--bg-page);
}
.location-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}
.location-details {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.meta-address, .meta-schedule {
  margin-top: 18px;
  font-size: 0.9rem;
}
.meta-address strong, .meta-schedule strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}
.meta-address p, .meta-schedule p {
  color: var(--text-muted);
}
.text-red {
  color: #ef4444;
  font-weight: 600;
}
.location-actions {
  margin-top: 26px;
}

.map-frame-box {
  position: relative;
  min-height: 420px;
  background: #e2e8f0;
}
.map-frame-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer */
.site-footer {
  background: #0b1320;
  color: #94a3b8;
  padding: 60px 0 24px 0;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 40px;
}
.footer-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-sub {
  display: block;
  font-size: 0.82rem;
  color: #38bdf8;
  margin-bottom: 12px;
}
.footer-brand p {
  max-width: 320px;
  font-size: 0.84rem;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: #94a3b8;
  text-decoration: none;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-phone {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .booking-grid, .location-card, .footer-grid, .standards-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .map-frame-box {
    min-height: 320px;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* --- Subpage Editorial Header --- */
.page-intro {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0 45px 0;
}
.page-intro h1 {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.page-intro .lead-text {
  margin-bottom: 0;
  max-width: 680px;
}

/* --- Buttons Typography & Hierarchy Fix --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.16);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--border-card);
}

.btn-submit {
  width: 100%;
  padding: 15px 24px;
  font-size: 0.96rem;
  font-weight: 700;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

.btn-submit:hover {
  background: var(--primary-accent);
}

/* --- Interactive Notification Toast --- */
.clinic-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.clinic-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  width: 22px;
  height: 22px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.clinic-toast.error .toast-icon {
  background: #ef4444;
}