:root {
  --blue-900: #0A2B65;
  --blue-700: #163979;
  --blue-600: #1b448f;
  --teal-500: #4F867D;
  --teal-600: #3f7169;
  --bg: #edf3f8;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #4e6179;
  --brand: var(--teal-500);
  --brand-deep: var(--blue-900);
  --accent: var(--blue-700);
  --line: #d6e1ee;
  --shadow-soft: 0 14px 40px rgba(18, 32, 51, 0.12);
  --shadow-card: 0 18px 42px rgba(10, 28, 52, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  letter-spacing: 0.01em;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: #f2f7ff;
  font-size: 0.86rem;
}

.top-strip-inner {
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  font-weight: 700;
  color: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 252, 255, 0.97) 56%, rgba(240, 247, 255, 0.98) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 32, 51, 0.1);
  box-shadow: 0 8px 22px rgba(18, 32, 51, 0.09);
}

.navbar {
  min-height: 6.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.35rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(13, 95, 102, 0.32);
  box-shadow: 0 6px 16px rgba(10, 43, 101, 0.12);
}

.brand-overline {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  color: #5f7891;
}

.brand strong {
  display: block;
  color: #173453;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: 0.28rem;
}

.nav-links a,
.nav-dropdown-toggle {
  color: #304962;
  font-weight: 700;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  cursor: pointer;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: #0A2B65;
  background: rgba(19, 77, 132, 0.1);
  box-shadow: inset 0 0 0 1px rgba(19, 77, 132, 0.16);
}

.nav-links a.is-current {
  color: #0A2B65;
  background: rgba(19, 77, 132, 0.14);
  box-shadow: inset 0 0 0 1px rgba(19, 77, 132, 0.22);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-caret {
  font-size: 0.76rem;
  transition: transform 180ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 260px;
  display: none;
  flex-direction: column;
  padding: 0.44rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid rgba(22, 57, 121, 0.16);
  box-shadow: 0 16px 32px rgba(10, 43, 101, 0.16);
  z-index: 30;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.54rem 0.62rem;
  border-radius: 8px;
  color: #244365;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 160ms ease, color 160ms ease, transform 140ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #0A2B65;
  background: rgba(22, 57, 121, 0.1);
  transform: translateX(2px);
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown.is-open .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(22, 57, 121, 0.26);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1c3f73;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle.is-open {
  background: var(--blue-900);
  border-color: var(--blue-900);
  box-shadow: 0 8px 18px rgba(10, 43, 101, 0.24);
}

.nav-toggle.is-open span {
  background: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-header {
  min-width: 190px;
  padding: 0.82rem 1.45rem;
  border-radius: 18px;
  background: var(--blue-700);
  color: #ffffff;
  border-color: var(--blue-700);
  box-shadow: 0 10px 20px rgba(10, 43, 101, 0.2);
  font-weight: 700;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--blue-600);
  box-shadow: 0 12px 22px rgba(10, 43, 101, 0.24);
}

.hero {
  padding: 0 0 2rem;
  position: relative;
}

.hero > .container:first-child {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.dental-slider {
  position: relative;
  min-height: calc(100vh - 8.8rem);
  min-height: calc(100svh - 8.8rem);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: #b7eaef;
}

.slider-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 540ms ease, visibility 540ms ease;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
}

.slider-item.is-active {
  opacity: 1;
  visibility: visible;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(265deg, rgba(6, 32, 61, 0.76) 0%, rgba(8, 51, 73, 0.7) 36%, rgba(8, 49, 72, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.36));
}

.slider-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  max-width: min(1180px, calc(100% - 2rem));
  color: #fff;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4.2rem) 0;
}

.slider-content > * {
  max-width: 860px;
}

.slider-content h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(1.6rem, 2.95vw, 2.6rem);
  line-height: 1.16;
}

.slider-content p {
  margin: 0.85rem 0 1.4rem;
  max-width: 48rem;
  font-size: clamp(0.95rem, 1.25vw, 1.07rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.45rem;
}

.slider-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: #083956;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: #ffffff;
}

.slider-prev {
  left: 1.3rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.slider-dots button {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #ffffff;
}

.hero-feature-wrap {
  margin-top: -5.6rem;
  position: relative;
  z-index: 7;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.feature-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(176deg, #062c55 0%, #04274b 100%);
  color: #ebf6ff;
  border-radius: 22px;
  padding: 1.35rem 1.4rem 1.2rem;
  border: 1px solid rgba(167, 205, 248, 0.16);
  box-shadow: 0 14px 32px rgba(5, 23, 45, 0.28);
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(6, 28, 49, 0.34);
}

.feature-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 44%;
  height: 12px;
  border-radius: 999px;
  background: #dbe5ef;
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.45rem;
}

.feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #70a8a0, #4f867d 72%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(79, 134, 125, 0.32);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-num {
  position: absolute;
  left: 1.3rem;
  bottom: 1.72rem;
  color: transparent;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(177, 207, 236, 0.42);
  opacity: 0.7;
}

.feature-box h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.38vw, 1.5rem);
  color: #ffffff;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.feature-box p {
  margin: 0.36rem 0 0.8rem;
  color: rgba(235, 244, 255, 0.96);
  line-height: 1.48;
  font-size: clamp(0.95rem, 1.04vw, 1.08rem);
  max-width: 100%;
  padding-left: calc(60px + 0.85rem);
  padding-right: 0.35rem;
}

.btn-primary {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 10px 24px rgba(10, 43, 101, 0.34);
}

.btn-secondary {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.card {
  background: var(--paper);
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 22px;
  padding: 1.7rem;
  box-shadow: var(--shadow-card);
  animation: rise 620ms ease both;
}

.section {
  padding: 4.1rem 0;
}

.section-stat {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.about-showcase {
  padding-top: 4.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  border-top: 1px solid #d6e1ee;
  border-bottom: 1px solid #d6e1ee;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.3rem;
  align-items: center;
}

.about-media-collage {
  position: relative;
  min-height: 530px;
}

.about-media {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 7px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 42px rgba(18, 32, 51, 0.18);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-main {
  top: 0;
  left: 0;
  width: 58%;
  height: 240px;
}

.media-float {
  top: 68px;
  right: 0;
  width: 56%;
  height: 255px;
}

.media-base {
  bottom: 0;
  left: 8%;
  width: 60%;
  height: 248px;
}

.about-media-duo {
  min-height: 560px;
}

.about-media-duo .media-team {
  top: 0;
  left: 0;
  width: 98%;
  height: 410px;
}

.about-media-duo .media-clinic {
  left: 4%;
  bottom: 0;
  width: 52%;
  height: 170px;
}

.about-media-duo .experience-badge {
  right: 0;
  bottom: 4%;
  width: 41%;
}

.experience-badge {
  position: absolute;
  right: 10%;
  bottom: 8%;
  width: 42%;
  background: linear-gradient(180deg, #0A2B65, #123a80);
  color: #ffffff;
  border-radius: 18px;
  padding: 1.15rem 1rem;
  box-shadow: 0 16px 34px rgba(10, 43, 101, 0.3);
}

.experience-badge strong {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
}

.experience-badge p {
  margin: 0.4rem 0 0;
  line-height: 1.35;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.92);
}

.about-copy h2 {
  margin: 0.6rem 0 0.95rem;
  font-size: clamp(1.55rem, 2.35vw, 2.45rem);
  line-height: 1.22;
  color: #092b4f;
}

.about-copy h2 span {
  color: #4F867D;
}

.about-copy > p {
  margin: 0 0 0.85rem;
  color: #5f7086;
  line-height: 1.72;
  font-size: 1.04rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #4F867D;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.86rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.about-point {
  background: #f7fafc;
  border: 1px solid #dce6f0;
  border-radius: 18px;
  padding: 1rem 1rem 0.95rem;
}

.about-point h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #0d2f54;
}

.about-point p {
  margin: 0.42rem 0 0;
  color: #62758b;
  line-height: 1.5;
  font-size: 0.96rem;
}

.about-point-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-point-icon {
  width: 2.65rem;
  height: 2.65rem;
  min-width: 2.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 134, 125, 0.14);
  border: 1px solid rgba(79, 134, 125, 0.32);
}

.about-point-icon svg {
  width: 1.42rem;
  height: 1.42rem;
  stroke: #0A2B65;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-btn {
  margin-top: 1.2rem;
  background: #0A2B65;
  color: #ffffff;
}

.about-btn:hover {
  background: #123a80;
}

.about-cta-group {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.about-cta-group .about-btn {
  margin-top: 0;
}

.about-btn-outline {
  background: #ffffff;
  border-color: rgba(10, 43, 101, 0.26);
  color: #0A2B65;
}

.about-btn-outline:hover {
  background: #edf4ff;
  border-color: rgba(10, 43, 101, 0.36);
}

.about-purpose {
  padding-top: 1.25rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(79, 134, 125, 0.12), transparent 32%),
    radial-gradient(circle at 90% 95%, rgba(10, 43, 101, 0.12), transparent 38%),
    linear-gradient(180deg, #f4f8fe 0%, #ebf1fa 100%);
}

.about-purpose-head {
  text-align: center;
  margin-bottom: 1.3rem;
}

.about-purpose-overline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0A2B65;
  margin-bottom: 0.44rem;
}

.about-purpose-head h2 {
  margin: 0 0 0.45rem;
  color: #0A2B65;
  font-size: clamp(1.72rem, 2.6vw, 2.35rem);
  line-height: 1.2;
}

.about-purpose-head h2 span {
  color: #3f7d88;
}

.about-purpose-head p {
  margin: 0 auto;
  max-width: 720px;
  color: #5c6f85;
  font-size: 1.02rem;
}

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-purpose-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 18px;
  border: 1px solid rgba(10, 43, 101, 0.14);
  box-shadow: 0 14px 30px rgba(10, 43, 101, 0.09);
  padding: 1.28rem 1.2rem 1.15rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.about-purpose-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0A2B65 0%, #3c6fba 48%, #4F867D 100%);
}

.about-purpose-panel::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -54px;
  top: -54px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 134, 125, 0.17), rgba(79, 134, 125, 0));
  pointer-events: none;
}

.about-purpose-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(10, 43, 101, 0.14);
  border-color: rgba(10, 43, 101, 0.22);
}

.about-purpose-top {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  margin-bottom: 0.8rem;
}

.about-purpose-iconbox {
  width: 2.6rem;
  height: 2.6rem;
  min-width: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(18, 53, 114, 0.12), rgba(79, 134, 125, 0.18));
  border: 1px solid rgba(18, 53, 114, 0.22);
}

.about-purpose-iconbox svg {
  width: 1.32rem;
  height: 1.32rem;
  stroke: #0A2B65;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-purpose-top h3 {
  margin: 0;
  font-size: clamp(1.36rem, 1.8vw, 1.9rem);
  line-height: 1.2;
  color: #0A2B65;
}

.about-purpose-panel p {
  margin: 0.64rem 0 0;
  color: #4f637d;
  line-height: 1.7;
}

.about-purpose-panel h4 {
  margin: 1rem 0 0.35rem;
  color: #0A2B65;
  font-size: 1.25rem;
}

.about-purpose-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-purpose-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #4f637d;
  line-height: 1.62;
  margin-top: 0.45rem;
}

.about-purpose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0A2B65, #4F867D);
}

.section-anchor {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden;
}

.doctors-showcase {
  position: relative;
  padding-top: 4.4rem;
  background:
    radial-gradient(circle at 8% 18%, rgba(79, 134, 125, 0.14), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(10, 43, 101, 0.14), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.doctors-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(10, 43, 101, 0.08);
  border: 1px solid rgba(10, 43, 101, 0.12);
  color: #0A2B65;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctors-showcase .section-title h2 {
  color: #0A2B65;
}

.doctor-profiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.doctor-profile-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 43, 101, 0.14);
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(10, 43, 101, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.doctor-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(10, 43, 101, 0.2);
}

.doctor-photo-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
  transition: transform 420ms ease;
}

.doctor-profile-card:hover .doctor-photo {
  transform: scale(1.015);
}

.doctor-profile-card:nth-child(2) .doctor-photo {
  transform: translateY(-8px) scale(1.015);
}

.doctor-profile-card:nth-child(2):hover .doctor-photo {
  transform: translateY(-8px) scale(1.025);
}

.doctor-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(10, 43, 101, 0) 0%, rgba(10, 43, 101, 0.42) 100%);
}

.doctor-chip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(10, 43, 101, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.doctor-body {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  padding: 1rem 1.15rem 1.2rem;
  flex: 1;
}

.doctor-body::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.75rem;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0A2B65, #4F867D);
}

.doctor-profile-card h3 {
  position: relative;
  margin: 0.8rem 0 0.3rem;
  font-size: 1.28rem;
  color: #0A2B65;
  line-height: 1.2;
  padding-bottom: 0.7rem;
}

.doctor-profile-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0A2B65 0%, #4F867D 75%, rgba(79, 134, 125, 0.25) 100%);
}

.doctor-profile-card small {
  display: block;
  margin: 0 0 0.62rem;
  color: #4F867D;
  font-size: 0.86rem;
  font-weight: 700;
}

.doctor-profile-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
  color: #4e6179;
}

.services-showcase {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(96, 154, 145, 0.28), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(38, 82, 150, 0.34), transparent 40%),
    linear-gradient(126deg, #071f4e 0%, #0A2B65 42%, #1a4a8c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 74% 24%, rgba(79, 134, 125, 0.16), transparent 34%);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-bottom: 1.4rem;
}

.services-title {
  max-width: 48rem;
  text-align: center;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-title h2 {
  color: #ffffff;
  margin-top: 0.8rem;
  margin-bottom: 0.35rem;
  line-height: 1.18;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
  overflow-wrap: anywhere;
}

.services-title p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(231, 241, 255, 0.88);
  max-width: 44rem;
}

.services-lead {
  margin: 0;
  max-width: 46rem;
  color: rgba(219, 233, 252, 0.92);
  line-height: 1.72;
  font-size: 1rem;
  justify-self: center;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card-premium {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 7.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(196, 214, 233, 0.8);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(4, 23, 55, 0.2);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(4, 23, 55, 0.28);
}

.service-media-wrap {
  position: relative;
  overflow: hidden;
}

.service-media-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(10, 43, 101, 0) 0%, rgba(10, 43, 101, 0.35) 100%);
}

.service-media {
  width: 100%;
  height: 182px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 360ms ease;
}

.service-card-premium:hover .service-media {
  transform: scale(1.06);
}

.service-content {
  padding: 0.95rem 0.98rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(10, 43, 101, 0.08);
}

.service-badge {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #0A2B65 0%, #4F867D 100%);
  color: #ffffff;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-card-premium h3 {
  margin: 0 0 0.34rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #0A2B65;
}

.service-card-premium p {
  margin: 0 0 0.78rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #4e6179;
  flex: 1;
}

.service-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.service-link {
  align-self: flex-start;
  margin-top: 0;
  padding: 0.44rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 43, 101, 0.2);
  background: #ffffff;
  color: #0A2B65;
  font-size: 0.74rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-link-outline:hover {
  background: #0A2B65;
  color: #ffffff;
  border-color: #0A2B65;
}

.service-link-solid {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #ffffff;
}

.service-link-solid:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.service-marquee {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue-900) 0%, var(--blue-700) 58%, var(--teal-500) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-marquee-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.service-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 30s linear infinite;
}

.service-marquee-track p {
  margin: 0;
  padding: 0.72rem 0;
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  white-space: nowrap;
}

.service-marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-marquee-track span::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  margin-right: 0.6rem;
}

.why-choose {
  background:
    radial-gradient(circle at 10% 15%, rgba(79, 134, 125, 0.14), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(10, 43, 101, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  border-top: 1px solid #d6e1ee;
  border-bottom: 1px solid #d6e1ee;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.9rem;
  align-items: center;
}

.why-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(10, 43, 101, 0.08);
  border: 1px solid rgba(10, 43, 101, 0.18);
  color: #0A2B65;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-content h2 {
  margin: 0.85rem 0 0.72rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.17;
  color: #0A2B65;
}

.why-content h2 span {
  color: #4F867D;
}

.why-content > p {
  margin: 0;
  color: #4e6179;
  line-height: 1.72;
  max-width: 43rem;
}

.why-list {
  margin-top: 1.18rem;
  display: grid;
  gap: 0.86rem;
}

.why-item {
  background: #ffffff;
  border: 1px solid #d8e4f0;
  border-radius: 16px;
  padding: 0.84rem 0.9rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.76rem;
  align-items: start;
  box-shadow: 0 10px 24px rgba(10, 43, 101, 0.08);
}

.why-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0A2B65 0%, #4F867D 100%);
}

.why-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0.15rem 0 0.26rem;
  font-size: 1.07rem;
  color: #0A2B65;
}

.why-item p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.56;
  color: #4e6179;
}

.why-visual {
  position: relative;
  min-height: 560px;
}

.why-photo-main,
.why-photo-float {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 6px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 44px rgba(10, 43, 101, 0.18);
}

.why-photo-main {
  top: 0;
  right: 0;
  width: 92%;
  height: 340px;
}

.why-photo-float {
  left: 0;
  bottom: 52px;
  width: 78%;
  height: 280px;
}

.why-photo-main img,
.why-photo-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-stat {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 40%;
  border-radius: 16px;
  padding: 0.92rem 0.9rem;
  background: linear-gradient(180deg, #0A2B65 0%, #123c80 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(10, 43, 101, 0.26);
}

.why-stat strong {
  display: block;
  line-height: 1;
  font-size: 2rem;
}

.why-stat p {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(235, 244, 255, 0.9);
}

.impact-strip {
  background:
    radial-gradient(circle at 14% 20%, rgba(79, 134, 125, 0.28), transparent 34%),
    radial-gradient(circle at 86% 80%, rgba(64, 116, 196, 0.22), transparent 36%),
    linear-gradient(122deg, #071f4e 0%, #0A2B65 56%, #123c80 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.impact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1rem 1rem;
  backdrop-filter: blur(2px);
}

.impact-icon {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(10, 43, 101, 0.12);
}

.impact-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  stroke: #0A2B65;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.impact-card p {
  margin: 0.34rem 0 0;
  color: rgba(232, 243, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.gallery-showcase {
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 134, 125, 0.14), transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(10, 43, 101, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  border-top: 1px solid #d6e1ee;
}

.gallery-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.gallery-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.84rem;
  border-radius: 999px;
  background: rgba(10, 43, 101, 0.09);
  border: 1px solid rgba(10, 43, 101, 0.16);
  color: #0A2B65;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-header h2 {
  margin: 0.85rem 0 0.45rem;
  color: #0A2B65;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.gallery-header h2 span {
  color: #4F867D;
}

.gallery-header p {
  margin: 0 auto;
  max-width: 44rem;
  color: #4e6179;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(10, 43, 101, 0.12);
  box-shadow: 0 10px 22px rgba(10, 43, 101, 0.1);
  background: #ffffff;
  content-visibility: auto;
  contain-intrinsic-size: 230px;
}

.gallery-item img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
  transition: transform 340ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.45rem;
}

.gallery-view-more {
  min-width: 132px;
  padding: 0.68rem 1.12rem;
  background: #0A2B65;
  color: #ffffff;
  border-color: #0A2B65;
  box-shadow: 0 12px 24px rgba(10, 43, 101, 0.18);
}

.gallery-view-more:hover {
  background: #4F867D;
  border-color: #4F867D;
  box-shadow: 0 14px 26px rgba(79, 134, 125, 0.24);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(5, 18, 38, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-image {
  max-width: min(94vw, 1120px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0A2B65;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.gallery-lightbox-open {
  overflow: hidden;
}

.reviews-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(129, 196, 255, 0.26), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(91, 159, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(13, 56, 125, 0.32), transparent 46%),
    linear-gradient(165deg, #08245a 0%, #0A2B65 56%, #154180 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.reviews-showcase::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(153, 205, 255, 0.28), rgba(153, 205, 255, 0));
  filter: blur(14px);
  pointer-events: none;
}

.reviews-head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1.35rem;
}

.reviews-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.84rem;
  background: rgba(180, 213, 255, 0.16);
  border: 1px solid rgba(202, 225, 255, 0.35);
  color: #dcecff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-head h2 {
  margin: 0.82rem 0 0.45rem;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.reviews-head h2 span {
  color: #8fe2d1;
}

.reviews-head p {
  margin: 0 auto;
  max-width: 44rem;
  color: rgba(226, 239, 255, 0.9);
  line-height: 1.72;
}

.reviews-slider {
  position: relative;
  z-index: 1;
}

.reviews-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.95rem;
}

.reviews-nav {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1px solid rgba(208, 228, 255, 0.42);
  background: rgba(214, 232, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.reviews-nav:hover {
  transform: translateY(-1px);
  background: rgba(201, 232, 255, 0.24);
  border-color: rgba(216, 234, 255, 0.62);
}

.reviews-static .reviews-nav {
  display: none;
}

.reviews-grid {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 340ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  background:
    linear-gradient(160deg, rgba(193, 224, 255, 0.36) 0%, rgba(193, 224, 255, 0) 40%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  border: 1px solid rgba(173, 206, 255, 0.52);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(7, 23, 48, 0.22), 0 0 0 1px rgba(182, 218, 255, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 154, 145, 0.65);
  box-shadow: 0 20px 36px rgba(8, 25, 52, 0.25);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.reviewer-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #0A2B65 0%, #4F867D 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

.review-top h3 {
  margin: 0;
  color: #0A2B65;
  font-size: 1.07rem;
}

.review-top p {
  margin: 0.24rem 0 0;
  color: #4e6179;
  font-size: 0.84rem;
  font-weight: 600;
}

.review-stars {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  line-height: 1;
}

.review-stars span {
  color: #fbbc04;
  font-size: 0.88rem;
  text-shadow: 0 1px 0 rgba(157, 115, 0, 0.22);
}

.review-card blockquote {
  margin: 0.82rem 0 0;
  color: #1f3654;
  line-height: 1.66;
  font-size: 0.93rem;
}

.review-tag {
  display: inline-flex;
  margin-top: 0.82rem;
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  background: rgba(79, 134, 125, 0.12);
  color: #0A2B65;
  border: 1px solid rgba(79, 134, 125, 0.32);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.location-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.clinic-branch-card {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(10, 43, 101, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 14px 30px rgba(10, 43, 101, 0.1);
}

.clinic-branch-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.clinic-branch-map {
  width: 100%;
  height: 230px;
  border: 0;
  display: block;
}

.clinic-branch-body {
  padding: 1rem 1rem 1.1rem;
}

.clinic-branch-body h3 {
  margin: 0 0 0.52rem;
  color: #0A2B65;
  font-size: 1.22rem;
}

.clinic-branch-body p {
  margin: 0 0 0.52rem;
  color: #4e6179;
  line-height: 1.56;
  font-size: 0.94rem;
}

.clinic-branch-body p strong {
  color: #0A2B65;
}

.clinic-branch-body a {
  color: #0A2B65;
}

.branch-direction-btn {
  margin-top: 0.45rem;
  background: #4F867D;
  border-color: #4F867D;
  color: #ffffff;
  padding: 0.56rem 1rem;
  font-size: 0.84rem;
}

.clinic-branch-body .branch-direction-btn {
  color: #ffffff;
}

.branch-direction-btn:hover {
  background: #3f7169;
  border-color: #3f7169;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-grid {
  gap: 1rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-card h2 {
  margin: 0;
  color: #0d5f66;
  font-size: 1.95rem;
}

.stat-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1.9rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  color: var(--brand-deep);
}

.section-title p {
  margin: 0.8rem auto 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.72;
}

.service-card,
.about-card,
.doctor-card,
.location-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.about-card:hover,
.doctor-card:hover,
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(12, 28, 50, 0.14);
}

.highlight-bar {
  display: inline-flex;
  background: rgba(13, 95, 102, 0.12);
  color: #0d5f66;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-transform: uppercase;
}

.card h3 {
  margin: 0.95rem 0 0.65rem;
  font-size: 1.33rem;
  color: #16273d;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card-list {
  list-style: none;
  margin: 1.05rem 0 0;
  padding: 0;
}

.card-list li {
  margin-bottom: 0.78rem;
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  color: #3f5368;
}

.card-list li:last-child {
  margin-bottom: 0;
}

.card-list span {
  min-width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5f3f5;
  color: #0a5a65;
  font-size: 0.77rem;
  font-weight: 800;
}

.about-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fdff 100%);
}

.contact-card {
  background: linear-gradient(175deg, #0f4a5e 0%, #0a2f4d 100%);
  color: #eff8ff;
}

.contact-card h3,
.contact-card p,
.contact-card strong,
.contact-card a {
  color: inherit;
}

.social-links {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(228, 247, 255, 0.4);
  padding: 0.54rem 0.88rem;
  font-weight: 700;
  font-size: 0.87rem;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.footer-social-icons a {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(228, 247, 255, 0.38);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.footer-social-icons a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.16);
}

.doctor-card {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

.doctor-card small {
  display: block;
  margin-bottom: 0.8rem;
  color: #0d5f66;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.contact-page-banner {
  background-image: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1800&q=80");
}

.gallery-page-banner {
  background-image: url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1800&q=80");
}

.contact-page-main {
  background:
    radial-gradient(circle at 12% 18%, rgba(79, 134, 125, 0.15), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(10, 43, 101, 0.15), transparent 36%),
    linear-gradient(180deg, #f8fcff 0%, #eef5fc 100%);
  border-top: 1px solid #d7e3f1;
  border-bottom: 1px solid #d7e3f1;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.15rem;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid rgba(10, 43, 101, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(10, 43, 101, 0.1);
  padding: 1.25rem 1.15rem 1.2rem;
}

.contact-info-card h2 {
  margin: 0.7rem 0 0.62rem;
  color: #0A2B65;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.3;
}

.contact-info-card p {
  margin: 0;
  color: #4f637d;
  line-height: 1.7;
}

.contact-detail-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-detail-list li {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid rgba(10, 43, 101, 0.12);
  border-radius: 14px;
  padding: 0.7rem 0.72rem;
}

.contact-detail-list strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #0A2B65;
  font-size: 0.95rem;
}

.contact-detail-list li p {
  margin: 0;
  color: #4f637d;
}

.contact-detail-list a {
  color: #0A2B65;
}

.contact-cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.contact-form-card h3 {
  margin: 0;
  color: #0A2B65;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}

.contact-form-card > p {
  margin: 0.45rem 0 0;
  color: #5a6d84;
}

.contact-form-card {
  background: linear-gradient(145deg, #123572 0%, #1a468f 55%, #2553a0 100%);
  border-color: rgba(214, 229, 255, 0.26);
  box-shadow: 0 22px 42px rgba(9, 35, 79, 0.34);
}

.contact-form-card h3 {
  color: #ffffff;
}

.contact-form-card > p {
  color: rgba(226, 239, 255, 0.9);
}

.contact-form-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-field {
  display: grid;
  gap: 0.34rem;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: #e4eeff;
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(197, 218, 247, 0.75);
  border-radius: 12px;
  padding: 0.62rem 0.74rem;
  font: inherit;
  color: #27405d;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field select {
  background-color: #123572;
  color: #eaf2ff;
  border-color: rgba(197, 218, 247, 0.75);
}

.contact-field select option {
  background-color: #123572;
  color: #eaf2ff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #6a7d96;
}

.contact-field textarea {
  resize: vertical;
  min-height: 108px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #3f7d88;
  box-shadow: 0 0 0 3px rgba(63, 125, 136, 0.16);
  outline: none;
}

.contact-submit-btn {
  margin-top: 0.2rem;
  width: fit-content;
  background: #3F7169;
  border-color: #3F7169;
  color: #ffffff;
}

.contact-submit-btn:hover {
  background: #335d56;
  border-color: #335d56;
}

.contact-location-section {
  background: #f7fbff;
}

.gallery-page-main {
  background:
    radial-gradient(circle at 10% 12%, rgba(79, 134, 125, 0.16), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(10, 43, 101, 0.16), transparent 36%),
    linear-gradient(180deg, #f9fcff 0%, #edf4fb 100%);
}

.gallery-grid-extended .gallery-item img {
  height: 230px;
}

.gallery-video-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(79, 134, 125, 0.14), transparent 30%),
    radial-gradient(circle at 86% 84%, rgba(10, 43, 101, 0.16), transparent 34%),
    linear-gradient(180deg, #f1f7ff 0%, #e8f0fb 100%);
  border-top: 1px solid #d6e2f0;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-video-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid rgba(10, 43, 101, 0.14);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(10, 43, 101, 0.11);
  overflow: hidden;
}

.gallery-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0A2B65;
}

.gallery-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #0A2B65;
}

.gallery-video-card h3 {
  margin: 0;
  padding: 0.78rem 0.9rem 0.9rem;
  color: #0A2B65;
  font-size: 1rem;
}

.about-page-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/services/implants.jpg");
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cbct-page .about-page-banner {
  background-image: url("../img/services/cbct.png");
  background-position: center;
}

.cbct-page .impact-card h3 {
  font-size: 1.12rem;
  line-height: 1.08;
}

.braces-page .about-page-banner {
  background-image: url("../img/services/braces.png");
  background-position: center;
}

.braces-page .impact-card h3 {
  font-size: 1.26rem;
  line-height: 1.08;
}

.about-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 36, 82, 0.62) 0%, rgba(8, 36, 82, 0.68) 100%);
}

.about-page-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 1rem 0;
}

.about-page-banner-inner h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.about-banner-crumb {
  margin-top: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1rem, 2vw, 1.9rem);
  font-weight: 600;
}

.about-banner-crumb a,
.about-banner-crumb strong {
  color: #ffffff;
}

.about-page-hero {
  padding: 3rem 0 2.6rem;
  background:
    radial-gradient(circle at 11% 12%, rgba(79, 134, 125, 0.16), transparent 30%),
    radial-gradient(circle at 85% 86%, rgba(10, 43, 101, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #edf4fb 100%);
  border-bottom: 1px solid #d6e1ee;
}

.about-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.7rem;
  align-items: center;
}

.about-page-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(10, 43, 101, 0.09);
  border: 1px solid rgba(10, 43, 101, 0.16);
  color: #0A2B65;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.about-page-copy h1,
.about-page-copy h2 {
  margin: 0.86rem 0 0.55rem;
  color: #0A2B65;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.18;
}

.cbct-page .about-page-copy h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
}

.about-page-copy p {
  margin: 0;
  color: #4e6179;
  line-height: 1.75;
  max-width: 95%;
}

.about-page-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.about-page-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 43, 101, 0.14);
  box-shadow: 0 18px 40px rgba(10, 43, 101, 0.16);
}

.about-page-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.about-page-story {
  padding-top: 3.2rem;
}

.about-page-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-page-block {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(10, 43, 101, 0.12);
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 10px 24px rgba(10, 43, 101, 0.08);
}

.about-page-block h2 {
  margin: 0 0 0.5rem;
  color: #0A2B65;
  font-size: 1.3rem;
}

.about-page-block p {
  margin: 0 0 0.55rem;
  color: #4e6179;
  line-height: 1.72;
}

.about-page-block p:last-child {
  margin-bottom: 0;
}

.about-page-list {
  margin: 0;
  padding-left: 1.05rem;
  color: #3f5368;
  line-height: 1.72;
}

.implant-match-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(79, 134, 125, 0.13), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(10, 43, 101, 0.12), transparent 34%),
    linear-gradient(180deg, #f9fcff 0%, #eef5fc 100%);
}

.implant-match-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: start;
}

.implant-match-stack {
  display: grid;
  gap: 1rem;
}

.implant-match-card {
  border-radius: 20px;
  border: 1px solid rgba(10, 43, 101, 0.14);
  background:
    radial-gradient(circle at 88% 12%, rgba(79, 134, 125, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 12px 26px rgba(10, 43, 101, 0.09);
  padding: 1.1rem 1rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.implant-match-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 43, 101, 0.28);
  box-shadow: 0 16px 30px rgba(10, 43, 101, 0.14);
}

.implant-match-card h3 {
  margin: 0 0 0.62rem;
  color: #0A2B65;
  font-size: 1.18rem;
}

.implant-match-card p {
  margin: 0;
  color: #4b6078;
  line-height: 1.7;
}

.implant-match-main {
  min-height: auto;
}

.implant-match-intro {
  margin-bottom: 0.8rem;
}

.implant-match-note {
  margin-top: 0.75rem !important;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(10, 43, 101, 0.2);
  color: #3e5878;
}

.implant-match-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.implant-match-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.56rem;
  color: #40566f;
  line-height: 1.66;
  margin-bottom: 0.58rem;
}

.implant-match-list li:last-child {
  margin-bottom: 0;
}

.implant-match-list span {
  width: 1.38rem;
  min-width: 1.38rem;
  height: 1.38rem;
  margin-top: 0.08rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(145deg, #0A2B65 0%, #4F867D 100%);
  font-size: 0.76rem;
  font-weight: 800;
}

.implant-match-highlight {
  border-radius: 18px;
  border: 1px solid rgba(79, 134, 125, 0.28);
  background: linear-gradient(140deg, #0f3d80 0%, #1a4f95 55%, #2f6799 100%);
  box-shadow: 0 14px 30px rgba(10, 43, 101, 0.2);
  padding: 1rem 0.95rem;
}

.implant-match-highlight strong {
  display: block;
  color: #ffffff;
  font-size: 1.03rem;
  margin-bottom: 0.35rem;
}

.implant-match-highlight p {
  margin: 0;
  color: rgba(229, 241, 255, 0.93);
  line-height: 1.6;
}

.implants-solutions {
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 134, 125, 0.12), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(10, 43, 101, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.implants-solution-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.implants-solution-stack {
  display: grid;
  gap: 1rem;
}

.implants-solution-card {
  border-radius: 20px;
  border-color: rgba(10, 43, 101, 0.14);
  background:
    radial-gradient(circle at 90% 14%, rgba(79, 134, 125, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  box-shadow: 0 12px 26px rgba(10, 43, 101, 0.09);
}

.implants-solution-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.implants-solution-card p {
  margin-bottom: 0;
}

.implants-solution-card-main {
  min-height: 100%;
}

.implants-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.implants-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  margin-bottom: 0.6rem;
  color: #3f5368;
}

.implants-solution-list li:last-child {
  margin-bottom: 0;
}

.implants-solution-list span {
  width: 1.4rem;
  min-width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0A2B65 0%, #4F867D 100%);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-page-values {
  padding-top: 3.1rem;
}

.about-page-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-value-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(10, 43, 101, 0.12);
  border-radius: 18px;
  padding: 1rem 0.95rem;
  box-shadow: 0 10px 24px rgba(10, 43, 101, 0.08);
}

.about-value-card h3 {
  margin: 0 0 0.35rem;
  color: #0A2B65;
  font-size: 1.08rem;
}

.about-value-card p {
  margin: 0;
  color: #4e6179;
  line-height: 1.66;
}

.implants-benefits-grid {
  gap: 1.2rem;
}

.implants-benefit-card {
  position: relative;
  overflow: visible;
  border: 1px solid #c9d8ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(12, 46, 94, 0.07);
  transition: transform 200ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.implants-benefit-head {
  display: flex;
  align-items: flex-start;
  gap: 0.82rem;
  margin-bottom: 0.62rem;
}

.implants-benefit-icon {
  width: 2.85rem;
  height: 2.85rem;
  min-width: 2.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f1f7ff 0%, #e7f1ff 100%);
  border: 1px solid #b9cee7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.implants-benefit-icon svg {
  width: 1.36rem;
  height: 1.36rem;
  stroke: #0A4B92;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.implants-benefit-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0A2B65;
  line-height: 1.3;
}

.implants-benefit-card p {
  color: #486488;
  margin-left: 3.65rem;
}

.implants-benefit-card::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10, 43, 101, 0.12) 0%, rgba(79, 134, 125, 0.12) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.implants-benefit-card:hover {
  transform: translateY(-4px);
  border-color: #9cbbe0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f8ff 100%);
  box-shadow: 0 14px 28px rgba(12, 46, 94, 0.12);
}

.implants-benefit-card:hover .implants-benefit-icon {
  transform: translateY(-1px);
  border-color: #8cb1dd;
  background: linear-gradient(180deg, #eaf3ff 0%, #ddefff 100%);
}

.implants-benefit-card:hover::after {
  opacity: 1;
}

.service-faq {
  padding-top: 2.5rem;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.service-faq-item {
  border: 1px solid rgba(10, 67, 143, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 10px 24px rgba(10, 43, 101, 0.08);
  overflow: hidden;
}

.service-faq-item h3 {
  margin: 0;
}

.service-faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #0A2B65;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  padding: 1.05rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
}

.service-faq-trigger:focus-visible {
  outline: 2px solid rgba(79, 134, 125, 0.5);
  outline-offset: -2px;
}

.service-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  min-width: 1.3rem;
  position: relative;
}

.service-faq-icon::before,
.service-faq-icon::after {
  content: "";
  position: absolute;
  background: #d6252a;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.service-faq-icon::before {
  width: 0.92rem;
  height: 0.17rem;
}

.service-faq-icon::after {
  width: 0.17rem;
  height: 0.92rem;
}

.service-faq-trigger[aria-expanded="true"] .service-faq-icon::after {
  transform: scaleY(0);
}

.service-faq-answer {
  border-top: 1px solid rgba(10, 67, 143, 0.16);
  padding: 0.9rem 1.15rem 1rem;
}

.service-faq-answer p {
  margin: 0;
  color: #4e6179;
  line-height: 1.72;
}

.implants-cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #0d3f83 0%, #154e97 56%, #285c9d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.implants-cta-band::before,
.implants-cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.implants-cta-band::before {
  width: 260px;
  height: 260px;
  left: -86px;
  bottom: -132px;
  background: rgba(98, 67, 145, 0.46);
}

.implants-cta-band::after {
  width: 300px;
  height: 300px;
  right: -84px;
  top: -160px;
  background: rgba(123, 167, 228, 0.22);
}

.implants-cta-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #f1f5fa 0%, #e8eef6 100%);
  border: 1px solid #c9d5e4;
  border-radius: 24px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 12px 26px rgba(8, 30, 71, 0.14);
}

.implants-cta-panel h2 {
  color: #103e81;
  margin-bottom: 0.58rem;
}

.implants-cta-panel p {
  color: #3d5b84;
  max-width: 70rem;
}

.implants-cta-actions {
  margin-top: 1.2rem;
  gap: 0.75rem;
}

.implants-cta-btn {
  border-radius: 999px;
  font-weight: 800;
  min-height: 3.45rem;
  padding: 0.8rem 1.7rem;
  box-shadow: none;
}

.implants-cta-call {
  background: #163f84;
  color: #ffffff;
  border: 1px solid #163f84;
}

.implants-cta-call:hover {
  background: #123673;
  border-color: #123673;
}

.implants-cta-chat,
.implants-cta-book {
  background: #4f8a82;
  color: #ffffff;
  border: 1px solid #4f8a82;
}

.implants-cta-chat:hover,
.implants-cta-book:hover {
  background: #467c75;
  border-color: #467c75;
}

.about-doctors-pro {
  padding-top: 3.2rem;
}

.about-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.about-doctor-card {
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
  border: 1px solid rgba(10, 43, 101, 0.14);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(10, 43, 101, 0.12);
}

.about-doctor-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.about-doctor-body {
  padding: 0.95rem 0.9rem 1rem;
}

.about-doctor-body h3 {
  margin: 0;
  color: #0A2B65;
  font-size: 1.14rem;
}

.about-doctor-body small {
  display: block;
  margin: 0.28rem 0 0.46rem;
  color: #4F867D;
  font-weight: 700;
}

.about-doctor-body p {
  margin: 0;
  color: #4e6179;
  line-height: 1.65;
  font-size: 0.94rem;
}

.big-map-section {
  width: 100%;
  padding: 0 0 2.2rem;
  background: transparent;
}

.big-map-frame {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.footer {
  background:
    radial-gradient(circle at 12% 12%, rgba(110, 176, 255, 0.2), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(99, 162, 255, 0.2), transparent 34%),
    linear-gradient(172deg, #0a2a61 0%, #123572 58%, #16438d 100%);
  border-top: 1px solid rgba(220, 234, 255, 0.24);
  padding: 2.4rem 0 1.2rem;
  color: #eaf2ff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) minmax(135px, 0.75fr) minmax(210px, 0.95fr) minmax(290px, 1.45fr);
  gap: 1.35rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  margin: 0 0 1.05rem;
  font-size: clamp(1.12rem, 1.3vw, 1.42rem);
  color: #ffffff;
  position: relative;
  line-height: 1.2;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 0.2rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--teal-500);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(208, 227, 255, 0.45);
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.footer-brand span {
  display: block;
  color: rgba(223, 237, 255, 0.92);
  font-size: 0.83rem;
  letter-spacing: 0.09em;
}

.footer-about p {
  margin: 0;
  color: rgba(227, 238, 255, 0.92);
  line-height: 1.64;
  font-size: 1.04rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.78rem;
}

.footer-links a {
  color: rgba(226, 239, 255, 0.94);
  font-size: 1.02rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact-text a:hover {
  color: #d6e8ff;
  transform: translateX(1px);
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.footer-contact-list li {
  display: block;
}

.footer-contact-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-text strong {
  display: block;
  color: #ffffff;
  font-size: 1.12rem;
  margin-bottom: 0.22rem;
  line-height: 1.2;
}

.footer-contact-text p {
  margin: 0.08rem 0 0;
  color: rgba(226, 239, 255, 0.94);
  line-height: 1.5;
  font-size: 1rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-contact-text p + p {
  margin-top: 0.28rem;
}

.footer-phone-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.34rem;
  white-space: normal;
}

.footer-phone-sep {
  color: rgba(226, 239, 255, 0.82);
}

.footer-contact-text a {
  color: #ffffff;
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(224, 238, 255, 0.22);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(224, 238, 255, 0.84);
  font-size: 0.89rem;
}

@keyframes rise {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes marquee-rtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1060px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.65rem 0;
  }

  .btn-header {
    display: none;
  }

  .brand img {
    width: 84px;
    height: 84px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-feature-wrap {
    margin-top: 1.1rem;
  }

  .doctor-profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-photo-wrap {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-page .why-visual {
    order: 1;
  }

  .service-page .why-content {
    order: 2;
  }

  .why-visual {
    min-height: 590px;
  }

  .why-photo-main {
    width: 88%;
    height: 320px;
  }

  .why-photo-float {
    width: 72%;
    height: 250px;
  }

  .why-stat {
    width: 36%;
    right: 10%;
  }

  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-branches {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    overflow: hidden;
  }

  .review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .services-lead {
    margin-top: 0;
  }

  .service-media {
    height: 165px;
  }

  .about-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-page .about-page-media {
    order: 1;
  }

  .service-page .about-page-copy {
    order: 2;
  }

  .about-page-copy p {
    max-width: 100%;
  }

  .about-page-story-grid {
    grid-template-columns: 1fr;
  }

  .implant-match-layout {
    grid-template-columns: 1fr;
  }

  .implants-solution-grid {
    grid-template-columns: 1fr;
  }

  .about-page-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-faq-grid {
    grid-template-columns: 1fr;
  }

  .implants-cta-panel p {
    max-width: 100%;
  }

  .about-doctors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-media-collage {
    min-height: 580px;
  }

  .about-media-duo {
    min-height: 600px;
  }

  .about-media-duo .media-team {
    width: 100%;
    height: 455px;
  }

  .about-media-duo .media-clinic {
    width: 56%;
    height: 180px;
  }

  .about-copy {
    order: 2;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .big-map-frame {
    height: 430px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .top-strip-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.6rem 0;
    text-align: center;
  }

  .navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 0.68rem;
    padding: 0.55rem 0;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
    gap: 0.42rem;
    padding: 0.5rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
    border: 1px solid rgba(22, 57, 121, 0.14);
    box-shadow: 0 12px 24px rgba(10, 43, 101, 0.1);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    display: block;
    text-align: center;
    padding: 0.62rem 0.75rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #244365;
    border: 1px solid rgba(22, 57, 121, 0.14);
    box-shadow: 0 3px 10px rgba(10, 43, 101, 0.05);
    transition: transform 140ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible {
    color: #0A2B65;
    background: linear-gradient(180deg, #ecf5ff 0%, #dfeeff 100%);
    border-color: rgba(22, 57, 121, 0.26);
    box-shadow: 0 8px 16px rgba(10, 43, 101, 0.11);
    transform: translateY(-1px);
  }

  .nav-links a:active,
  .nav-dropdown-toggle:active {
    transform: translateY(0);
    background: linear-gradient(180deg, #dcecff 0%, #d2e6ff 100%);
  }

  .nav-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.36rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    border: 1px solid rgba(22, 57, 121, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  }

  .nav-dropdown-menu a {
    text-align: center;
    font-size: 0.86rem;
    padding: 0.54rem 0.65rem;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .dental-slider {
    min-height: calc(100svh - 7.8rem);
  }

  .slider-nav {
    width: 50px;
    height: 50px;
    font-size: 1.55rem;
  }

  .slider-content {
    width: min(1180px, calc(100% - 2rem));
    max-width: min(1180px, calc(100% - 2rem));
    padding: 1.5rem 0;
  }

  .about-showcase {
    padding-top: 3.4rem;
  }

  .about-media-collage {
    min-height: 515px;
  }

  .about-media-duo {
    min-height: 535px;
  }

  .about-media-duo .media-team {
    height: 405px;
  }

  .about-media-duo .media-clinic {
    width: 58%;
    height: 160px;
  }

  .media-main {
    width: 70%;
    height: 210px;
  }

  .media-float {
    width: 68%;
    height: 220px;
    top: 76px;
  }

  .media-base {
    width: 72%;
    height: 215px;
    left: 0;
  }

  .experience-badge {
    width: 52%;
    right: 3%;
    bottom: 6%;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-purpose-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .about-purpose-head {
    text-align: center;
    margin-bottom: 1rem;
  }

  .about-purpose-head p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .about-purpose-panel {
    padding: 1.05rem 0.92rem 0.95rem;
  }

  .about-purpose-top {
    gap: 0.62rem;
    margin-bottom: 0.6rem;
  }

  .about-purpose-iconbox {
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
  }

  .about-purpose-iconbox svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .about-purpose-top h3 {
    font-size: 1.35rem;
  }

  .doctor-profiles {
    grid-template-columns: 1fr;
  }

  .doctor-photo-wrap {
    height: 315px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    padding-top: 2.5rem;
  }

  .about-page-banner {
    min-height: 185px;
    background-position: center 28%;
  }

  .about-page-banner-inner h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .about-banner-crumb {
    font-size: 1rem;
  }

  .about-page-media img {
    height: 250px;
  }

  .about-page-values-grid {
    grid-template-columns: 1fr;
  }

  .implant-match-card,
  .implant-match-highlight {
    border-radius: 16px;
    padding: 0.95rem 0.88rem;
  }

  .implants-solution-card {
    border-radius: 16px;
  }

  .service-faq-trigger {
    font-size: 1rem;
    padding: 0.94rem 0.9rem;
  }

  .implants-benefit-icon {
    width: 2.45rem;
    height: 2.45rem;
    min-width: 2.45rem;
    border-radius: 11px;
  }

  .implants-benefit-card h3 {
    font-size: 1.14rem;
  }

  .implants-benefit-card p {
    margin-left: 3.25rem;
  }

  .implants-cta-panel {
    padding: 1rem 0.9rem;
    border-radius: 18px;
  }

  .implants-cta-actions {
    gap: 0.55rem;
  }

  .implants-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .about-doctors-grid {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 520px;
  }

  .why-photo-main {
    width: 100%;
    height: 250px;
    left: 0;
    right: auto;
  }

  .why-photo-float {
    width: 86%;
    height: 220px;
    left: 0;
    bottom: 62px;
  }

  .why-stat {
    width: 56%;
    right: 3%;
  }

  .services-showcase {
    background:
      radial-gradient(circle at 14% 10%, rgba(96, 154, 145, 0.22), transparent 34%),
      radial-gradient(circle at 82% 86%, rgba(38, 82, 150, 0.3), transparent 40%),
      linear-gradient(176deg, #071f4e 0%, #0A2B65 54%, #15417c 100%);
  }

  .service-media {
    height: 205px;
  }

  .why-item {
    padding: 0.78rem 0.8rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card h3 {
    font-size: 1.75rem;
  }

  .clinic-branch-image {
    height: 210px;
  }

  .clinic-branch-map {
    height: 210px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    overflow: hidden;
  }

  .review-card {
    flex-basis: 100%;
  }

  .reviews-stage {
    gap: 0.5rem;
  }

  .reviews-nav {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.12rem;
  }

  .gallery-item img {
    height: 230px;
  }

  .doctor-chip {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .feature-box h3 {
    font-size: 1.14rem;
  }

  .feature-box p {
    font-size: 1.04rem;
    margin-bottom: 1.45rem;
    padding-left: 0;
  }

  .feature-num {
    font-size: 2.7rem;
    bottom: 1.45rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .big-map-frame {
    height: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-col h3 {
    font-size: 1.35rem;
  }

  .footer-phone-line {
    white-space: normal;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .slider-content {
    width: min(1180px, calc(100% - 1.25rem));
    max-width: min(1180px, calc(100% - 1.25rem));
  }

  .slider-content h1 {
    font-size: clamp(1.4rem, 8.2vw, 1.85rem);
  }

  .about-media-collage {
    min-height: 455px;
  }

  .about-media-duo {
    min-height: 480px;
  }

  .about-media-duo .media-team {
    height: 360px;
  }

  .about-media-duo .media-clinic {
    width: 62%;
    height: 145px;
  }

  .about-media-duo .experience-badge {
    width: 64%;
  }

  .media-main {
    height: 185px;
  }

  .media-float {
    top: 68px;
    height: 196px;
  }

  .media-base {
    height: 192px;
  }

  .experience-badge {
    width: 58%;
    padding: 0.95rem 0.8rem;
  }

  .experience-badge strong {
    font-size: 2rem;
  }

  .card {
    padding: 1.25rem;
  }

  .slider-nav {
    display: none;
  }

  .big-map-frame {
    height: 320px;
  }

  .footer {
    padding-top: 2rem;
  }
}

.crown-bridge-page .impact-card h3 {
  font-size: 1.12rem;
}



/* Floating Buttons Base */
.floating-btn{
  position: fixed;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
  font-size: 24px;
}

/* Scroll Top */
.scroll-top{
  bottom: 20px;
  background: #0A2B65;
  border: none;
  cursor: pointer;
}

/* WhatsApp */
.whatsapp-btn{
  bottom: 90px;
  background: #25D366;
}

/* Call Button */
.call-btn{
  bottom: 160px;
  background: #0A2B65;
  animation: pulseCall 1.8s infinite;
}

/* Hover */
.floating-btn:hover{
  transform: translateY(-4px) scale(1.05);
}

/* Call Animation */
@keyframes pulseCall{
  0%{
    box-shadow: 0 0 0 0 rgba(10,43,101,0.7);
  }
  70%{
    box-shadow: 0 0 0 18px rgba(10,43,101,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(10,43,101,0);
  }
}

/* Mobile Responsive */
@media(max-width:768px){
  .floating-btn{
    width: 52px;
    height: 52px;
    font-size: 22px;
    right: 14px;
  }

  .scroll-top{
    bottom: 14px;
  }

  .whatsapp-btn{
    bottom: 78px;
  }

  .call-btn{
    bottom: 142px;
  }
}
