:root {
  --color-bg: #f8fafc;
  --color-bg-alt: #ffffff;
  --color-primary: #0066cc;
  --color-primary-soft: rgba(0, 102, 204, 0.05);
  --color-primary-dark: #004a99;
  --color-accent: #e74c3c;
  --color-accent-soft: rgba(231, 76, 60, 0.05);
  --color-text: #1a202c;
  --color-text-soft: #718096;
  --color-border: #e2e8f0;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 15px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #eef2ff;
}

.section-contact {
  background: radial-gradient(circle at top left, #dbeafe, #f9fafb);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-intro {
  max-width: 640px;
  color: var(--color-text-soft);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.content-page {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.75rem 1.8rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.content-page h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-page h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.content-page p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.about-hero-image {
  margin: 0 0 1.75rem;
  border-radius: 18px;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-team-grid {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-team-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.25rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(135deg, #ffffff, #f9fafb);
}

.about-team-photo img {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.about-team-content h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.about-team-content p {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .about-team-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-team-photo {
    display: flex;
    justify-content: center;
  }

  .profile-hero {
    grid-template-columns: 1fr;
  }

  .profile-kpi {
    grid-template-columns: 1fr;
  }
}

.content-page ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}
.profile-page {
  max-width: 980px;
}
.profile-hero {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1.4rem;
}
.profile-hero figure {
  margin: 0;
}
.profile-hero img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}
.profile-kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0.35rem 0 1.2rem;
}
.profile-kpi-item {
  border-radius: 12px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: #f8fbff;
  padding: 0.85rem 0.9rem;
}
.profile-kpi-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d4ed8;
}
.profile-kpi-label {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.2rem;
}
.profile-list {
  display: grid;
  gap: 0.35rem;
}
.profile-list li {
  color: #334155;
}

.two-column {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  display: block;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0066cc, #004a99);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 0.9rem;
  line-height: 1.25;
}

.logo-text strong {
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.main-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav .has-submenu {
  padding-bottom: 0.45rem;
  margin-bottom: -0.45rem;
}

.main-nav a {
  color: var(--color-text-soft);
  padding: 0.35rem 0;
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #0066cc, #0088ff);
  border-radius: 999px;
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  color: var(--color-text);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.main-nav a.active::after {
  width: 100%;
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  z-index: 75;
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  font-size: 0.84rem;
  padding: 0.36rem 0.4rem;
  border-radius: 8px;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover {
  background: #eff6ff;
}

.nav-submenu a.active {
  color: var(--color-primary-dark);
  background: #eff6ff;
}

.btn-header {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
  background: linear-gradient(135deg, #0066cc, #004a99);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 500;
  color: #ffffff;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(248, 250, 252, 0.92);
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  color: #4b5563;
}

.lang-caret {
  width: 7px;
  height: 7px;
  border-left: 1px solid #6b7280;
  border-bottom: 1px solid #6b7280;
  transform: rotate(-45deg);
  margin-top: -2px;
}

.lang-menu {
  position: absolute;
  right: 0;
  margin-top: 0.35rem;
  padding: 0.35rem 0.4rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.14s ease-out, transform 0.14s ease-out;
  z-index: 70;
}

.lang-dropdown:focus-within .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 0.78rem;
  padding: 0.18rem 0.3rem;
  cursor: pointer;
  color: #4b5563;
  border-radius: 6px;
}

.lang-menu button:hover {
  background: #eff6ff;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #1f2937;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(56, 189, 248, 0.14), transparent 38%),
    radial-gradient(circle at 92% 4%, rgba(37, 99, 235, 0.12), transparent 35%),
    linear-gradient(180deg, #f7fbff 0%, #f8fafc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  left: -120px;
  top: 10px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.32), rgba(56, 189, 248, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2.4fr;
  gap: 2.75rem;
  align-items: stretch;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.8);
  background: rgba(239, 246, 255, 0.92);
  color: #0f4a76;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 0.95rem;
}

.hero-slider {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(191, 219, 254, 0.85);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
  background: #000;
  position: relative;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 260px;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
}

.hero-slider-dot.is-active {
  width: 14px;
  background: #ffffff;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.55);
}

.hero h1 {
  font-size: 2.35rem;
  line-height: 1.1;
  margin: 0 0 0.95rem;
  max-width: 18ch;
}

.hero p {
  color: var(--color-text-soft);
  margin-bottom: 1.25rem;
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 1.1rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.4rem;
  color: var(--color-text);
}

.hero-highlights li::before {
  content: "•";
  color: #2563eb;
  margin-right: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 1.25rem;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-trust-card {
  border-radius: 12px;
  border: 1px solid rgba(186, 230, 253, 0.95);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  padding: 0.75rem 0.85rem;
}

.hero-trust-card strong {
  display: block;
  font-size: 0.82rem;
  color: #0f3f67;
  margin-bottom: 0.22rem;
}

.hero-trust-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #5b6c80;
}

.hero-card {
  background: radial-gradient(circle at top right, #eff6ff, #ffffff);
  border-radius: 26px;
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(191, 219, 254, 0.8);
  position: relative;
}

.hero-doctor-mini {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  background: #f8fbff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1rem;
}

.hero-doctor-stack {
  display: grid;
  gap: 0.65rem;
}

.hero-doctor-stack .hero-doctor-mini {
  margin-bottom: 0;
}

.hero-doctor-mini img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.doctor-mini-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 0.2rem;
}

.hero-doctor-mini strong {
  display: block;
  font-size: 0.88rem;
}

.hero-doctor-mini p {
  margin: 0.2rem 0 0;
  font-size: 0.74rem;
  color: #64748b;
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.hero-card p {
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
}

.hero-card-quick {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hero-journey {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.journey-step {
  border-radius: 14px;
  border: 1px solid rgba(191, 219, 254, 0.85);
  background: #ffffff;
  padding: 0.85rem 0.9rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.journey-step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  margin-bottom: 0.45rem;
}

.journey-step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.93rem;
}

.journey-step p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}

.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards & Grids */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.services-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.stat-card,
.service-card,
.team-card {
  border-radius: var(--radius-md);
  background-color: var(--color-bg-alt);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.2rem 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-card {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-card p,
.team-card p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.service-card-footer {
  margin-top: 0.75rem;
}

.service-card-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: #2563eb;
}

.service-card-link:hover {
  text-decoration: underline;
}

.team-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
}

.blog-toolbar-total,
.blog-toolbar-range {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-soft);
}

.blog-toolbar-total {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-card-date {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.blog-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.blog-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

.blog-pagination {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-pagination-link {
  min-width: 38px;
  height: 38px;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.14s ease-out;
}

.blog-pagination-link:hover {
  border-color: rgba(37, 99, 235, 0.45);
  color: #1d4ed8;
  transform: translateY(-1px);
}

.blog-pagination-link.is-active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32);
}

.blog-pagination-arrow {
  padding: 0 0.95rem;
  min-width: 88px;
}

.blog-pagination-link.is-disabled {
  color: #94a3b8;
  border-color: rgba(226, 232, 240, 0.95);
  background: #f8fafc;
  pointer-events: none;
}

.blog-pagination-ellipsis {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.3);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.4);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid rgba(129, 140, 248, 0.7);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(219, 234, 254, 0.8);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

/* Forms */
.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
  color: var(--color-text-soft);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out,
    background-color 0.12s ease-out;
}

textarea {
  border-radius: 16px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
  background-color: #ffffff;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.form-alert {
  margin: 0 0 0.75rem;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.lead-form {
  margin-top: 0.5rem;
}

.contact-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.22);
  padding: 1.6rem 1.5rem;
}

.contact-form {
  margin-top: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0.75rem;
  font-size: 0.95rem;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-note {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.consultation-intro {
  max-width: 760px;
}

.consultation-page {
  max-width: 900px;
  margin: 0 auto;
}

.consultation-form {
  position: relative;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.consultation-grid .full-width {
  grid-column: 1 / -1;
}

.consultation-form .option-group {
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0;
}

.consultation-form .option-group legend {
  font-size: 0.82rem;
  color: #475569;
  padding: 0 0.3rem;
}

.consultation-form .option-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.85rem;
  font-size: 0.86rem;
  color: #334155;
}

.consultation-form input[type="radio"] {
  width: auto;
}

.consultation-form select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  background: #f9fafb;
}

.consultation-submit {
  margin-top: 1rem;
  min-width: 180px;
}

/* Lists & helpers */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  font-size: 0.85rem;
  color: #10b981;
  margin-top: 0.15rem;
}

.highlight-box {
  border-radius: var(--radius-lg);
  background: var(--color-primary-soft);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.highlight-box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.legacy-content {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.75;
}

.legacy-content h2,
.legacy-content h3,
.legacy-content h4 {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
  color: #0f172a;
}

.legacy-content p {
  color: #334155;
  margin: 0.5rem 0 0.9rem;
}

.legacy-content ul,
.legacy-content ol {
  margin: 0.6rem 0 1rem;
  padding-left: 1.25rem;
}

.legacy-content li {
  margin-bottom: 0.4rem;
}

.legacy-content a {
  color: #1d4ed8;
  text-decoration: underline;
}

.legacy-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0.5rem 0.4rem 0.9rem 0;
  border: 1px solid rgba(203, 213, 225, 0.9);
}

.legacy-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 0.8rem 0 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.legacy-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.legacy-map-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 1rem 0 1.3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.legacy-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lab-gallery {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.lab-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lab-gallery-item img {
  width: 100%;
  aspect-ratio: 269 / 161;
  object-fit: cover;
  display: block;
}

/* FAQ */
.faq-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.75rem 0.9rem;
  background-color: #ffffff;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 2.5rem 0 2.5rem;
  background-color: #f9fafb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0;
}

.footer-tagline {
  font-size: 0.84rem;
  color: var(--color-text-soft);
  max-width: 260px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--color-text-soft);
}

.footer-links a:hover {
  color: var(--color-primary-dark);
}

.footer-hours,
.footer-addr,
.footer-tel,
.footer-email {
  font-size: 0.84rem;
  color: var(--color-text-soft);
}

.footer-tel a,
.footer-email a {
  color: var(--color-primary-dark);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.footer-copy {
  flex-shrink: 0;
}

.footer-disclaimer {
  margin: 0;
  max-width: 520px;
}

.footer-disclaimer a {
  color: var(--color-primary-dark);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    position: absolute;
    right: 1.5rem;
    top: 60px;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid #e5e7eb;
    min-width: 210px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .main-nav .nav-item {
    width: 100%;
    display: block;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(191, 219, 254, 0.95);
    border-radius: 0;
    margin: 0.25rem 0 0.15rem 0.25rem;
    padding: 0.15rem 0 0.15rem 0.55rem;
    background: transparent;
    gap: 0;
  }

  .nav-submenu a {
    font-size: 0.82rem;
    padding: 0.22rem 0;
    border-radius: 0;
  }

  .nav-submenu a.active {
    background: transparent;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-doctor-mini {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .hero-doctor-mini img {
    width: 60px;
    height: 60px;
  }

  .hero-journey {
    grid-template-columns: 1fr;
    margin-top: 0.9rem;
  }
}

@media (max-width: 600px) {
  .blog-pagination {
    justify-content: flex-start;
  }

  .blog-pagination-arrow {
    min-width: 76px;
    padding: 0 0.7rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 0.65rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

