:root {
  --primary: #1b5486;
  --primary-dark: #103b61;
  --primary-light: #e8f1f8;
  --navy: #0a2d4d;
  --navy-2: #15466f;
  --text: #243546;
  --muted: #617386;
  --line: #dce8ee;
  --soft: #f3f9fc;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(7, 32, 71, 0.11);
  --shadow-lg: 0 22px 60px rgba(4, 27, 60, 0.18);
  --heading: "Plus Jakarta Sans", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--primary);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 1.9;
}

:focus-visible {
  outline: 3px solid rgba(27, 84, 134, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--navy);
  background: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader p {
  margin: 13px 0 0;
  font-family: var(--heading);
  font-size: 0.8rem;
  font-weight: 700;
}

.loader-pulse {
  display: grid;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(27, 84, 134, 0.32);
  place-items: center;
  animation: loaderPulse 1.5s infinite;
}

@keyframes loaderPulse {
  70% { box-shadow: 0 0 0 18px rgba(27, 84, 134, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 84, 134, 0); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #8cb8d9;
}

.topbar {
  position: relative;
  z-index: 1001;
  color: #fff;
  background: var(--primary);
}

.topbar-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.76rem;
  font-weight: 600;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a,
.topbar-hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a {
  transition: opacity 0.2s ease;
}

.topbar a:hover {
  color: #fff;
  opacity: 0.78;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(13, 57, 90, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(6, 37, 69, 0.09);
}

.mobile-availability {
  display: none;
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  display: block;
  flex: 0 0 250px;
  width: 250px;
  height: 64px;
  overflow: hidden;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.06) saturate(1.04);
}

.brand-logo img {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.02);
  image-rendering: auto;
}

.desktop-nav {
  margin-left: auto;
  align-items: center;
  gap: 4px;
}

.desktop-nav > a {
  position: relative;
  padding: 12px 12px;
  color: #28356f;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav > a::after {
  position: absolute;
  bottom: 5px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--primary);
  content: "";
  transition: width 0.25s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.active {
  color: var(--primary);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after {
  width: calc(100% - 24px);
}

.nav-appointment {
  min-height: 43px;
  padding: 0 19px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-appointment:hover {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 10px 23px rgba(27, 84, 134, 0.25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--navy);
  background: var(--primary-light);
  border-radius: 9px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.25s ease;
}

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

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

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

.mobile-nav {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 999;
  display: none;
  padding: 8px 20px 20px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 35px rgba(4, 30, 61, 0.14);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 13px 4px;
  color: var(--navy);
  border-bottom: 1px solid #edf2f5;
  font-weight: 700;
}

.mobile-nav .nav-appointment {
  margin-top: 15px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: #0a2e4d;
  animation: heroBackgroundDrift 14s ease-in-out infinite alternate;
  transform: scale(1.015);
}

.hero-bg-slide {
  position: absolute;
  inset: -1px;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroImageCrossfade 18s linear infinite;
}

.hero-bg-slide-one {
  opacity: 1;
  background-image: url("../img/hero-blood-pressure-no-face.jpg");
}

.hero-bg-slide-two {
  background-image: url("../img/hero-internal-medicine-no-face.jpg");
  animation-delay: 6s;
}

.hero-bg-slide-three {
  background-image: url("../img/gallery-diagnostics-premium.jpg");
  animation-delay: 12s;
}

.hero-background::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(94, 220, 222, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(6, 29, 50, 0.78) 0%, rgba(10, 43, 70, 0.57) 46%, rgba(9, 42, 68, 0.22) 100%);
  content: "";
}

.hero-background::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.07;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
}

@keyframes heroImageCrossfade {
  0%,
  28% {
    opacity: 1;
  }

  35%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroBackgroundDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-0.4%, -0.3%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  padding-top: 52px;
  padding-bottom: 52px;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #eef6fc;
  background: rgba(27, 84, 134, 0.28);
  border: 1px solid rgba(180, 208, 229, 0.32);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  animation: heroReveal 0.7s 0.08s both;
}

.hero-kicker svg {
  animation: heroKickerPulse 2.4s 1s ease-in-out infinite;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--heading);
  font-size: clamp(2.55rem, 4.5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-copy h1 > span {
  display: block;
  animation: heroReveal 0.78s both;
}

.hero-copy h1 > span:first-child {
  animation-delay: 0.18s;
}

.hero-copy h1 > span:last-child {
  animation-delay: 0.28s;
}

.hero-title-accent {
  color: #a4eced;
  text-shadow: 0 8px 30px rgba(55, 189, 197, 0.14);
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.75;
  animation: heroReveal 0.72s 0.4s both;
}

.hero-actions {
  display: flex;
  margin-top: 29px;
  align-items: center;
  gap: 12px;
  animation: heroReveal 0.72s 0.5s both;
}

.hero-actions .btn-primary-custom {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary-custom::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  animation: heroButtonShine 4.4s 1.4s ease-in-out infinite;
  transform: skewX(-18deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary-custom {
  color: #fff;
  background: var(--primary);
  border: 1px solid var(--primary);
}

.btn-primary-custom:hover {
  color: #fff;
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(27, 84, 134, 0.27);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(5px);
}

.btn-outline-light-custom:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  display: grid;
  width: min(100%, 560px);
  margin-top: 32px;
  padding: 14px 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: rgba(4, 29, 50, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(2, 20, 37, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: heroReveal 0.72s 0.62s both;
}

.hero-trust > div {
  display: flex;
  min-width: 0;
  padding: 2px 18px;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  gap: 9px;
  transition: transform 0.25s ease;
}

.hero-trust > div:hover {
  transform: translateY(-3px);
}

.hero-trust > div:first-child {
  padding-left: 18px;
}

.hero-trust > div:last-child {
  border-right: 0;
}

.hero-trust strong {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--heading);
  font-size: 1.42rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-trust > div > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-wrap: balance;
}

.hero-trust .hero-rating-star {
  color: #f7b928;
  font-size: 0.88em;
  line-height: 1;
  filter: drop-shadow(0 0 7px rgba(247, 185, 40, 0.34));
}

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(20px);
  }

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

@keyframes heroKickerPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(109, 226, 228, 0));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(109, 226, 228, 0.7));
    transform: scale(1.08);
  }
}

@keyframes heroButtonShine {
  0%,
  62% {
    left: -45%;
  }

  82%,
  100% {
    left: 125%;
  }
}

.hero-form-card {
  padding: 27px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(2, 17, 51, 0.32);
}

.form-card-head {
  display: flex;
  margin-bottom: 6px;
  align-items: center;
  justify-content: space-between;
}

.form-card-head > div {
  display: flex;
  flex-direction: column;
}

.form-card-head span {
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-card-head h2 {
  margin: 2px 0 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-card-head > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #fff;
  background: var(--primary);
  border-radius: 9px;
  box-sizing: border-box;
}

.hero-form-card > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

.form-field label {
  color: #44566a;
  font-size: 0.62rem;
  font-weight: 800;
}

.form-field label small {
  color: #8796a4;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 43px;
  padding: 9px 11px;
  color: var(--text);
  background: #fff;
  border: 1px solid #ccd9e1;
  border-radius: 7px;
  outline: 0;
  font-size: 0.7rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 58px;
  resize: vertical;
}

.hero-form .hero-message-field textarea {
  height: 43px;
  min-height: 43px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 84, 134, 0.12);
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: #d9495b;
  box-shadow: 0 0 0 3px rgba(217, 73, 91, 0.09);
}

.form-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
}

.form-note {
  display: flex;
  margin: 11px 0 0 !important;
  color: #6b7d8d !important;
  font-size: 0.59rem !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 17px;
  left: 50%;
  z-index: 3;
  display: flex;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 92px 0;
}

.section-kicker {
  display: inline-flex;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
}

.section-title {
  margin: 11px 0 17px;
  color: var(--navy-2);
  font-family: var(--heading);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.reviews-header > div:first-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading.centered {
  margin-bottom: 36px;
}

.about-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
}

.about-section .section-title {
  margin-bottom: 15px;
  font-size: clamp(1.85rem, 2.5vw, 2.3rem);
}

.doctor-portrait {
  position: relative;
  max-width: 530px;
  padding: 0 20px 22px 0;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  padding: 9px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.experience-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 17px 20px;
  color: #fff;
  background: var(--primary);
  border: 6px solid #f8fcfd;
  border-radius: 14px;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 11px;
}

.experience-badge strong {
  font-family: var(--heading);
  font-size: 1.75rem;
  line-height: 1;
}

.experience-badge span {
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
}

.portrait-line {
  position: absolute;
  top: -20px;
  left: -22px;
  width: 150px;
  height: 150px;
  border-top: 2px solid rgba(27, 84, 134, 0.22);
  border-left: 2px solid rgba(27, 84, 134, 0.22);
  border-radius: 20px 0 0;
}

.lead-copy {
  max-width: 700px;
  margin: 0 0 14px;
  color: #3c5366;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}

.body-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.body-copy + .body-copy {
  margin-top: 12px;
}

.doctor-highlights {
  display: grid;
  margin-top: 26px;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.doctor-highlights > div {
  display: flex;
  min-height: 71px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  align-items: center;
  gap: 12px;
}

.doctor-highlights > div > svg {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  padding: 9px;
  color: #fff;
  background: var(--primary);
  border-radius: 9px;
  box-sizing: border-box;
}

.doctor-highlights span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.doctor-highlights small {
  color: #8291a0;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
}

.doctor-highlights strong {
  margin-top: 3px;
  color: var(--navy-2);
  font-size: 0.75rem;
}

.about-actions {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 22px;
}

.about-actions > a {
  display: inline-flex;
  color: var(--navy-2);
  font-size: 0.72rem;
  font-weight: 800;
  align-items: center;
  gap: 7px;
}

.about-actions > a:hover {
  color: var(--primary);
}

.treatments-section {
  background: linear-gradient(180deg, #edf7fa 0%, #f5fbfd 100%);
}

.treatments-section .section-heading {
  max-width: 1000px;
}

.treatments-section .section-title {
  font-size: clamp(1.75rem, 2.35vw, 2.15rem);
  white-space: nowrap;
}

.treatment-grid {
  display: grid;
  gap: 19px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.treatment-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e7ed;
  border-radius: 14px;
  box-shadow: 0 9px 26px rgba(4, 40, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.treatment-card:hover {
  border-color: rgba(27, 84, 134, 0.42);
  box-shadow: 0 18px 38px rgba(4, 40, 70, 0.14);
  transform: translateY(-6px);
}

.treatment-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.treatment-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 28, 57, 0.2), transparent 60%);
  content: "";
}

.treatment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.treatment-card:hover .treatment-media img {
  transform: scale(1.06);
}

.treatment-media > span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  display: grid;
  width: 45px;
  height: 45px;
  color: #fff;
  background: var(--primary);
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(4, 53, 80, 0.25);
  place-items: center;
}

.treatment-media > span .condition-svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.treatment-media > span .condition-liver {
  width: 27px;
  height: 27px;
}

.treatment-media > span .fa-lungs {
  font-size: 1.22rem;
}

.treatment-body {
  padding: 20px;
}

.treatment-body h3 {
  margin: 0 0 9px;
  color: var(--navy-2);
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.treatment-body p {
  display: -webkit-box;
  min-height: 60px;
  margin: 0 0 16px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.treatment-actions {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.treatment-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.treatment-cta svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  stroke-width: 2.1;
}

.treatment-cta-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #277da7);
  box-shadow: 0 8px 18px rgba(27, 84, 134, 0.2);
}

.treatment-cta-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #154a77, var(--primary));
  box-shadow: 0 11px 22px rgba(27, 84, 134, 0.28);
  transform: translateY(-2px);
}

.treatment-cta-secondary {
  color: var(--primary-dark);
  background: #f7fbfd;
  border-color: rgba(27, 84, 134, 0.2);
}

.treatment-cta-secondary:hover {
  color: #fff;
  background: var(--navy-2);
  border-color: var(--navy-2);
  box-shadow: 0 9px 20px rgba(5, 43, 72, 0.18);
  transform: translateY(-2px);
}

.additional-care {
  display: grid;
  margin-top: 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(55, 189, 197, 0.16), transparent 30%),
    linear-gradient(135deg, #0b3558 0%, #1b5486 100%);
  border: 1px solid rgba(33, 103, 151, 0.5);
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(6, 43, 72, 0.16);
  grid-template-columns: 180px minmax(0, 1fr);
}

.additional-care > span {
  display: flex;
  padding: 19px 23px;
  color: #fff;
  background: rgba(3, 30, 52, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--heading);
  font-size: 0.76rem;
  font-weight: 800;
  align-items: center;
  gap: 9px;
}

.additional-care > span svg {
  width: 20px;
  height: 20px;
  color: #7ce2e4;
  stroke-width: 2;
}

.additional-care ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.additional-care li {
  display: flex;
  min-width: 0;
  padding: 19px 18px;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 700;
  align-items: center;
  gap: 9px;
  transition: color 0.25s ease, background 0.25s ease;
}

.additional-care li:last-child {
  border-right: 0;
}

.additional-care li:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.additional-care li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #a8d7ee;
  stroke-width: 1.9;
  transition: color 0.25s ease, transform 0.25s ease;
}

.additional-care li:hover svg {
  color: #7ce2e4;
  transform: translateY(-2px);
}

.why-section {
  background: #fff;
}

.why-section .section-heading {
  max-width: 900px;
}

.why-section .section-title {
  font-size: clamp(1.75rem, 2.3vw, 2.1rem);
  white-space: nowrap;
}

.why-layout {
  display: grid;
  align-items: stretch;
  gap: 25px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
}

.why-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-grid article {
  position: relative;
  padding: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 181, 191, 0.08), transparent 38%),
    linear-gradient(145deg, #fff 0%, #f7fbfd 100%);
  border: 1px solid rgba(27, 84, 134, 0.15);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(6, 49, 81, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-grid article::before {
  position: absolute;
  top: 0;
  left: 25px;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 0 0 6px 6px;
  content: "";
  transition: width 0.35s ease;
}

.why-grid article:hover {
  border-color: rgba(27, 84, 134, 0.3);
  box-shadow: 0 18px 36px rgba(6, 49, 81, 0.12);
  transform: translateY(-4px);
}

.why-grid article:hover::before {
  width: calc(100% - 50px);
}

.why-icon {
  display: grid;
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--primary);
  background: linear-gradient(145deg, #edf8fb, #e6f1f7);
  border: 1px solid rgba(27, 84, 134, 0.13);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(6, 49, 81, 0.09);
  place-items: center;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.why-icon::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 181, 191, 0.12);
  content: "";
}

.why-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
}

.why-grid article:hover .why-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2479a5);
  transform: translateY(-2px) rotate(-2deg);
}

.why-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--navy-2);
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 800;
}

.why-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.why-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 2px solid #c9e1e9;
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.why-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 31, 60, 0.36), transparent 45%);
  content: "";
}

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

.media-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  padding: 9px 12px;
  color: var(--navy-2);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(4, 32, 64, 0.2);
  font-size: 0.64rem;
  font-weight: 800;
  align-items: center;
  gap: 7px;
}

.media-badge svg {
  color: var(--primary);
}

.badge-one {
  top: 20px;
  left: 20px;
}

.badge-two {
  right: 20px;
  bottom: 20px;
}

.care-strip {
  display: grid;
  margin-top: 25px;
  padding: 21px;
  color: #fff;
  background: var(--navy-2);
  border-radius: 13px;
  grid-template-columns: repeat(4, 1fr);
}

.care-strip > div {
  display: flex;
  padding: 0 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  gap: 11px;
}

.care-strip > div:last-child {
  border-right: 0;
}

.care-strip > div > svg {
  flex: 0 0 auto;
  color: #aacbe3;
  font-size: 1.35rem;
}

.care-strip span {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.care-strip strong {
  font-size: 0.7rem;
}

.care-strip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.55rem;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(47, 176, 190, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
}

.gallery-heading {
  display: block;
  max-width: none;
  margin: 0 0 34px;
  text-align: left;
}

.gallery-heading .section-title {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.3vw, 2.1rem);
  white-space: nowrap;
}

.gallery-heading > p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #61798c;
  font-size: 0.82rem;
  line-height: 1.75;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
  background: #dfeaf0;
  border: 1px solid rgba(27, 84, 134, 0.11);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(6, 44, 74, 0.09);
  transform: translateZ(0);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 31, 52, 0.82) 0%, rgba(5, 31, 52, 0.08) 54%, transparent 72%);
  content: "";
  transition: background 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
  transition: filter 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-hospital {
  background: #dfeaf0;
}

.gallery-hospital img {
  transform: scale(0.92);
}

.gallery-doctor img {
  object-position: center 22%;
}

.gallery-item:hover {
  border-color: rgba(27, 84, 134, 0.24);
  box-shadow: 0 20px 42px rgba(6, 44, 74, 0.14);
  transform: translateY(-3px);
}

.gallery-item:hover img {
  filter: saturate(1.02);
  transform: scale(1.045);
}

.gallery-hospital:hover img {
  transform: scale(0.96);
}

.gallery-item > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 3;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-caption > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.gallery-item b {
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.gallery-item small {
  color: #9de4e8;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-view {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.gallery-view svg {
  width: 15px;
  height: 15px;
}

.gallery-item:hover .gallery-view {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
  transform: translate(2px, -2px);
}

.reviews-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f7fcfe 0%, #eef7fa 100%);
}

.reviews-header {
  display: flex;
  margin-bottom: 36px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.reviews-header .section-title {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
}

.rating-summary {
  display: flex;
  min-width: 255px;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 13px;
}

.google-letter {
  display: grid;
  width: 45px;
  height: 45px;
  color: #4285f4;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 800;
  place-items: center;
}

.rating-summary > div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rating-summary strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.15rem;
}

.rating-summary strong small,
.review-stars {
  color: #f4aa18;
  font-size: 0.64rem;
  letter-spacing: 1px;
}

.rating-summary span,
.rating-summary em {
  color: var(--muted);
  font-size: 0.52rem;
  font-style: normal;
}

.review-swiper {
  overflow: visible;
}

.review-card {
  min-height: 260px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(5, 44, 76, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 18px 34px rgba(5, 44, 76, 0.13);
  transform: translateY(-5px);
}

.review-card > p {
  min-height: 118px;
  margin: 18px 0 20px;
  color: #495e70;
  font-size: 0.78rem;
  line-height: 1.8;
}

.review-author {
  display: flex;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 10px;
}

.review-author > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 800;
  place-items: center;
}

.review-author > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  line-height: 1.4;
}

.review-author strong {
  color: var(--navy-2);
  font-size: 0.68rem;
}

.review-author small {
  color: #7c8d9b;
  font-size: 0.53rem;
}

.review-author > svg {
  color: var(--primary);
}

.review-controls {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: space-between;
}

.swiper-pagination {
  position: static;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 0.25;
  background: var(--primary);
  transition: width 0.25s ease;
}

.swiper-pagination-bullet-active {
  width: 25px;
  opacity: 1;
  border-radius: 8px;
}

.review-controls > div:last-child {
  display: flex;
  gap: 8px;
}

.review-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(4, 43, 73, 0.08);
  place-items: center;
  transition: 0.25s ease;
}

.review-controls button:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

/* Premium patient reviews */
.reviews-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(43, 174, 193, 0.09), transparent 28%),
    radial-gradient(circle at 94% 100%, rgba(27, 84, 134, 0.09), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%);
}

.reviews-header {
  margin-bottom: 32px;
  align-items: center;
}

.rating-summary {
  min-width: 310px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(27, 84, 134, 0.13);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(5, 44, 76, 0.09);
  backdrop-filter: blur(16px);
  gap: 15px;
}

.google-logo {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid rgba(27, 84, 134, 0.12);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(5, 44, 76, 0.07);
  place-items: center;
}

.google-logo svg {
  width: 27px;
  height: 27px;
}

.rating-summary > div {
  line-height: 1.25;
}

.rating-label {
  margin-bottom: 2px;
  color: var(--primary) !important;
  font-size: 0.52rem !important;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rating-summary strong {
  display: flex;
  font-size: 1.25rem;
  align-items: center;
  gap: 9px;
}

.summary-stars,
.review-stars {
  display: inline-flex;
  color: #f4aa18;
  font-size: 0.66rem;
  letter-spacing: 0;
  gap: 3px;
}

.rating-summary .summary-stars {
  color: #f4aa18;
}

.summary-stars .half-star {
  display: inline-grid;
  position: relative;
  width: 1em;
  color: #cbd5df;
  place-items: center;
}

.summary-stars .half-star i {
  grid-area: 1 / 1;
}

.summary-stars .half-star .fa-star-half-stroke {
  z-index: 1;
  color: #f4aa18;
}

.rating-summary em {
  font-size: 0.5rem;
}

.review-swiper {
  overflow: hidden;
  padding: 9px 3px 25px;
}

.review-swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
}

.review-swiper .swiper-slide {
  height: auto;
}

.review-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  padding: 25px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 254, 0.92));
  border: 1px solid rgba(27, 84, 134, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(5, 44, 76, 0.08);
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal), #77d8e4);
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.review-card:hover {
  box-shadow: 0 22px 46px rgba(5, 44, 76, 0.13);
  transform: translateY(-4px);
}

.review-card:hover::before {
  transform: scaleX(1);
}

.review-card-top {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.google-review-mark {
  display: inline-flex;
  padding: 6px 9px;
  color: #52697c;
  background: #f4f8fb;
  border: 1px solid rgba(27, 84, 134, 0.1);
  border-radius: 999px;
  font-size: 0.49rem;
  font-weight: 700;
  align-items: center;
  gap: 5px;
}

.google-review-mark img {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
}

.review-quote {
  position: absolute;
  top: 62px;
  right: 23px;
  width: 34px;
  height: 34px;
  color: rgba(27, 84, 134, 0.1);
  stroke-width: 1.6;
}

.review-card > p {
  min-height: 130px;
  margin: 25px 0 21px;
  padding-right: 18px;
  color: #40586c;
  font-size: 0.78rem;
  line-height: 1.78;
}

.review-author {
  padding-top: 17px;
  border-top: 1px solid rgba(27, 84, 134, 0.11);
  gap: 11px;
}

.review-author > img {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  background: #e7f0f5;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 17px rgba(5, 44, 76, 0.14);
}

.review-author > .review-avatar {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  color: #fff;
  background: linear-gradient(145deg, #1b5486, #248ea7);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 17px rgba(5, 44, 76, 0.14);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  place-items: center;
}

.review-swiper .swiper-slide:nth-child(2n) .review-avatar {
  background: linear-gradient(145deg, #17456f, #317fb0);
}

.review-swiper .swiper-slide:nth-child(3n) .review-avatar {
  background: linear-gradient(145deg, #176378, #29a0a2);
}

.review-author > div {
  line-height: 1.35;
  gap: 2px;
}

.review-author strong {
  font-size: 0.72rem;
}

.review-author small {
  display: flex;
  color: #718697;
  font-size: 0.51rem;
  align-items: center;
  gap: 4px;
}

.review-author small svg {
  width: 10px;
  height: 10px;
  color: var(--primary);
  stroke-width: 2.2;
}

.review-verified {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  color: var(--primary);
  filter: drop-shadow(0 3px 7px rgba(27, 84, 134, 0.16));
}

.review-motion-note {
  display: flex;
  margin: 4px 0 0;
  color: #708598;
  font-size: 0.52rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.review-motion-note svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.appointment-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(27, 84, 134, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.appointment-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  background: #092944;
  border: 1px solid rgba(19, 68, 105, 0.25);
  border-radius: 22px;
  box-shadow: 0 30px 75px rgba(7, 38, 66, 0.2), 0 0 0 8px rgba(27, 84, 134, 0.035);
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.appointment-copy {
  position: relative;
  z-index: 1;
  padding: 54px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6, 30, 53, 0.96) 0%, rgba(15, 62, 99, 0.9) 65%, rgba(27, 84, 134, 0.83) 100%),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1400&q=88") center/cover;
}

.appointment-copy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  pointer-events: none;
}

.appointment-copy::after {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  background: rgba(106, 163, 204, 0.15);
  border-radius: 50%;
  filter: blur(45px);
  content: "";
  pointer-events: none;
}

.section-kicker.light {
  color: #eef6fc;
}

.appointment-copy > h2 {
  max-width: 650px;
  margin: 11px 0 15px;
  font-family: var(--heading);
  font-size: clamp(2.05rem, 3.7vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.appointment-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(238, 247, 253, 0.86);
  font-size: 0.9rem;
}

.appointment-copy > ul {
  display: flex;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
  gap: 18px;
}

.appointment-copy > ul li {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 700;
  align-items: center;
  gap: 6px;
}

.appointment-copy > ul li.mobile-only-trust {
  display: none;
}

.main-form .form-field label {
  color: rgba(242, 248, 253, 0.9);
  font-size: 0.66rem;
  letter-spacing: 0.01em;
}

.main-form .input-wrap {
  position: relative;
}

.main-form .input-wrap > svg {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 2;
  width: 16px;
  height: 16px;
  color: #a9cde7;
  pointer-events: none;
  transform: translateY(-50%);
}

.main-form .textarea-wrap > svg {
  top: 16px;
  transform: none;
}

.main-form .form-field input,
.main-form .form-field select,
.main-form .form-field textarea {
  min-height: 50px;
  padding-left: 41px;
  color: #fff;
  background: rgba(4, 26, 46, 0.36);
  border-color: rgba(183, 216, 238, 0.27);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(7px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.main-form .form-field textarea {
  min-height: 86px;
  padding-top: 14px;
}

.main-form .form-field input::placeholder,
.main-form .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.main-form .form-field select option {
  color: #0a2d4d;
  background: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
}

.main-form .form-field select {
  color-scheme: light;
  cursor: pointer;
}

.main-form .form-field select option:checked {
  color: #ffffff;
  background: #1b5486;
}

.main-form .form-field select option:disabled {
  color: #718395;
  background: #f3f7fa;
}

.main-form .form-field input:focus,
.main-form .form-field select:focus,
.main-form .form-field textarea:focus {
  background: rgba(7, 36, 61, 0.72);
  border-color: rgba(198, 227, 247, 0.72);
  box-shadow: 0 0 0 3px rgba(147, 194, 225, 0.13), 0 10px 25px rgba(2, 20, 37, 0.12);
}

.main-form .form-field:focus-within .input-wrap > svg {
  color: #fff;
}

.btn-white {
  color: var(--primary-dark);
  background: linear-gradient(110deg, #fff, #edf5fb);
  border: 1px solid #fff;
  box-shadow: 0 12px 28px rgba(1, 18, 32, 0.2);
}

.btn-white:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 16px 32px rgba(1, 18, 32, 0.28), 0 0 24px rgba(169, 207, 233, 0.18);
  transform: translateY(-2px);
}

.clinic-info {
  position: relative;
  align-self: center;
  margin: 28px 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 17px;
  box-shadow: 0 24px 55px rgba(2, 24, 43, 0.24), inset 0 1px 0 #fff;
  backdrop-filter: blur(14px);
}

.info-doctor {
  display: flex;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 13px;
}

.info-doctor img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid #dff3f6;
  border-radius: 10px;
}

.info-doctor > div {
  display: flex;
  flex-direction: column;
}

.info-doctor strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 0.9rem;
}

.info-doctor span {
  color: var(--muted);
  font-size: 0.61rem;
}

.appointment-availability {
  display: flex;
  margin: 16px 0 3px;
  padding: 9px 11px;
  color: #24724f;
  background: #edf9f3;
  border: 1px solid #d2eedf;
  border-radius: 9px;
  font-size: 0.61rem;
  font-weight: 800;
  align-items: center;
  gap: 8px;
}

.appointment-availability > i {
  width: 7px;
  height: 7px;
  background: #20ae65;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32, 174, 101, 0.11);
}

.hours-card {
  padding: 19px 0 10px;
}

.info-heading {
  display: flex;
  margin-bottom: 13px;
  align-items: center;
  gap: 10px;
}

.info-heading > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #fff;
  background: var(--primary);
  border-radius: 9px;
  box-sizing: border-box;
}

.info-heading > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.info-heading small {
  color: var(--primary-dark);
  font-size: 0.52rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-heading h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 800;
}

.hours-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #edf2f5;
  color: var(--muted);
  font-size: 0.64rem;
  justify-content: space-between;
}

.hours-row strong {
  color: var(--navy-2);
}

.hours-row .closed {
  color: #cf4355;
}

.clinic-contacts {
  display: grid;
  margin-top: 10px;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clinic-contacts > a {
  display: flex;
  min-width: 0;
  padding: 10px;
  background: #f3f8fb;
  border: 1px solid #e4edf1;
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.clinic-contacts > a:hover {
  background: #eaf2f8;
  border-color: rgba(27, 84, 134, 0.4);
}

.clinic-contacts > a > span {
  display: grid;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  place-items: center;
}

.clinic-contacts > a > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.clinic-contacts small {
  color: #7c8d9a;
  font-size: 0.48rem;
  font-weight: 700;
}

.clinic-contacts strong {
  overflow: hidden;
  color: var(--navy-2);
  font-size: 0.56rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clinic-contacts .clinic-address-link strong {
  overflow: visible;
  line-height: 1.35;
  text-overflow: clip;
  white-space: normal;
}

.emergency-note {
  display: flex;
  margin-top: 12px;
  padding: 10px 12px;
  color: #a72f42;
  background: #fff2f4;
  border: 1px solid #f4d8dd;
  border-radius: 9px;
  align-items: center;
  gap: 10px;
}

.emergency-note > svg {
  flex: 0 0 auto;
}

.emergency-note > span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.emergency-note small {
  font-size: 0.49rem;
}

.emergency-note strong {
  font-size: 0.63rem;
}

.appointment-security {
  display: flex;
  margin: 11px 0 0;
  color: rgba(225, 239, 248, 0.68);
  font-size: 0.58rem;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.appointment-security svg {
  color: #b9d8ec;
}

/* Premium appointment experience */
.appointment-shell {
  padding: 12px;
  background:
    radial-gradient(circle at 12% 10%, rgba(39, 132, 196, 0.28), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(79, 160, 215, 0.25), transparent 28%),
    linear-gradient(135deg, #061b3e 0%, #073b70 53%, #0b4d83 100%);
  border: 1px solid rgba(125, 191, 235, 0.4);
  border-radius: 24px;
  box-shadow: 0 34px 85px rgba(4, 29, 60, 0.28), 0 0 0 8px rgba(27, 84, 134, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.appointment-copy {
  padding: 33px;
  background:
    linear-gradient(110deg, rgba(4, 25, 58, 0.94) 0%, rgba(7, 52, 99, 0.9) 65%, rgba(15, 76, 129, 0.84) 100%),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1400&q=88") center/cover;
  border: 1px solid rgba(129, 195, 238, 0.22);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 45px rgba(2, 21, 49, 0.2);
}

.appointment-copy > .section-kicker {
  padding: 7px 11px;
  background: rgba(7, 35, 75, 0.56);
  border: 1px solid rgba(125, 197, 237, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(46, 142, 207, 0.13);
  font-size: 0.6rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #55e1e9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 225, 233, 0.12), 0 0 12px rgba(85, 225, 233, 0.8);
}

.appointment-copy > h2 {
  margin: 13px 0 9px;
  font-family: var(--body);
  font-size: clamp(1.9rem, 2.85vw, 2.72rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.14;
  text-shadow: 0 3px 16px rgba(0, 13, 37, 0.22);
}

.appointment-copy > h2 span {
  display: block;
  color: #65dbe5;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(65, 207, 222, 0.18);
}

.appointment-copy > p {
  font-size: 0.78rem;
}

.appointment-copy > ul {
  margin: 14px 0 17px;
  gap: 8px;
}

.appointment-copy > ul li {
  padding: 6px 10px;
  background: rgba(5, 29, 66, 0.44);
  border: 1px solid rgba(127, 196, 236, 0.18);
  border-radius: 999px;
  font-size: 0.58rem;
}

.appointment-copy > ul li svg {
  color: #59e0e9;
}

.appointment-form-panel {
  padding: 17px;
  background: linear-gradient(145deg, rgba(82, 149, 199, 0.24), rgba(4, 30, 68, 0.53));
  border: 1px solid rgba(160, 211, 242, 0.31);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 40px rgba(1, 18, 45, 0.2), 0 0 28px rgba(49, 136, 198, 0.08);
  backdrop-filter: blur(14px);
}

.form-panel-title {
  display: flex;
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  align-items: center;
  gap: 8px;
}

.form-panel-title > svg {
  width: 25px;
  height: 25px;
  padding: 5px;
  color: #66e4ed;
  background: rgba(4, 27, 62, 0.5);
  border: 1px solid rgba(131, 199, 239, 0.2);
  border-radius: 7px;
  box-sizing: border-box;
}

.appointment-form-panel .form-grid {
  gap: 8px 11px;
}

.main-form .form-field label {
  font-size: 0.57rem;
}

.main-form .input-wrap > svg {
  width: 14px;
  height: 14px;
}

.main-form .form-field input,
.main-form .form-field select,
.main-form .form-field textarea {
  min-height: 42px;
  background: rgba(3, 24, 55, 0.52);
  border-color: rgba(149, 202, 235, 0.25);
  border-radius: 8px;
}

.main-form .form-field textarea {
  min-height: 50px;
  padding-top: 12px;
}

.btn-white {
  color: #fff;
  background: linear-gradient(110deg, #22c9cb 0%, #168fd2 54%, #316eed 100%);
  border: 1px solid rgba(157, 226, 249, 0.5);
  box-shadow: 0 12px 28px rgba(1, 18, 32, 0.26), 0 0 20px rgba(32, 197, 211, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-white:hover {
  color: #fff;
  background: linear-gradient(110deg, #27d8d6 0%, #178fd2 48%, #255fd8 100%);
  border-color: rgba(202, 241, 255, 0.72);
  box-shadow: 0 16px 34px rgba(1, 18, 32, 0.32), 0 0 28px rgba(42, 197, 218, 0.27);
}

.clinic-info {
  align-self: stretch;
  margin: 0 0 0 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 0, rgba(111, 175, 221, 0.24), transparent 27%),
    linear-gradient(145deg, rgba(244, 250, 255, 0.98), rgba(221, 237, 249, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(2, 24, 43, 0.27), inset 0 1px 0 #fff, 0 0 34px rgba(110, 176, 221, 0.13);
}

.info-doctor {
  position: relative;
  min-height: 83px;
  padding: 3px 75px 14px 0;
  overflow: hidden;
}

.info-doctor img {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
}

.info-doctor > div {
  position: relative;
  z-index: 1;
}

.experience-pill {
  align-self: flex-start;
  margin-top: 6px;
  padding: 4px 7px;
  color: #1b547d;
  background: rgba(152, 211, 235, 0.38);
  border-radius: 999px;
  font-size: 0.48rem;
  font-weight: 800;
}

.doctor-card-watermark {
  position: absolute;
  top: -13px;
  right: 0;
  width: 88px;
  height: 88px;
  color: rgba(26, 82, 124, 0.17);
  transform: rotate(-12deg);
}

.doctor-brief {
  position: relative;
  width: calc(100% - 14px);
  margin-top: 11px;
  margin-right: auto;
  margin-left: auto;
  padding: 11px 12px 10px 35px;
  background: rgba(255, 255, 255, 0.57);
  border: 1px solid rgba(103, 153, 189, 0.14);
  border-left: 3px solid #1b5486;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(29, 78, 113, 0.055);
}

.doctor-brief > svg {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 15px;
  height: 15px;
  color: #1b5486;
}

.doctor-brief p {
  margin: 0;
  color: #45637a;
  font-size: 0.57rem;
  font-weight: 600;
  line-height: 1.6;
}

.doctor-brief p span {
  display: block;
  width: 100%;
}

.doctor-focus {
  display: flex;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 5px;
}

.doctor-focus span {
  padding: 4px 7px;
  color: #1b5486;
  background: rgba(183, 216, 237, 0.34);
  border: 1px solid rgba(115, 167, 202, 0.14);
  border-radius: 999px;
  font-size: 0.45rem;
  font-weight: 800;
}

.appointment-availability {
  margin: 11px 0 7px;
  padding: 7px 10px;
  font-size: 0.55rem;
}

.hours-card {
  margin-top: 8px;
  padding: 12px 13px 7px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(112, 157, 190, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(24, 75, 111, 0.07);
}

.hours-row {
  padding: 6px 0;
  font-size: 0.57rem;
}

.clinic-contacts {
  gap: 7px;
}

.clinic-contacts > a {
  padding: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.clinic-contacts strong {
  font-size: 0.53rem;
}

.emergency-note {
  margin-top: 8px;
  padding: 8px 10px;
}

.appointment-security {
  margin: 8px 0 0;
  font-size: 0.53rem;
}

.clinic-follow {
  display: flex;
  margin-top: 8px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(112, 157, 190, 0.13);
  border-radius: 9px;
  align-items: center;
  justify-content: space-between;
}

.clinic-follow > span {
  color: var(--navy-2);
  font-size: 0.52rem;
  font-weight: 800;
}

.clinic-follow > div {
  display: flex;
  gap: 6px;
}

.clinic-follow a {
  display: grid;
  width: 25px;
  height: 25px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.58rem;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clinic-follow a:hover {
  color: #fff;
  box-shadow: 0 0 15px rgba(27, 84, 134, 0.25);
  transform: translateY(-2px);
}

.appointment-stats {
  display: grid;
  margin-top: 12px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(3, 25, 59, 0.55);
  border: 1px solid rgba(128, 194, 235, 0.19);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.appointment-stats > div {
  display: flex;
  padding: 0 16px;
  border-right: 1px solid rgba(170, 213, 241, 0.16);
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.appointment-stats > div:last-child {
  border-right: 0;
}

.appointment-stats > div > svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #67e3eb;
  filter: drop-shadow(0 0 8px rgba(75, 211, 224, 0.28));
}

.appointment-stats span {
  display: flex;
  flex-direction: column;
  line-height: 1.22;
}

.appointment-stats strong {
  font-family: var(--heading);
  font-size: 0.85rem;
}

.appointment-stats small {
  color: rgba(220, 237, 249, 0.68);
  font-size: 0.47rem;
}

.map-section {
  padding-top: 45px;
  background: #f7fbfd;
}

.map-heading {
  display: flex;
  margin-bottom: 24px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.map-heading h2 {
  margin: 7px 0 0;
  color: var(--navy-2);
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.map-heading > a {
  display: inline-flex;
  min-height: 43px;
  padding: 0 15px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  align-items: center;
  gap: 7px;
}

.map-heading > a:hover {
  background: var(--primary-dark);
}

.map-frame {
  height: 390px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82);
}

.site-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 9% 10%, rgba(54, 105, 148, 0.11), transparent 28%),
    radial-gradient(circle at 91% 84%, rgba(35, 87, 130, 0.09), transparent 30%),
    linear-gradient(128deg, #051725 0%, #082239 52%, #0a2c49 100%);
  border-top: 1px solid rgba(105, 157, 195, 0.22);
  box-shadow: inset 0 10px 38px rgba(68, 122, 163, 0.045), 0 -12px 42px rgba(5, 28, 48, 0.15);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #31688f 26%, #5b8eb2 50%, #31688f 74%, transparent);
  box-shadow: 0 0 14px rgba(76, 132, 174, 0.34);
  content: "";
}

.site-footer::after {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 650px;
  height: 330px;
  background: radial-gradient(circle, rgba(61, 114, 153, 0.055), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 68px 0 50px;
  gap: 54px;
  grid-template-columns: 1.6fr 0.72fr 0.85fr 1.2fr;
}

.footer-logo {
  display: block;
  width: 285px;
  max-width: 100%;
  height: 71px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2), 0 0 24px rgba(130, 186, 224, 0.17);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24), 0 0 30px rgba(130, 186, 224, 0.3);
  transform: translateY(-3px);
}

.footer-about p {
  max-width: 430px;
  margin: 27px 0;
  color: rgba(234, 245, 253, 0.78);
  font-size: 0.94rem;
  line-height: 1.82;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  color: #fff;
  background: linear-gradient(145deg, rgba(20, 58, 88, 0.88), rgba(7, 34, 55, 0.92));
  border: 1px solid rgba(137, 182, 213, 0.19);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  color: #fff;
  background: #2d6f9f;
  border-color: rgba(184, 220, 244, 0.48);
  box-shadow: 0 0 22px rgba(111, 177, 222, 0.42);
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  display: flex;
  margin: 0 0 15px;
  color: #fff;
  font-family: var(--heading);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  align-items: center;
  gap: 9px;
}

.footer-heading-icon {
  display: grid;
  width: 31px;
  height: 31px;
  color: #d8edf9;
  background: rgba(18, 56, 86, 0.82);
  border: 1px solid rgba(138, 181, 211, 0.18);
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(58, 111, 150, 0.08);
  place-items: center;
}

.footer-heading-icon svg {
  width: 15px;
  height: 15px;
}

.footer-column > a {
  display: inline-flex;
  color: rgba(230, 243, 252, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.footer-column > a > svg {
  width: 14px;
  height: 14px;
  color: #8fbddd;
  flex: 0 0 auto;
}

.footer-column > a:hover {
  color: #fff;
  text-shadow: 0 0 13px rgba(191, 224, 246, 0.44);
  transform: translateX(4px);
}

.footer-column > a:hover > svg {
  color: #c9e8fa;
}

.footer-contact > a,
.footer-contact > p {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 9px 10px;
  color: rgba(233, 245, 253, 0.78);
  background: rgba(3, 24, 40, 0.28);
  border: 1px solid rgba(135, 177, 207, 0.1);
  border-radius: 9px;
  font-size: 0.8rem;
  line-height: 1.55;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-contact > a:hover {
  background: rgba(24, 65, 97, 0.54);
  border-color: rgba(151, 191, 220, 0.18);
  box-shadow: 0 0 18px rgba(57, 111, 151, 0.1);
  transform: translateX(3px);
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #a9d0e9;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 72px;
  border-top: 1px solid rgba(195, 223, 241, 0.18);
  color: rgba(228, 241, 250, 0.66);
  font-size: 0.7rem;
  align-items: center;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-bottom p span {
  color: #ff8394;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(191, 224, 246, 0.42);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 800;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
}

.floating-btn {
  display: grid;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 9px 22px rgba(5, 37, 67, 0.23);
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-btn:hover {
  color: #fff;
  box-shadow: 0 12px 25px rgba(5, 37, 67, 0.31);
  transform: translateY(-3px);
}

.floating-btn.whatsapp {
  background: #1ebd6b;
}

.floating-btn.call {
  position: relative;
  width: 72px;
  height: 72px;
  background: transparent;
  box-shadow: none;
}

.floating-btn.call:hover {
  box-shadow: none;
}

.floating-btn.call > img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 9px 10px rgba(5, 37, 67, 0.25));
}

.call-prompt-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  left: auto;
  min-width: 82px;
  padding: 8px 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(27, 84, 134, 0.15);
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(5, 37, 67, 0.2);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(8px, -50%) scale(0.96);
  animation: callPromptReveal 7s ease-in-out 7s infinite;
}

.call-prompt-label::after {
  position: absolute;
  top: 50%;
  right: -5px;
  left: auto;
  width: 9px;
  height: 9px;
  background: #fff;
  border-top: 1px solid rgba(27, 84, 134, 0.15);
  border-right: 1px solid rgba(27, 84, 134, 0.15);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

@keyframes callPromptReveal {
  0%,
  55%,
  100% {
    opacity: 0;
    transform: translate(8px, -50%) scale(0.96);
  }

  10%,
  45% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
}

.back-to-top {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: #fff;
  background: var(--primary);
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  place-items: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.appointment-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 20, 48, 0.76);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  display: grid;
  width: min(950px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.35s ease;
}

.appointment-modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 17px rgba(3, 34, 64, 0.12);
  place-items: center;
  transition: 0.2s ease;
}

.modal-close:hover {
  color: #fff;
  background: var(--navy);
}

.modal-doctor {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.modal-doctor::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 24, 53, 0.94) 0%, rgba(3, 24, 53, 0.04) 68%);
  content: "";
}

.modal-doctor > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-doctor-overlay {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  z-index: 2;
  color: #fff;
}

.modal-doctor-overlay span {
  color: #b9d4e8;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-doctor-overlay h2 {
  margin: 8px 0 10px;
  font-family: var(--heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.modal-doctor-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
}

.modal-form {
  padding: 46px 38px 34px;
}

.modal-form > h2 {
  margin: 7px 0 23px;
  color: var(--navy-2);
  font-family: var(--heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.modal-form .form-field input,
.modal-form .form-field select {
  min-height: 48px;
}

.modal-form .form-field textarea {
  min-height: 75px;
}

.modal-form .modal-message-field textarea {
  height: 48px;
  min-height: 48px;
}

.success-toast {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 4000;
  display: flex;
  width: min(390px, calc(100vw - 30px));
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  align-items: center;
  gap: 11px;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.success-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.success-toast > span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #19b76a;
  border-radius: 50%;
  place-items: center;
}

.success-toast > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  line-height: 1.35;
}

.success-toast strong {
  color: var(--navy);
  font-size: 0.7rem;
}

.success-toast p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.57rem;
}

.success-toast > button {
  padding: 4px;
  color: #81909d;
  background: transparent;
}

@media (max-width: 1199.98px) {
  .brand-logo {
    flex-basis: 222px;
    width: 222px;
    height: 56px;
  }

  .desktop-nav > a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.71rem;
  }

  .hero-content {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  }

  .appointment-copy {
    padding: 42px;
  }

  .clinic-info {
    padding: 24px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 108px;
  }

  .topbar {
    display: none;
  }

  .mobile-availability {
    display: flex;
    min-height: 25px;
    padding: 4px 7px;
    color: #fff;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    font-size: clamp(0.62rem, 2.8vw, 0.78rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.015em;
    text-align: center;
    white-space: nowrap;
  }

  .nav-shell {
    min-height: 72px;
  }

  .mobile-nav {
    top: 97px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 65px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-form-card {
    width: min(660px, 100%);
  }

  .doctor-portrait {
    margin: 0 auto;
  }

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

  .additional-care {
    grid-template-columns: 1fr;
  }

  .additional-care > span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .additional-care ul {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .why-media {
    min-height: 440px;
  }

  .care-strip {
    gap: 20px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .care-strip > div:nth-child(2) {
    border-right: 0;
  }

  .gallery-heading {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .gallery-heading > p {
    max-width: 620px;
  }

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

  .appointment-shell {
    grid-template-columns: 1fr;
  }

  .clinic-info {
    margin: 12px 0 0;
  }

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

  .appointment-stats > div {
    padding: 8px 14px;
  }

  .appointment-stats > div:nth-child(2) {
    border-right: 0;
  }

  .appointment-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(170, 213, 241, 0.16);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .modal-card {
    grid-template-columns: minmax(260px, 0.72fr) minmax(400px, 1.28fr);
  }
}

@media (max-width: 767.98px) {
  .nav-shell {
    min-height: 80px;
  }

  .mobile-nav {
    top: 105px;
  }

  .brand-logo {
    flex: 0 1 236px;
    width: 236px;
    max-width: calc(100% - 72px);
    height: 65px;
    margin-left: -5px;
  }

  .btn-outline-light-custom {
    border-width: 2px;
  }

  .hero-background {
    background-image: none;
    animation-duration: 18s;
  }

  .hero-background::before {
    background: linear-gradient(90deg, rgba(6, 29, 50, 0.82), rgba(10, 43, 70, 0.58));
  }

  .hero-bg-slide {
    background-position: center;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 55px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-copy > p {
    font-size: 0.9rem;
  }

  .hero-trust > div {
    min-width: 0;
    padding: 0 14px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

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

  .care-strip {
    padding: 18px 10px;
  }

  .care-strip > div {
    padding: 0 13px;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-summary {
    width: 100%;
    min-width: 0;
  }

  .review-card {
    min-height: 300px;
    padding: 22px;
  }

  .review-card > p {
    min-height: 115px;
    padding-right: 8px;
  }

  .appointment-copy {
    padding: 36px 24px;
  }

  .appointment-copy > ul {
    flex-wrap: wrap;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 35px 25px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 18px 0;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom > div {
    justify-content: center;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }

  .modal-card {
    width: min(620px, 96vw);
    grid-template-columns: 1fr;
  }

  .modal-doctor {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    width: 100%;
    padding: 12px 4px;
  }

  .hero-trust > div {
    padding: 0 7px;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .hero-trust > div:first-child {
    padding-left: 7px;
  }

  .hero-trust strong {
    font-size: 1.2rem;
  }

  .hero-trust > div > span {
    font-size: 0.57rem;
    text-align: center;
  }

  .hero-form-card {
    padding: 21px 17px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .doctor-portrait {
    width: 100%;
    max-width: 420px;
  }

  .portrait-frame img {
    height: clamp(300px, 88vw, 380px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 24%;
  }

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

  .about-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .treatment-media {
    height: 225px;
  }

  .additional-care ul {
    grid-template-columns: 1fr;
  }

  .additional-care li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .additional-care li:last-child {
    border-bottom: 0;
  }

  .care-strip {
    grid-template-columns: 1fr;
  }

  .care-strip > div {
    padding: 6px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .care-strip > div:last-child {
    border-bottom: 0;
  }

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

  .gallery-heading .section-title {
    white-space: normal;
  }

  .why-section .section-title {
    white-space: normal;
  }

  .treatments-section .section-title {
    white-space: normal;
  }

  .appointment-copy > ul {
    width: 100%;
  }

  .appointment-copy > .appointment-trust-chips {
    display: grid;
    align-items: stretch;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment-copy > .appointment-trust-chips li {
    width: 100%;
    padding: 7px 6px;
    justify-content: center;
    white-space: nowrap;
  }

  .appointment-copy > .appointment-trust-chips li.mobile-only-trust {
    display: inline-flex;
  }

  .clinic-info {
    margin: 10px;
    padding: 21px 17px;
  }

  .info-doctor {
    min-height: 72px;
    padding-right: 42px;
  }

  .info-doctor img {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .info-doctor strong {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .doctor-card-watermark {
    top: -7px;
    right: -4px;
    width: 66px;
    height: 66px;
  }

  .appointment-form-panel {
    padding: 13px;
  }

  .appointment-stats {
    margin-top: 10px;
    padding: 7px;
  }

  .appointment-stats > div {
    padding: 9px 5px;
  }

  .appointment-stats > div > svg {
    width: 18px;
    height: 18px;
  }

  .clinic-contacts {
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 340px;
  }

  .footer-grid {
    padding: 48px 0 38px;
    gap: 38px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-about {
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
  }

  .footer-logo {
    width: min(285px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .footer-about p {
    width: 100%;
    max-width: 100%;
    margin: 22px auto;
    font-size: clamp(0.76rem, 3.4vw, 0.84rem);
    line-height: 1.9;
    white-space: nowrap;
  }

  .social-links {
    justify-content: center;
  }

  .footer-column {
    text-align: left;
    align-items: flex-start;
  }

  .footer-column > a {
    justify-content: flex-start;
  }

  .footer-grid > .footer-column:not(.footer-contact) h3 {
    font-size: clamp(0.82rem, 3.8vw, 0.96rem);
    gap: 7px;
    white-space: nowrap;
  }

  .footer-grid > .footer-column:not(.footer-contact) > a {
    font-size: clamp(0.68rem, 3.15vw, 0.78rem);
    gap: 6px;
    white-space: nowrap;
  }

  .footer-grid > .footer-column:not(.footer-contact) > a > svg {
    width: 13px;
    height: 13px;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-contact > a,
  .footer-contact > p {
    text-align: left;
    justify-content: flex-start;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-btn {
    width: 43px;
    height: 43px;
  }

  .floating-btn.call {
    width: 64px;
    height: 64px;
  }

  .floating-btn.call > img {
    width: 74px;
    height: 74px;
  }

  .appointment-modal {
    padding: 9px;
  }

  .modal-card {
    max-height: 96vh;
    border-radius: 13px;
  }

  .modal-form {
    padding: 47px 20px 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-background,
  .hero-bg-slide,
  .hero-kicker svg {
    animation: none !important;
  }

  .hero-bg-slide {
    opacity: 0;
  }

  .hero-bg-slide-one {
    opacity: 1;
  }
}
