:root {
  --primary: #f47c20;
  --primary-dark: #4a2c84;
  --secondary: #ffa94d;
  --accent: #fff4eb;
  --surface: #fffaf6;
  --text-dark: #2d2140;
  --text-muted: #6f647f;
  --border-soft: rgba(74, 44, 132, 0.1);
  --shadow-soft: 0 24px 70px rgba(74, 44, 132, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(244, 124, 32, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #4a2c84, #f47c20);
  padding: 0.3rem 0;
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }
}

.topbar-link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.topbar-link:hover {
  color: #fff;
  opacity: 0.82;
}

.site-navbar {
  position: relative;
  top: auto;
  z-index: 1030;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff9f4;
  background-image: url("../assets/dental-pattern.png");
  background-repeat: repeat;
  background-size: 220px auto;
  background-position: center;
  border-top: 1px solid rgba(74, 44, 132, 0.08);
  border-bottom: 1px solid rgba(244, 124, 32, 0.14);
  box-shadow: none;
  overflow: visible;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(74, 44, 132, 0.1);
  animation: navbarSlideIn 0.28s ease;
}

@keyframes navbarSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-spacer {
  display: none;
  width: 100%;
}

.navbar-spacer.is-active {
  display: block;
}

.site-navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 251, 0.35);
  pointer-events: none;
  z-index: 0;
}

.site-navbar > .container-fluid {
  position: relative;
  z-index: 3;
}

.site-navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 44, 132, 0.12), rgba(244, 124, 32, 0.34), rgba(74, 44, 132, 0.12));
  z-index: 0;
}

.navbar-brand {
  gap: 0.35rem !important;
}

.site-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 0.2rem;
  border: 1px solid transparent;
  box-shadow: 0 15px 40px rgba(74, 44, 132, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-logo {
  width: 56px;
  height: 56px;
  box-shadow: 0 8px 20px rgba(74, 44, 132, 0.18);
}

.footer-brand {
  gap: 0.35rem !important;
}

.footer-brand .brand-title {
  font-size: 0.95rem;
}

.footer-brand .brand-subtitle {
  font-size: 0.78rem;
  padding-left: 0.35rem;
}

.navbar-brand:hover .site-logo,
.site-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.06) contrast(1.08);
  border-color: var(--primary);
  box-shadow: 0 18px 44px rgba(74, 44, 132, 0.2);
}

.brand-title {
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.brand-subtitle {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-left: 0.45rem;
}

.navbar .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary);
}

.navbar .dropdown-menu {
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 0;
  min-width: 220px;
  z-index: 1050;
  margin-top: 0 !important;
  overflow: hidden;
}

.navbar .dropdown-item {
  border-radius: 0;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  background: #f3f0f8;
  color: var(--text-dark);
}

/* Services mega-style 2-column dropdown */
.navbar .services-dropdown {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  max-height: none !important;
  height: auto !important;
  overflow: hidden;
}

.navbar .services-dropdown .services-dropdown-top .dropdown-item {
  font-weight: 700;
  border-bottom: 1px solid #e4e4e4;
  padding: 0.5rem 0.85rem;
}

.navbar .services-dropdown .services-dropdown-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .services-dropdown .services-dropdown-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8e8e8;
  max-height: none;
  overflow: visible;
  padding-bottom: 0.2rem;
}

.navbar .services-dropdown .services-dropdown-col:last-child {
  border-right: 0;
}

.navbar .services-dropdown .services-dropdown-col .dropdown-item {
  padding: 0.38rem 0.65rem;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.35;
  white-space: normal;
}

/*
  Column 2: match column-1 height and scroll internally.
  height:0 + min-height:100% stops this column from expanding the grid row.
*/
.navbar .services-dropdown .services-dropdown-col-scroll {
  height: 0;
  min-height: 100%;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c5c5c5 transparent;
}

.navbar .services-dropdown .services-dropdown-col-scroll::-webkit-scrollbar {
  width: 6px;
}

.navbar .services-dropdown .services-dropdown-col-scroll::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 999px;
}

@media (min-width: 992px) {
  .navbar .services-dropdown {
    width: 520px;
    max-width: min(520px, calc(100vw - 2rem));
  }

  .navbar .services-dropdown.dropdown-menu-end {
    left: auto;
    right: 0;
  }

  .navbar .services-dropdown .services-dropdown-col .dropdown-item {
    padding: 0.38rem 0.85rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

@media (max-width: 991.98px) {
  .navbar .services-dropdown {
    width: 100%;
    margin-top: 0.35rem;
    max-height: min(38vh, 240px) !important;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #c5c5c5 transparent;
  }

  .navbar .services-dropdown::-webkit-scrollbar {
    width: 6px;
  }

  .navbar .services-dropdown::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 999px;
  }

  /* Stack as one list — whole menu scrolls, not per-column */
  .navbar .services-dropdown .services-dropdown-body {
    display: block;
  }

  .navbar .services-dropdown .services-dropdown-col {
    border-right: 0;
    padding-bottom: 0;
  }

  .navbar .services-dropdown .services-dropdown-col-scroll {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .navbar .services-dropdown .services-dropdown-col .dropdown-item {
    padding: 0.45rem 0.85rem;
    font-size: 0.92rem;
    white-space: normal;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item.dropdown {
    position: relative;
  }

  .navbar .nav-item.dropdown > .nav-link {
    position: relative;
  }

  /* Keep hover active while moving into the menu */
  .navbar .nav-item.dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
    z-index: 1049;
  }

  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0 !important;
    top: calc(100% - 2px);
  }

  .navbar .dropdown-menu {
    position: absolute;
    inset: auto auto auto 0;
    transform: none !important;
  }

  .navbar .dropdown-menu-end {
    left: 0;
    right: auto;
  }

  .navbar .nav-item.dropdown:hover > .dropdown-toggle,
  .navbar .nav-item.dropdown:focus-within > .dropdown-toggle {
    color: var(--primary);
  }
}

.doctor-profile-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #f47c20;
  box-shadow: 0 18px 40px rgba(74, 44, 132, 0.12);
  background: #fff;
}

.doctor-profile-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-intro-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8fc 100%);
}

.about-intro-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #f47c20;
  box-shadow: 0 18px 42px rgba(74, 44, 132, 0.12);
  background: #fff;
}

.about-intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 360px;
}

.about-vmj-section {
  background: #eef2f6;
  overflow: hidden;
  padding-top: 5.5rem;
}

.about-video-section {
  padding: 6.5rem 0 4.5rem;
}

.about-infra-section {
  position: relative;
  padding: 3.25rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 124, 32, 0.12), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(74, 44, 132, 0.11), transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(180deg, #fffaf6 0%, #f7f2fb 52%, #fff8f2 100%);
}

.about-infra-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/dental-pattern.png");
  background-size: 200px auto;
  background-repeat: repeat;
  opacity: 0.18;
  pointer-events: none;
}

.about-infra-section .container {
  position: relative;
  z-index: 1;
}

.about-infra-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.2vw, 1.75rem);
  max-width: 920px;
  margin: 0 auto;
}

.about-infra-side {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2.2vw, 1.75rem);
}

.about-infra-circle {
  margin: 0;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 14px 32px rgba(74, 44, 132, 0.12),
    0 0 0 1px rgba(244, 124, 32, 0.08);
  flex-shrink: 0;
  cursor: pointer;
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-infra-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.about-infra-circle:hover {
  box-shadow:
    0 18px 38px rgba(74, 44, 132, 0.15),
    0 0 0 1px rgba(244, 124, 32, 0.14);
}

.about-infra-circle:hover img {
  transform: scale(1.045);
}

@media (prefers-reduced-motion: reduce) {
  .about-infra-circle,
  .about-infra-circle img {
    transition: none;
  }

  .about-infra-circle:hover img {
    transform: none;
  }
}

.about-infra-circle-sm {
  width: clamp(110px, 16vw, 170px);
  height: clamp(110px, 16vw, 170px);
}

.about-infra-circle-lg {
  width: clamp(220px, 34vw, 360px);
  height: clamp(220px, 34vw, 360px);
}

.about-infra-copy {
  max-width: 52rem;
  margin: 2.6rem auto 0;
  text-align: center;
  color: #5f566c;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

@media (max-width: 575.98px) {
  .about-infra-gallery {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .about-infra-side {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .about-infra-circle-sm {
    width: 42vw;
    height: 42vw;
    max-width: 150px;
    max-height: 150px;
  }

  .about-infra-circle-lg {
    width: min(72vw, 280px);
    height: min(72vw, 280px);
    order: -1;
  }
}

.about-video-banner {
  position: relative;
  margin: 0;
}

.about-video-media {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 24, 38, 0.55) 0%,
    rgba(20, 24, 38, 0.68) 100%
  );
}

.about-video-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.75rem 1rem 5rem;
}

.about-video-kicker {
  margin: 0 0 0.7rem;
  color: rgba(255, 244, 232, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-video-title {
  margin: 0 auto;
  max-width: 16em;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.about-video-title span {
  color: #ffc48a;
  font-weight: 600;
}

.about-video-play {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, 50%);
  display: grid;
  place-items: center;
}

.about-video-play-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(47, 111, 237, 0.22);
}

.about-video-play-btn {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2f6fed;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 28px rgba(47, 111, 237, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-video-play-btn i {
  margin-left: 3px;
}

.about-video-play:hover .about-video-play-btn,
.about-video-play:focus-visible .about-video-play-btn {
  transform: scale(1.06);
  background: #245ed6;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.video-lightbox[hidden] {
  display: none !important;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.78);
}

.video-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.video-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-lightbox-open,
body.image-lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.image-lightbox[hidden] {
  display: none !important;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 28, 0.82);
}

.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(920px, 100%);
  max-height: min(88vh, 100%);
  animation: imageLightboxIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-lightbox-dialog img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(88vh, 900px);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes imageLightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-vmj-intro {
  margin-bottom: 2.5rem;
}

.about-vmj-intro .section-title {
  color: #2f3a4a;
  font-weight: 700;
}

.about-vmj-viewport {
  container-type: inline-size;
  overflow: hidden;
  width: 100%;
}

.about-vmj-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-vmj-track.is-resetting {
  transition: none;
}

.about-vmj-slide {
  flex: 0 0 calc((100cqi - 3rem) / 3);
  min-width: 0;
}

.about-vmj-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  padding: 2.35rem 1.7rem 2rem;
  border-radius: 10px;
  background: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(47, 58, 74, 0.08);
  overflow: hidden;
}

.about-vmj-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2b3038;
}

.about-vmj-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #4a2c84;
  z-index: 1;
}

.about-vmj-card.is-active::after {
  animation: aboutVmjProgress 4s linear forwards;
}

@keyframes aboutVmjProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.about-vmj-card h3 {
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 700;
  font-size: 1.35rem;
}

.about-vmj-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.75;
  font-size: 0.98rem;
}

.about-vmj-card strong {
  color: #1f2937;
}

@container (max-width: 991px) {
  .about-vmj-slide {
    flex-basis: calc((100cqi - 1.5rem) / 2);
  }
}

@container (max-width: 640px) {
  .about-vmj-slide {
    flex-basis: 100cqi;
  }

  .about-vmj-track {
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .about-intro-photo img {
    min-height: 260px;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  box-shadow: 0 14px 35px rgba(244, 124, 32, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, #ff9a3d, #ffb86b) !important;
  border: none !important;
  filter: brightness(1.08);
  box-shadow: 0 16px 36px rgba(244, 124, 32, 0.4);
  transform: translateY(-1px);
  color: #fff !important;
}

.btn-outline-primary {
  border-color: rgba(244, 124, 32, 0.3);
  color: var(--primary-dark);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.home-hero-carousel {
  position: relative;
}

.home-hero-carousel .hero-slide-image {
  width: 100%;
  height: 78vh;
  object-fit: cover;
  display: block;
}

.home-hero-carousel .carousel-indicators {
  margin-bottom: 1.4rem;
}

.home-hero-carousel .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.home-hero-carousel .carousel-indicators .active {
  background-color: var(--primary);
  transform: scale(1.15);
}

.hero-welcome-strip {
  padding: 3rem 0;
  background:
    radial-gradient(circle at top left, rgba(244, 124, 32, 0.12), transparent 30%),
    linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
}

.hero-section,
.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 124, 32, 0.16), transparent 30%),
    radial-gradient(circle at right center, rgba(74, 44, 132, 0.1), transparent 28%),
    linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
}

.hero-section {
  padding: 4.5rem 0 4rem;
}

.inner-hero {
  padding: 1.15rem 0 1.35rem;
}

.inner-hero-title {
  position: relative;
  max-width: 18em;
  margin: 1rem auto 0;
  color: #2d2140;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.inner-hero-title span {
  color: #f47c20;
  white-space: nowrap;
}

.services-hero-title {
  max-width: none;
  width: max-content;
  max-width: 100%;
  margin: 0.9rem auto 0;
  color: #5a4a72;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
  white-space: nowrap;
}

.services-hero-title span {
  color: #f47c20;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .services-hero-title {
    white-space: normal;
    font-size: 1.35rem;
  }
}

.founder-hero-title {
  margin: 0.85rem auto 0;
  color: #5a4a72;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.founder-hero-title span {
  color: #f47c20;
  font-weight: 600;
}

.doctors-hero-title {
  max-width: 16em;
  margin: 0.85rem auto 0;
  color: #5a4a72;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.doctors-hero-title span {
  color: #f47c20;
  white-space: nowrap;
  background: none;
  padding: 0;
  font-weight: 600;
}

.founder-hero-sub {
  max-width: 34rem;
  margin: 0.65rem auto 0;
  color: #6f647f;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.hero-section h1 span,
.section-title {
  color: var(--primary-dark);
}

.hero-section .hero-title-main {
  color: #f47c20 !important;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .hero-title-sub {
  color: #4a2c84 !important;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0;
  color: #8a7a9a;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero-title {
  margin: 0.5rem 0 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.hero-location {
  margin: 0 0 1rem;
  color: #7a7088;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.hero-copy {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions .btn {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  box-shadow: none;
}

.vision-mission-section {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
  background:
    radial-gradient(circle at top center, rgba(244, 124, 32, 0.06), transparent 35%),
    linear-gradient(180deg, #fbf8fc 0%, #ffffff 100%);
}

.vm-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vm-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 14px 36px rgba(74, 44, 132, 0.08);
  flex: 0 1 340px;
  max-width: 340px;
}

.vm-card-vision {
  border: 1.5px solid rgba(74, 44, 132, 0.22);
}

.vm-card-mission {
  border: 1.5px solid rgba(244, 124, 32, 0.28);
}

.vm-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.vm-icon-vision {
  background: rgba(74, 44, 132, 0.1);
  color: #4a2c84;
}

.vm-icon-mission {
  background: rgba(244, 124, 32, 0.12);
  color: #f47c20;
}

.vm-card h3 {
  margin-bottom: 0.75rem;
  color: #2d2140;
  font-weight: 700;
  font-size: 1.35rem;
}

.vm-card p {
  margin: 0;
  color: #6f647f;
  line-height: 1.65;
  font-size: 0.94rem;
}

.vm-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex: 0 0 140px;
  padding: 0.5rem 0;
}

.vm-center-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  color: #4a2c84;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(74, 44, 132, 0.12);
  border: 1px solid rgba(74, 44, 132, 0.08);
  overflow: hidden;
  padding: 0.25rem;
}

.vm-center-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.08);
}

.vm-center-label {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #2d2140;
  font-size: 0.85rem;
  text-align: center;
}

.vm-pulse {
  width: 72px;
  height: 22px;
  display: block;
}

@media (max-width: 991.98px) {
  .vm-layout {
    flex-direction: column;
    align-items: center;
    max-width: 420px;
  }

  .vm-card {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }

  .vm-center {
    flex: 0 0 auto;
    order: -1;
    padding: 0.25rem 0;
  }
}

.btn-hero-about {
  background: #fff;
  color: #4a2c84;
  border: 1.5px solid #4a2c84;
}

.btn-hero-about:hover {
  background: #4a2c84;
  color: #fff;
  border-color: #4a2c84;
}

.btn-hero-book {
  background: #f47c20;
  color: #fff;
  border: 1.5px solid #f47c20;
}

.btn-hero-book:hover {
  background: #e56f14;
  color: #fff;
  border-color: #e56f14;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.12), rgba(74, 44, 132, 0.09));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-visual {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-card {
  position: relative;
  padding: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #fff7f1);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(244, 124, 32, 0.1);
  overflow: hidden;
}

.hero-side-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.floating-card {
  position: static;
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 40px rgba(74, 44, 132, 0.14);
  border: 1px solid rgba(74, 44, 132, 0.08);
}

.floating-card i {
  font-size: 1.4rem;
  color: var(--primary);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.floating-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.25;
}

.floating-card-top {
  align-self: flex-start;
}

.floating-card-bottom {
  align-self: flex-end;
}

.stat-card,
.feature-card,
.doctor-card,
.contact-panel,
.appointment-panel,
.info-tile {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 42px rgba(74, 44, 132, 0.08);
}

.stat-card {
  padding: 0.85rem 0.7rem;
  text-align: center;
  border: 1.5px solid #cfc8d6;
  box-shadow: none;
  background: #fff;
}

.stat-card h3,
.stat-card .stat-value {
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #f47c20;
}

.stat-card .stat-text {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #5f566c;
}

.stat-card p,
.section-copy,
.feature-card p,
.service-body p,
.doctor-card p,
.footer-panel p,
.info-tile p {
  color: var(--text-muted);
}

.feature-card,
.info-tile {
  padding: 2rem;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-content a {
  color: var(--primary-dark);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--primary);
}

.feature-card h3,
.service-body h3,
.doctor-card h3,
.info-tile h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.icon-wrap {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.12), rgba(74, 44, 132, 0.1));
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
}

.check-list i {
  color: var(--primary);
}

.gallery-section {
  padding: 0 0 3.5rem;
}

.gallery-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 1240px;
}

.gallery-tabs {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0.3rem;
  margin-inline: auto;
  margin-bottom: 0;
  padding: 0.3rem;
  border: 1px solid #d8dde3;
  border-radius: 14px;
  background: #f3f5f7;
  width: fit-content;
  max-width: 100%;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 7.25rem;
  padding: 0.6rem 1.15rem;
  border: 0;
  border-radius: 11px;
  color: #5c6570;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-tab i {
  font-size: 1.05rem;
  line-height: 1;
}

.gallery-tab:hover {
  color: #4a2c84;
  background: rgba(255, 255, 255, 0.7);
}

.gallery-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #f47c20 0%, #e86a12 100%);
  box-shadow: 0 6px 14px rgba(244, 124, 32, 0.28);
}

.gallery-tab.active:hover {
  color: #fff;
  background: linear-gradient(135deg, #f58935 0%, #f47c20 100%);
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 180px;
  padding: 1.25rem;
  border: 1.5px solid #9aa3ad;
  border-radius: 18px;
  background: linear-gradient(160deg, #f7f4fb 0%, #efe8f8 55%, #f8f6fc 100%);
  color: #6b6280;
  text-align: center;
}

.gallery-placeholder i {
  font-size: 1.85rem;
  color: #4a2c84;
}

.gallery-placeholder span {
  font-size: 0.92rem;
  font-weight: 600;
}

.gallery-placeholder-video {
  min-height: 220px;
}

.videos_list {
  width: 100%;
  border: 1px solid #c8c8c8;
  background: #111;
  overflow: hidden;
}

.videos_list iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 160px;
  border: 0;
}

.videos_list-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  aspect-ratio: 16 / 9;
  min-height: 160px;
  padding: 1rem;
  background: linear-gradient(160deg, #2a173d 0%, #1d102d 55%, #3a2048 100%);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.videos_list-placeholder i {
  font-size: 2.1rem;
  color: #ff0033;
  line-height: 1;
}

.videos_list-placeholder span {
  font-size: 0.88rem;
  font-weight: 600;
}

.gallrow {
  margin-top: 3.25rem;
  padding: 2rem 1.5rem 0;
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.gallery_box .box {
  background: linear-gradient(to right, #4a2c84, #f47c20);
  text-align: center;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: auto;
  margin-bottom: 0;
}

.gallery_box .box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease 0s;
}

.gallery_box .box:hover img {
  opacity: 0.3;
  transform: scale(1.12);
  transform-origin: center;
}

.gallery_box .box-content {
  color: #fff;
  width: 85%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: all 0.35s ease 0.1s;
  pointer-events: none;
}

.gallery_box .box:hover .box-content {
  opacity: 1;
  pointer-events: auto;
}

.gallery_box .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gallery_box .box .icon li {
  margin: 0;
  display: inline-block;
}

.gallery_box .box .icon li a {
  color: #4a2c84;
  background: #fff;
  font-size: 1rem;
  line-height: 2.1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery_box .box .icon li a:hover {
  color: #fff;
  background: transparent;
  box-shadow: 0 0 0 2px #fff;
}

@media (max-width: 767.98px) {
  .gallery_box .box img {
    height: 130px;
  }
}

.services-intro {
  margin-bottom: 4.5rem;
}

.service-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid #9aa3ad;
  box-shadow: 0 8px 24px rgba(74, 44, 132, 0.07);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #6f7a86;
  box-shadow: 0 14px 32px rgba(74, 44, 132, 0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1.35rem 1.35rem 1.45rem;
}

.service-body h3 {
  margin: 0 0 0.45rem;
  color: #4a2c84;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-body p {
  margin: 0;
  color: #6b6280;
  font-size: 0.94rem;
  line-height: 1.55;
}

.btn-view-treatments {
  display: inline-block;
  background: #ebe6f5;
  color: #4a2c84;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.6rem;
  border-radius: 12px;
  border: 2px solid #4a2c84;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(74, 44, 132, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-view-treatments:hover,
.btn-view-treatments:focus {
  background: #ddd4ef;
  color: #4a2c84;
  border-color: #4a2c84;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(74, 44, 132, 0.16);
}

.cta-section {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #7a5aad 0%, #9b6fd4 45%, #f59a4a 100%);
}

.doctor-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  height: 100%;
  border: 1px solid #f47c20;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf6 55%, #fff5ec 100%);
  box-shadow: 0 18px 40px rgba(74, 44, 132, 0.12);
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
}

.doctor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(244, 124, 32, 0.1), transparent 42%),
    radial-gradient(circle at bottom left, rgba(74, 44, 132, 0.07), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.doctor-card::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -4px;
  width: 130px;
  height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M18 10v14a14 14 0 0 0 28 0V10' stroke='%23f47c20' stroke-width='3.2' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='8' r='5' stroke='%234a2c84' stroke-width='3'/%3E%3Ccircle cx='46' cy='8' r='5' stroke='%234a2c84' stroke-width='3'/%3E%3Cpath d='M32 38v8a10 10 0 1 0 10 10' stroke='%234a2c84' stroke-width='3.2' stroke-linecap='round'/%3E%3Ccircle cx='46' cy='56' r='5.5' stroke='%23f47c20' stroke-width='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(74, 44, 132, 0.18);
}

.doctor-card > * {
  position: relative;
  z-index: 1;
}

.doctor-page-card {
  text-align: left;
  max-width: none;
}

.doctors-page-intro {
  margin-bottom: 2rem;
  padding: 1.8rem 1.6rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(244, 124, 32, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 246, 0.96) 100%);
  border: 1.5px solid rgba(244, 124, 32, 0.38);
  box-shadow: 0 18px 36px rgba(74, 44, 132, 0.1);
}

.doctors-page-copy {
  color: #6f647f;
  line-height: 1.75;
  font-size: 1rem;
}

.doctors-page-points {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1.5px solid rgba(74, 44, 132, 0.18);
}

.doctors-page-points div {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #4a4254;
  font-weight: 600;
  line-height: 1.45;
}

.doctors-page-points i {
  color: #f47c20;
  margin-top: 0.12rem;
}

.doctor-card img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 1.1rem;
  border: 4px solid #f0d2b8;
  box-shadow: 0 6px 18px rgba(74, 44, 132, 0.12);
  display: block;
  background: #faf7f4;
}

.doctor-page-card img {
  margin-left: 0;
  max-width: 160px;
  height: 160px;
}

.doctor-page-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.doctor-page-card p {
  min-height: 4.7em;
  color: #62576f;
}

.doctor-page-card .btn {
  align-self: flex-start;
}

.doctor-card h3 {
  margin-bottom: 0.3rem;
  color: #2d2140;
}

.doctor-card span {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.doctor-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
}

.doctor-meta {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.doctor-meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
}

.doctor-meta i {
  color: var(--primary);
}

.founder-profile-section {
  background:
    radial-gradient(circle at top left, rgba(244, 124, 32, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(74, 44, 132, 0.07), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fbf8fc 100%);
}

.founder-photo-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.founder-photo-logo {
  position: absolute;
  top: -0.35rem;
  left: -0.35rem;
  z-index: 2;
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 0.35rem;
  box-shadow: 0 10px 24px rgba(74, 44, 132, 0.14);
  border: 2px solid rgba(244, 124, 32, 0.25);
}

.founder-photo-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid rgba(244, 124, 32, 0.45);
  box-shadow: 0 22px 48px rgba(74, 44, 132, 0.14);
  background: #fff;
}

.founder-photo-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.founder-experience-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f47c20, #4a2c84);
  color: #fff;
  box-shadow: 0 14px 28px rgba(74, 44, 132, 0.28);
}

.founder-experience-badge strong {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 800;
}

.founder-experience-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.95;
}

.founder-lead {
  margin: 0.85rem 0 0;
  color: #6f647f;
  line-height: 1.7;
  font-size: 1.02rem;
}

.founder-credentials {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.founder-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(74, 44, 132, 0.1);
  box-shadow: 0 8px 20px rgba(74, 44, 132, 0.04);
}

.founder-credentials i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 124, 32, 0.12);
  color: #f47c20;
  font-size: 1rem;
}

.founder-credentials strong {
  display: block;
  color: #2d2140;
  font-size: 0.98rem;
  font-weight: 700;
}

.founder-credentials span {
  display: block;
  margin-top: 0.15rem;
  color: #6f647f;
  font-size: 0.88rem;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.founder-stats-section {
  background: #fffaf6;
  padding-top: 0.5rem !important;
}

.founder-stat-card {
  text-align: center;
  padding: 1.35rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid rgba(74, 44, 132, 0.12);
  box-shadow: 0 10px 24px rgba(74, 44, 132, 0.05);
  height: 100%;
}

.founder-stat-value {
  display: block;
  color: #f47c20;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.founder-stat-label {
  display: block;
  margin-top: 0.35rem;
  color: #5f566c;
  font-size: 0.9rem;
  font-weight: 600;
}

.founder-expertise-section {
  background:
    radial-gradient(circle at top right, rgba(74, 44, 132, 0.06), transparent 40%),
    linear-gradient(180deg, #fbf8fc 0%, #ffffff 100%);
}

.founder-section-intro {
  max-width: 640px;
  margin: 0 auto 2.4rem;
}

.founder-section-lead {
  margin: 0.75rem auto 0;
  color: #6f647f;
  line-height: 1.65;
}

.founder-expertise-card {
  height: 100%;
  padding: 1.55rem 1.3rem 1.45rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(74, 44, 132, 0.1);
  box-shadow: 0 10px 26px rgba(74, 44, 132, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.founder-expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(74, 44, 132, 0.1);
}

.founder-expertise-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.95rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.14), rgba(74, 44, 132, 0.1));
  color: #4a2c84;
  font-size: 1.25rem;
}

.founder-expertise-card h3 {
  margin: 0 0 0.45rem;
  color: #2d2140;
  font-size: 1.08rem;
  font-weight: 700;
}

.founder-expertise-card p {
  margin: 0;
  color: #6f647f;
  font-size: 0.94rem;
  line-height: 1.6;
}

.founder-approach-section {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.founder-approach-list {
  display: grid;
  gap: 0.75rem;
}

.founder-approach-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #4a4254;
  font-weight: 600;
  line-height: 1.45;
}

.founder-approach-list i {
  color: #f47c20;
  margin-top: 0.15rem;
}

.founder-contact-card {
  padding: 1.7rem 1.5rem 1.55rem;
  border-radius: 22px;
  background: #4a2c84;
  color: #fff;
  box-shadow: 0 22px 48px rgba(74, 44, 132, 0.28);
}

.founder-contact-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.founder-contact-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 0.25rem;
}

.founder-contact-brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
}

.founder-contact-brand span {
  display: block;
  font-size: 0.84rem;
  opacity: 0.85;
}

.founder-contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.founder-contact-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.founder-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.founder-contact-list i {
  color: #ffb56b;
  margin-top: 0.2rem;
}

.founder-contact-list a {
  color: #fff;
}

.founder-contact-list a:hover {
  color: #ffc48a;
}

.founder-contact-card .btn-primary {
  background: #f47c20;
  border-color: #f47c20;
}

.founder-contact-card .btn-primary:hover {
  background: #e56f14;
  border-color: #e56f14;
}

@media (max-width: 991.98px) {
  .founder-photo-logo {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 575.98px) {
  .founder-actions .btn {
    width: 100%;
  }

  .founder-experience-badge {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.7rem 0.85rem;
  }
}

.doctors-highlights-section {
  background:
    radial-gradient(circle at top right, rgba(244, 124, 32, 0.08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(74, 44, 132, 0.07), transparent 42%),
    linear-gradient(180deg, #fbf8fc 0%, #ffffff 100%);
  overflow: hidden;
}

.doctors-intro {
  margin-bottom: 2.5rem;
}

.doctor-card-featured {
  position: relative;
  overflow: hidden;
  border: 1px solid #f47c20;
  border-radius: 28px;
  padding: 2.1rem 1.4rem 1.8rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf6 55%, #fff5ec 100%);
  box-shadow: 0 18px 40px rgba(74, 44, 132, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  z-index: 0;
}

.doctor-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(244, 124, 32, 0.1), transparent 42%),
    radial-gradient(circle at bottom left, rgba(74, 44, 132, 0.07), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.doctor-card-featured::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -4px;
  width: 130px;
  height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M18 10v14a14 14 0 0 0 28 0V10' stroke='%23f47c20' stroke-width='3.2' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='8' r='5' stroke='%234a2c84' stroke-width='3'/%3E%3Ccircle cx='46' cy='8' r='5' stroke='%234a2c84' stroke-width='3'/%3E%3Cpath d='M32 38v8a10 10 0 1 0 10 10' stroke='%234a2c84' stroke-width='3.2' stroke-linecap='round'/%3E%3Ccircle cx='46' cy='56' r='5.5' stroke='%23f47c20' stroke-width='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.doctor-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(74, 44, 132, 0.18);
}

.doctor-card-featured > * {
  position: relative;
  z-index: 1;
}

.doctor-photo {
  width: 210px;
  height: 210px;
  margin: 0.2rem auto 1.2rem;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 3px solid #d9d2e3;
}

.doctor-card-featured .doctor-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.doctor-card-featured h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.doctor-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.doctor-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #f47c20;
  background: transparent;
  color: #d86a12;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.doctor-view-btn:hover {
  background: rgba(244, 124, 32, 0.1);
  color: #c45e0c;
}

.doctor-card-featured span {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
  color: #d86a12;
  font-size: 0.82rem;
  font-weight: 700;
}

.doctor-card-featured p {
  min-height: 4.2em;
  color: #6f647f;
  font-size: 0.88rem;
}

.doctors-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.doctors-slider {
  display: flex;
  gap: 1.35rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1.1rem 0.35rem 1.6rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}

.doctors-slider::-webkit-scrollbar {
  display: none;
}

.doctors-slide {
  flex: 0 0 calc((100% - 2.7rem) / 3);
  scroll-snap-align: start;
  min-width: 270px;
}

.doctors-slide .doctor-card {
  max-width: none;
  margin: 0;
  height: 100%;
}

.doctors-slider-btn {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #f47c20;
  background: #fff7f0;
  color: #f47c20;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(244, 124, 32, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.doctors-slider-btn:hover {
  transform: translateY(-2px);
  background: #f47c20;
  color: #fff;
  box-shadow: 0 12px 24px rgba(244, 124, 32, 0.28);
  filter: none;
}

@media (max-width: 991.98px) {
  .doctors-slide {
    flex-basis: calc((100% - 1.35rem) / 2);
  }
}

@media (max-width: 575.98px) {
  .doctors-slide {
    flex-basis: 88%;
  }

  .doctors-slider-btn {
    display: none;
  }

  .doctor-photo {
    width: 180px;
    height: 180px;
  }
}

/* ===== CONTACT PAGE ===== */

/* Hero stats pills */
.contact-hero .contact-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-hero .contact-hero-stats div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1.5px solid rgba(244,124,32,0.3);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  color: #2d2140;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 2px 12px rgba(74,44,132,0.1);
}

.contact-hero .contact-hero-stats i {
  color: var(--primary);
  font-size: 1rem;
}

.contact-hero .contact-hero-stats span {
  color: #2d2140;
}

/* ---- Locations Strip ---- */
.contact-locations-section {
  background: linear-gradient(135deg, #fff8f0 0%, #f5f0ff 100%);
  padding: 2rem 0 2rem;
  position: relative;
}

.contact-locations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23f47c20' fill-opacity='0.06'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.contact-location-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1.5px solid rgba(244,124,32,0.15);
  box-shadow: 0 4px 24px rgba(74,44,132,0.07);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.contact-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(74,44,132,0.13);
  border-color: rgba(244,124,32,0.35);
}

.clc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.clc-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(244,124,32,0.12);
  letter-spacing: -0.04em;
}

.contact-location-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(244,124,32,0.08);
  border-radius: 999px;
  padding: 0.22rem 0.9rem;
  display: inline-block;
  border: 1px solid rgba(244,124,32,0.22);
}

.clc-body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.clc-icon-wrap {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8f0, #f3eeff);
  border: 1.5px solid rgba(244,124,32,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.clc-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clc-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.clc-info p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.clc-info p i {
  color: var(--primary);
  margin-right: 0.3rem;
  font-size: 0.85rem;
}

.contact-location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  padding: 0.38rem 1.1rem;
  transition: background 0.22s, color 0.22s;
  text-decoration: none;
}

.contact-location-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- Contact Info + Form ---- */
.contact-main-section {
  background: #fff;
  padding: 4rem 0;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #d8d8d8;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  height: 100%;
}

.contact-info-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #f0eaf8;
}

.contact-info-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.4rem;
}

.contact-info-header h2,
.contact-form-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0;
}

.cdl-cards {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cdl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cdl-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(244,124,32,0.12);
}

.cdl-card-left {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.cdl-card-left > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.cdl-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3eeff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdl-icon i {
  color: var(--primary-dark);
  font-size: 1rem;
}

.cdl-card strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a2e;
  display: block;
}

.cdl-card span {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.5;
  word-break: break-word;
}

.cdl-action-btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  border: 1.5px solid #d0c6ee;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cdl-action-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Social icons row */
.contact-social-row {
  display: flex;
  gap: 0.6rem;
  padding-top: 0.25rem;
}

.contact-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
}

.contact-social-row a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contact-social-row a[aria-label="Facebook"] { color: #1877f2; }
.contact-social-row a[aria-label="WhatsApp"] { color: #25d366; }
.contact-social-row a[aria-label="Instagram"] { color: #e1306c; }
.contact-social-row a[aria-label="YouTube"]   { color: #ff0000; }

.footer-social-row {
  margin-top: 0.85rem;
  gap: 0.45rem;
}

.footer-social-row a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #d8d8d8;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  height: 100%;
  border-top: 3px solid var(--primary);
}

.contact-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .cf-row-2 { grid-template-columns: 1fr; }
}

.cf-group {
  margin-bottom: 1rem;
}

.cf-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: auto;
}

.cf-control::placeholder {
  color: #aaa;
}

.cf-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.1);
}

textarea.cf-control {
  resize: vertical;
}

.cf-submit-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
}

.cf-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Map section */
.contact-map-section {
  background: linear-gradient(135deg, #fff8f0 0%, #f5f0ff 100%);
  padding: 2rem 0 3.5rem;
}

.appointment-page-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.appointment-info-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.appointment-info-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}

.appointment-info-copy {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.appointment-feature-list {
  display: grid;
  gap: 1rem;
}

.appointment-feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 0;
}

.appointment-feature-item span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(244, 124, 32, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.appointment-feature-item strong {
  display: block;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.appointment-feature-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.appointment-form-card .contact-form-title {
  font-size: 1.45rem;
}

.appointment-contact-strip-section {
  padding: 2.25rem 0 2.75rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
}

.appointment-contact-strip {
  background: #fff;
  border: 1.5px solid #c5ced6;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
}

.appointment-contact-strip h2,
.appointment-contact-ref-title {
  margin: 0 0 20px;
  padding: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  font-family: Roboto, Arial, sans-serif;
  color: #1b212c;
  letter-spacing: 0;
  border-bottom: 1px solid #e8eef2;
}

.appointment-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.5rem;
}

.appointment-contact-icon {
  width: auto;
  height: auto;
  background: transparent;
  color: #5a6c7d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.9;
  margin-top: 0.03rem;
}

.appointment-contact-ref-row {
  margin: 0 -0.5rem;
  padding: 0;
}

.appointment-contact-ref-item {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.appointment-contact-ref-icon {
  font-size: 1.35rem;
}

.appointment-contact-ref-icon-address {
  color: #d6527f;
}

.appointment-contact-ref-icon-phone {
  color: #e0519b;
}

.appointment-contact-ref-icon-email {
  color: #7f8cff;
}

.appointment-contact-ref-icon-web {
  color: #54c7ff;
}

.appointment-contact-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #208a9e;
}

.appointment-contact-item p {
  margin: 0;
  color: #1b212c;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
}

.appointment-contact-item a {
  color: #1b212c;
  font-weight: 500;
  text-decoration: none;
}

.appointment-contact-item a:hover {
  color: #208a9e;
  text-decoration: underline;
}

.appointment-contact-strip-section,
.appointment-contact-strip-section .book-appointment-card,
.appointment-contact-strip-section .book-control,
.appointment-contact-strip-section .book-label,
.appointment-contact-strip-section .book-submit-btn {
  font-family: "Roboto", Arial, sans-serif;
}

.appointment-form-map-row {
  margin-top: 1.75rem;
  align-items: stretch;
}

.appointment-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #000;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(32, 138, 158, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  height: 400px;
  width: 100%;
  background: #fff;
}

.appointment-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
  display: block;
}

.appointment-form-card {
  height: 100%;
}

.book-appointment-card {
  background: #fff;
  border: 1.5px solid #c5ced6;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(74, 44, 132, 0.1);
  height: auto;
  overflow: visible;
  font-family: "Roboto", Arial, sans-serif;
}

.book-appointment-header {
  text-align: center;
  padding: 1.45rem 1.25rem 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(244, 124, 32, 0.16), transparent 42%),
    radial-gradient(circle at bottom left, rgba(74, 44, 132, 0.12), transparent 45%),
    linear-gradient(180deg, #faf7ff 0%, #fff 100%);
  border-bottom: 1px solid rgba(74, 44, 132, 0.1);
  border-radius: 16px 16px 0 0;
}

.book-appointment-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
  color: #c45f12;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-appointment-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.65rem 1.7rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #4a2c84 0%, #5d3a9f 55%, #3d246e 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 24px rgba(74, 44, 132, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: bookTitleIn 0.55s ease both;
}

.book-appointment-title i {
  color: #f47c20;
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15));
}

.book-appointment-title span {
  color: #fff;
}

@keyframes bookTitleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.book-appointment-body {
  padding: 1.25rem 1.5rem 1.6rem;
}

.book-form-row {
  margin-left: -8px;
  margin-right: -8px;
}

.book-form-row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.book-form-group {
  margin-bottom: 1rem;
  position: relative;
}

.book-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #1b212c;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "Roboto", Arial, sans-serif;
}

.book-label .text-danger {
  color: #dc3545 !important;
}

.book-control {
  display: block;
  width: 100%;
  height: 44px;
  padding: 6px 12px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  background: #fff !important;
  color: #1b212c !important;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.5;
  outline: none;
  box-shadow: none !important;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.book-control::placeholder {
  color: #8a93a0;
  opacity: 1;
}

.book-control:focus,
.book-control:active {
  border-color: #adb5bd;
}

.book-control.is-invalid,
.book-select-trigger.is-invalid {
  border-color: #dc3545 !important;
}

.book-textarea {
  height: auto !important;
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.book-invalid {
  display: none;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #dc3545;
}

.book-form-group.is-invalid .book-invalid {
  display: block;
}

.book-select-wrap {
  position: relative;
}

.book-select-trigger {
  text-align: left;
  cursor: pointer;
  padding-right: 2.4rem;
  position: relative;
  appearance: none;
}

.book-select-trigger::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6c757d;
  transform: translateY(-40%);
  pointer-events: none;
}

.book-select-wrap.is-open .book-select-trigger::after {
  transform: translateY(-60%) rotate(180deg);
}

.book-select-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.book-select-option {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.65rem 0.95rem;
  color: #1b212c;
  font-size: 0.98rem;
  font-family: "Roboto", Arial, sans-serif;
  cursor: pointer;
}

.book-select-option:hover,
.book-select-option.selected {
  background: #e9ecef;
  color: #1b212c;
}

.book-time-dropdown .book-select-option:hover,
.book-time-dropdown .book-select-option.selected {
  background: #167ce9;
  color: #fff;
}

.book-date-wrap {
  position: relative;
}

.book-date-wrap .book-control {
  padding-right: 2.6rem;
  cursor: pointer;
}

.book-date-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border: 0;
}

.book-date-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  filter: grayscale(0.15) saturate(1.4);
}

.book-submit-wrap {
  margin-top: 0.35rem;
}

.book-submit-btn {
  display: inline-block;
  min-width: 0;
  margin-top: 0.2rem;
  padding: 0.55rem 1.15rem;
  border: 0;
  border-radius: 8px;
  background: #1b212c;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Roboto", Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}

.book-submit-btn:hover {
  background: #11161f;
  transform: translateY(-1px);
  color: #fff;
}

.book-note {
  display: block;
  width: 100%;
  margin-top: 0.95rem;
  color: #5a6c7d;
  font-size: 0.9rem;
  font-family: "Roboto", Arial, sans-serif;
  text-align: left;
}

.book-note a {
  color: #167ce9;
  font-weight: 700;
  text-decoration: none;
}

.book-note a:hover {
  color: #0f63c0;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .appointment-contact-ref-row {
    row-gap: 0.5rem;
  }

  .appointment-map-wrap {
    height: 300px;
  }

  .appointment-form-map-row .col-lg-6:last-child {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .appointment-map-wrap {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .appointment-contact-strip {
    padding: 1.25rem 1rem;
  }

  .appointment-contact-strip h2,
  .appointment-contact-ref-title {
    font-size: 18px;
    padding: 0 0 12px;
  }

  .appointment-contact-ref-row {
    padding: 0;
  }
}

/* Legacy contact panel (kept for other pages if any) */
.contact-panel,
.appointment-panel {
  padding: 2rem;
  height: 100%;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-list a {
  color: var(--text-dark);
}

.contact-list a:hover {
  color: var(--primary);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-row a {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(74, 44, 132, 0.08));
  color: var(--primary-dark);
  font-weight: 700;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #d8d8d8;
  box-shadow: 0 6px 32px rgba(0,0,0,0.1);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  background: linear-gradient(180deg, #2a173d 0%, #1d102d 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 0;
  padding-bottom: 0;
}

.footer-panel {
  padding: 1rem 0;
}

.footer-panel > h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-panel-center {
  text-align: center;
}

.footer-panel-center .footer-links {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.footer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 1rem;
  height: 100%;
  backdrop-filter: none;
}

.footer-card h4,
.footer-card h5 {
  color: #fff;
}

.footer-card p {
  color: rgba(255, 255, 255, 0.92);
}

.footer-map-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 1rem;
  height: auto;
  width: 100%;
  max-width: none;
  backdrop-filter: blur(6px);
}

.footer-map-panel h5,
.footer-map-panel .ftco-heading-2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.location-card-inner {
  width: 100%;
}

.footer-map-panel .map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  background: rgba(0, 0, 0, 0.2);
}

.footer-map-panel .map-frame iframe {
  width: 100%;
  height: 190px;
  min-height: 190px;
  border: 0;
  display: block;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

.footer-address-item {
  display: block;
}

.footer-address-item a {
  display: block;
}

.footer-address-divider {
  margin: 0.7rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  margin-top: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-designed {
  white-space: nowrap;
}

.footer-designed a {
  color: #d4a574;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
}

.footer-designed a:hover {
  color: #e0b88a;
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.9rem;
  text-align: right;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.45);
}

.floating-socials {
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1030;
}

.floating-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 30px rgba(74, 44, 132, 0.16);
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-socials a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(74, 44, 132, 0.22);
}

.social-facebook {
  background: #1877f2;
}

.social-youtube {
  background: #ff0000;
}

.social-whatsapp {
  background: #25d366;
}

.social-instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.bg-light-subtle {
  background: linear-gradient(180deg, #fffaf6 0%, #fff5ee 100%);
}

.why-choose-section {
  background: #fffaf6;
}

.why-choose-intro {
  margin: 0 auto 2.5rem;
}

.why-choose-title {
  margin: 0.85rem 0 0;
  color: #2d2140;
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 700;
  line-height: 1.3;
}

.why-choose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.85rem 1.25rem 1.7rem;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid rgba(74, 44, 132, 0.22);
  box-shadow: 0 8px 24px rgba(74, 44, 132, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-choose-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 124, 32, 0.45);
  box-shadow: 0 14px 32px rgba(74, 44, 132, 0.09);
}

.why-choose-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1.05rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(244, 124, 32, 0.1);
  color: #f47c20;
  font-size: 1.35rem;
}

.why-choose-card h3 {
  margin: 0 0 0.5rem;
  color: #2d2140;
  font-size: 1.08rem;
  font-weight: 700;
}

.why-choose-card p {
  margin: 0;
  max-width: 16.5rem;
  color: #6f647f;
  font-size: 0.92rem;
  line-height: 1.6;
}

.patient-voices-section {
  background: #fff;
}

.patient-summary-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.45rem 1.35rem;
  border-radius: 14px;
  background: #fff;
  border: 1.5px dashed #c5ced6;
}

.patient-summary-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.patient-summary-check {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0f6b66;
  color: #fff;
  font-size: 1.05rem;
}

.patient-summary-head h2 {
  margin: 0;
  color: #0f6b66;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.patient-summary-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #4a5560;
  font-size: 0.96rem;
  line-height: 1.65;
}

.patient-summary-list li::marker {
  color: #0f6b66;
}

.patient-summary-list li + li {
  margin-top: 0.7rem;
}

.patient-summary-list strong {
  color: #2f3a43;
  font-weight: 700;
}

.patient-summary-note {
  margin: auto 0 0;
  padding-top: 1.25rem;
  color: #8e9aaf;
  font-size: 0.82rem;
  line-height: 1.5;
}

.patient-voices-kicker {
  margin: 0 0 0.95rem;
  color: #0f6b66;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patient-voice-card {
  margin: 0;
  padding: 1.2rem 1.15rem 1.1rem;
  border-radius: 12px;
  background: #f4f7f9;
  border: 1px solid #d7dee5;
}

.patient-voice-quote {
  display: block;
  margin-bottom: 0.2rem;
  color: #0f6b66;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.patient-voice-card p {
  margin: 0 0 0.85rem;
  color: #4a4a4a;
  font-size: 0.96rem;
  line-height: 1.6;
  font-style: italic;
}

.patient-voice-card footer {
  color: #8e9aaf;
  font-size: 0.88rem;
  font-style: normal;
}

.form-control,
.form-select {
  border-radius: 16px;
  border-color: rgba(244, 124, 32, 0.16);
  padding: 0.9rem 1rem;
  background: #fffdfb;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(244, 124, 32, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(244, 124, 32, 0.12);
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    padding-bottom: 0.75rem;
  }

  .site-navbar .navbar-nav {
    padding-bottom: 0.25rem;
    gap: 0.25rem;
  }

  .site-navbar .navbar-nav .nav-item.ms-lg-2 {
    margin-top: 0.45rem;
    margin-bottom: 0.15rem;
    width: 100%;
  }

  .site-navbar .navbar-nav .nav-item.ms-lg-2 .btn {
    width: 100%;
  }

  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .floating-card-top,
  .floating-card-bottom {
    align-self: stretch;
  }

  .hero-card {
    padding: 0;
  }

  .footer-map-panel .map-frame iframe {
    height: 180px;
    min-height: 180px;
  }

  .footer-map-panel {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .site-logo {
    width: 56px;
    height: 56px;
  }

  .home-hero-carousel .hero-slide-image {
    height: 52vh;
  }

  .hero-section h1 {
    font-size: 2.3rem;
  }

  .hero-visual {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-side-image {
    height: auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .doctor-card,
  .contact-panel,
  .appointment-panel,
  .info-tile {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }

  .floating-socials {
    right: 14px;
    bottom: 16px;
  }

  .floating-socials a {
    width: 34px;
    height: 34px;
  }
}

/* ===== Treatment detail pages (reusable service template) ===== */
.treatment-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.treatment-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(244, 124, 32, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 55% at 8% 85%, rgba(74, 44, 132, 0.12), transparent 60%),
    linear-gradient(180deg, #fff8f2 0%, #faf7ff 42%, #ffffff 100%);
  pointer-events: none;
}

.treatment-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/dental-pattern.png");
  background-size: 220px auto;
  opacity: 0.045;
}

.treatment-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.treatment-breadcrumb a {
  color: var(--primary-dark);
  font-weight: 600;
}

.treatment-breadcrumb a:hover {
  color: var(--primary);
}

.treatment-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
  color: #c45f10;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-hero-title {
  margin: 0 0 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  line-height: 1.15;
}

.treatment-hero-copy {
  margin: 0 0 1.55rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.treatment-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.btn-outline-treatment {
  border: 1.5px solid rgba(74, 44, 132, 0.28);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.btn-outline-treatment:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.treatment-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.treatment-hero-meta i {
  color: var(--primary);
  font-size: 1rem;
}

.treatment-hero-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-hero-ring {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(145deg, rgba(244, 124, 32, 0.22), rgba(74, 44, 132, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  animation: treatmentPulse 6s ease-in-out infinite;
}

.treatment-hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 1.75rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid #9aa3ad;
  box-shadow:
    0 30px 60px rgba(74, 44, 132, 0.14),
    0 8px 20px rgba(244, 124, 32, 0.08);
  backdrop-filter: blur(10px);
}

.treatment-hero-visual img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  margin: 0 auto;
  animation: treatmentFloat 5.5s ease-in-out infinite;
}

.treatment-hero-chip {
  position: absolute;
  z-index: 2;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid #9aa3ad;
  box-shadow: 0 14px 30px rgba(74, 44, 132, 0.12);
  animation: treatmentChipIn 0.7s ease both;
}

.treatment-hero-chip strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.treatment-hero-chip span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.treatment-hero-chip-left {
  left: 0;
  bottom: 18%;
  animation-delay: 0.15s;
}

.treatment-hero-chip-right {
  right: 0;
  top: 16%;
  animation-delay: 0.28s;
  background: #fff4eb;
  border-color: #f47c20;
  box-shadow: 0 14px 30px rgba(244, 124, 32, 0.18);
}

.treatment-hero-chip-right strong {
  color: #c45f10;
}

.treatment-hero-chip-right span {
  color: #a86a35;
}

@keyframes treatmentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes treatmentPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.92; }
}

@keyframes treatmentChipIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.treatment-section {
  padding: 4.25rem 0;
}

.treatment-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.treatment-lead {
  margin: 1.1rem 0 0.85rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-dark);
}

.treatment-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.treatment-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.treatment-benefit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.2rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid #9aa3ad;
  box-shadow: 0 12px 28px rgba(74, 44, 132, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-benefit:hover {
  transform: translateY(-3px);
  border-color: #6f7a86;
  box-shadow: 0 18px 36px rgba(74, 44, 132, 0.1);
}

.treatment-benefit-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(244, 124, 32, 0.16), rgba(74, 44, 132, 0.1));
  color: var(--primary);
  font-size: 1.2rem;
}

.treatment-benefit h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.treatment-benefit p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.treatment-types-section {
  padding: 0;
  background:
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.treatment-type {
  position: relative;
  height: 100%;
  padding: 1.55rem 1.35rem 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid #9aa3ad;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.treatment-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.treatment-type:hover {
  transform: translateY(-6px);
  border-color: #6f7a86;
  box-shadow: 0 20px 40px rgba(74, 44, 132, 0.12);
}

.treatment-type:hover::before {
  transform: scaleX(1);
}

.treatment-type-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.treatment-type-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.treatment-type-top i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(74, 44, 132, 0.08);
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.treatment-type h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.treatment-type p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.treatment-panel {
  height: 100%;
  padding: 1.9rem 1.7rem;
  border-radius: 24px;
}

.treatment-panel-light {
  background: #fff;
  border: 1.5px solid #9aa3ad;
  box-shadow: 0 16px 40px rgba(74, 44, 132, 0.06);
}

.treatment-panel-accent {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--text-dark);
  border: 1.5px solid #9aa3ad;
  box-shadow: 0 16px 40px rgba(74, 44, 132, 0.08);
  padding: 1.45rem 1.35rem;
}

.treatment-panel-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #c5ced6;
}

.treatment-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #eef1f4;
  color: #5f6b76;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-panel-accent h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--primary-dark);
}

.treatment-panel-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.treatment-care-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.treatment-care-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.85rem 0.7rem 0.75rem;
  border-radius: 14px;
  background: #f7f8fa;
  border: 1.5px solid #9aa3ad;
  border-left: 4px solid #9aa3ad;
  line-height: 1.45;
  color: var(--text-dark);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.treatment-care-list li:hover {
  transform: translateX(3px);
  background: #fff;
  border-color: #6f7a86;
  border-left-color: #6f7a86;
  box-shadow: 0 6px 14px rgba(74, 44, 132, 0.06);
}

.treatment-care-list span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e4e8ec;
  color: #4a5560;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.treatment-checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.treatment-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(244, 124, 32, 0.06);
  border: 1.5px solid #9aa3ad;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--text-dark);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.treatment-checklist li:hover {
  background: rgba(244, 124, 32, 0.1);
  border-color: #6f7a86;
}

.treatment-checklist i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
}

.treatment-process-section {
  padding-top: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 124, 32, 0.08), transparent 40%),
    #fff;
}

.treatment-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}

.treatment-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 44, 132, 0.15), rgba(244, 124, 32, 0.45), rgba(74, 44, 132, 0.15));
}

.treatment-step {
  position: relative;
  text-align: center;
  padding: 0 0.35rem;
}

.treatment-step-index {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(244, 124, 32, 0.45);
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(74, 44, 132, 0.1);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.treatment-step:hover .treatment-step-index {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.06);
}

.treatment-step-body {
  padding: 1.15rem 1rem;
  border-radius: 18px;
  background: #fffaf6;
  border: 1.5px solid #9aa3ad;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-step:hover .treatment-step-body {
  transform: translateY(-3px);
  border-color: #6f7a86;
  box-shadow: 0 14px 28px rgba(74, 44, 132, 0.08);
}

.treatment-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.treatment-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.treatment-cta-section {
  padding: 0 0 3rem;
}

.treatment-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.65rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 92% 20%, rgba(244, 124, 32, 0.14), transparent 40%),
    radial-gradient(ellipse at 8% 90%, rgba(74, 44, 132, 0.06), transparent 42%),
    #ffffff;
  border: 1.5px solid #9aa3ad;
  box-shadow:
    0 14px 34px rgba(74, 44, 132, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.treatment-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f47c20 0%, #4a2c84 100%);
}

.treatment-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff4eb, #ffe8d4);
  border: 1.5px solid rgba(244, 124, 32, 0.35);
  color: #f47c20;
  font-size: 1.45rem;
  box-shadow: 0 8px 16px rgba(244, 124, 32, 0.12);
}

.treatment-cta-copy {
  flex: 1;
  min-width: 0;
}

.treatment-cta-label {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(244, 124, 32, 0.12);
  color: #c45f10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-cta h2 {
  margin: 0 0 0.3rem;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #4a2c84;
}

.treatment-cta-copy > p:not(.treatment-cta-label) {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #6f647f;
  max-width: 34rem;
}

.treatment-cta-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  min-width: 190px;
}

.treatment-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f47c20, #e06e16);
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  border: none;
  box-shadow: 0 10px 20px rgba(244, 124, 32, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.treatment-cta-primary:hover {
  background: linear-gradient(135deg, #e06e16, #d46512);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(244, 124, 32, 0.34);
}

.treatment-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid #9aa3ad;
  background: #fff;
  color: #4a2c84;
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.treatment-cta-phone:hover {
  border-color: #4a2c84;
  background: #f7f2ff;
  color: #4a2c84;
}

.treatment-cta-phone i {
  color: #f47c20;
}
a.service-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

a.service-card-link:hover {
  color: inherit;
}

@media (max-width: 1199.98px) {
  .treatment-timeline::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .treatment-hero {
    padding: 0;
    text-align: center;
  }

  .treatment-breadcrumb {
    justify-content: center;
  }

  .treatment-hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .treatment-hero-actions,
  .treatment-hero-meta {
    justify-content: center;
  }

  .treatment-hero-stage {
    min-height: 360px;
    margin-top: 0.5rem;
  }

  .treatment-hero-chip-left {
    left: 4%;
    bottom: 8%;
  }

  .treatment-hero-chip-right {
    right: 4%;
    top: 8%;
  }

  .treatment-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .treatment-benefit-grid {
    grid-template-columns: 1fr;
  }

  .treatment-hero-chip {
    display: none;
  }

  .treatment-hero-stage {
    min-height: 0;
  }

  .treatment-hero-visual {
    width: 100%;
  }

  .treatment-timeline {
    grid-template-columns: 1fr;
  }

  .treatment-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.15rem 1.25rem 1.35rem;
  }

  .treatment-cta-actions {
    width: 100%;
    min-width: 0;
  }

  .treatment-cta-primary {
    width: 100%;
    text-align: center;
  }

  .treatment-panel {
    padding: 1.65rem 1.25rem;
  }

  .treatment-section {
    padding: 3.25rem 0;
  }

  .treatment-types-section {
    padding: 0;
  }

  .treatment-process-section {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatment-hero-visual img,
  .treatment-hero-ring,
  .treatment-hero-chip {
    animation: none;
  }
}
