:root {
  --primary: #1a8fc8;
  --deep: #1f2731;
  --ink: #2e2e2e;
  --soft: #757575;
  --line: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

.container {
  width: min(1120px, 94%);
  margin: 0 auto;
}

.top-strip {
  height: 36px;
  border-bottom: 1px solid var(--line);
  color: #8f8f8f;
  font-size: 12px;
}

.top-strip-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials a {
  color: #2f9ad0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: #1f94d0;
  transform: translateY(-1px);
}

.socials svg {
  width: 15px;
  height: 15px;
  display: block;
}

.main-nav-wrap {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.main-nav-inner {
  position: relative;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #1f5f88;
  line-height: 1.2;
  max-width: 320px;
}

.logo-main {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.logo-sub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid #dfe5ea;
  box-shadow: 0 8px 20px rgba(12, 39, 63, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sticky-header.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-logo .logo-mark {
  width: 36px;
  height: 36px;
}

.sticky-logo .logo-text {
  max-width: 260px;
}

.sticky-logo .logo-main {
  font-size: 15px;
}

.sticky-logo .logo-sub {
  font-size: 11px;
}

.sticky-nav {
  display: flex;
  gap: 6px;
}

.sticky-nav a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #2f3b46;
  padding: 12px 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.sticky-nav a:hover,
.sticky-nav a:focus-visible {
  background: #1f94d0;
  color: #fff;
}

.menu-btn {
  display: none;
  position: absolute;
  left: 50%;
  bottom: -21px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #1f94d0;
  color: #fff;
  padding: 0;
  z-index: 40;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.25s ease;
}

.menu-btn-icon {
  display: inline-block;
  font-size: 20px;
  line-height: 34px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

nav {
  display: flex;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #292929;
  padding: 14px 14px;
}

nav a.active {
  background: #1f94d0;
  color: #fff;
}

nav a.has-child {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

nav a.has-child span {
  font-size: 11px;
}

.nav-item-has-child {
  position: relative;
}

.nav-item-has-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.dropdown-menu,
.sub-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 270px;
  background: #28324a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(12, 23, 44, 0.35);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}

.dropdown-menu {
  top: calc(100% + 12px);
  left: 0;
}

.sub-dropdown-menu {
  top: -8px;
  left: 100%;
}

.dropdown-has-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 10px;
  height: 100%;
}

.dropdown-menu li,
.sub-dropdown-menu li {
  position: relative;
}

.dropdown-menu a,
.sub-dropdown-menu a {
  display: block;
  color: #eef2fa;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-menu li:last-child > a,
.sub-dropdown-menu li:last-child > a {
  border-bottom: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.sub-dropdown-menu a:hover,
.sub-dropdown-menu a:focus-visible {
  background: #1f94d0;
  color: #fff;
}

.dropdown-has-child > a::after {
  content: "›";
  float: right;
}

.nav-item-has-child:hover > .dropdown-menu,
.nav-item-has-child:focus-within > .dropdown-menu,
.dropdown-has-child:hover > .sub-dropdown-menu,
.dropdown-has-child:focus-within > .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-strip {
  background: #f3f3f3;
}

.contact-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}

.contact-grid h4 {
  margin: 0 0 8px;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
}

.contact-grid p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.hero-slider {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #2c62ac;
  background-image:
    linear-gradient(90deg, rgba(70, 82, 182, 0.92) 0%, rgba(42, 107, 190, 0.87) 45%, rgba(33, 182, 218, 0.82) 100%),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.1), transparent 24%),
    radial-gradient(circle at 55% 44%, rgba(255, 255, 255, 0.08), transparent 24%);
}

.page-hero-bar {
  background:
    linear-gradient(110deg, rgba(41, 98, 174, 0.96), rgba(27, 152, 209, 0.92)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.16), transparent 32%);
  color: #fff;
}

.page-hero-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-hero-inner:has(.page-hero-sub) {
  min-height: 96px;
  padding: 14px 0;
}

.page-hero-inner h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.page-hero-inner .page-hero-sub {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
}

.crumb {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.crumb a {
  color: inherit;
  text-decoration: none;
}

.crumb a:hover,
.crumb a:focus-visible {
  text-decoration: underline;
}

.page-content {
  padding: 64px 0 72px;
}

.page-content h2 {
  margin: 0 0 10px;
  color: #2a86b4;
  font-size: 36px;
  font-weight: 400;
}

.page-content p {
  margin: 0;
  max-width: 860px;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-layout {
  position: relative;
  height: 100%;
  display: block;
}

.hero-content {
  color: #fff;
  padding-top: 70px;
  padding-right: 24px;
  z-index: 2;
  position: relative;
  width: 54%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content p:first-child {
  margin: 0 0 18px;
  font-size: 13px;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6.5vw, 68px);
  line-height: 1.02;
}

.hero-content p {
  font-size: 16px;
  max-width: 600px;
  line-height: 1.45;
  margin: 0 0 10px;
}

.outline-btn {
  display: inline-block;
  margin-top: 12px;
  border: 2px solid #fff;
  background: #fff;
  color: #1f94d0;
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 10px 18px;
}

.hero-media-fixed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  overflow: hidden;
  z-index: 0;
}

.hero-media-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 120, 190, 0.15), rgba(31, 173, 207, 0.02));
  z-index: 1;
}

.hero-media-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 94% center;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 3;
}

.slider-arrow.left {
  left: 8px;
}

.slider-arrow.right {
  right: 8px;
}

.feature-icons {
  background: #f5f5f5;
  padding: 72px 0 86px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.icon {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid #ececec;
  background: #f8f8f8;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 50px;
  height: 50px;
  stroke: #2ec0d0;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid h3 {
  margin: 0 0 9px;
  font-size: 37px;
  color: #4b4b4b;
  font-weight: 300;
  line-height: 1.15;
}

.feature-grid p {
  margin: 0;
  font-size: 14px;
  color: #787878;
  line-height: 1.7;
}

.appointment-bar {
  background:
    linear-gradient(110deg, rgba(41, 98, 174, 0.98), rgba(27, 152, 209, 0.96)),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.15), transparent 30%);
  color: #fff;
}

.appointment-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.appointment-inner p {
  margin: 0;
  font-size: 38px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.appointment-inner a {
  text-decoration: none;
  color: #9a9a9a;
  border: 1px solid #fff;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.appointment-inner a::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
  background: linear-gradient(currentColor, currentColor) top / 100% 3px no-repeat;
}

.appointment-inner a:hover,
.appointment-inner a:focus-visible {
  background: #1f94d0;
  color: #fff;
  border-color: #1f94d0;
}

.welcome-section {
  padding: 72px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.doctor-photo-wrap {
  text-align: center;
}

.doctor-photo {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.doctor-caption {
  margin: 14px 0 0;
  color: #2c789f;
  font-size: 14px;
}

.welcome-copy h2 {
  color: #2a86b4;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.welcome-copy h3 {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 400;
  color: #3f3f3f;
}

.welcome-copy p {
  color: #6f6f6f;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 8px;
}

.reviews {
  padding: 76px 0 70px;
  background: linear-gradient(120deg, #d8e8f6 0%, #b7d2ea 55%, #c7d5e4 100%);
}

.reviews h2 {
  text-align: center;
  color: #1e5f8d;
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 400;
  margin: 0 0 34px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border: 1px solid #dbe4ed;
  border-radius: 14px;
  padding: 28px 24px 22px;
  box-shadow: 0 8px 24px rgba(24, 70, 110, 0.12);
}

.quote-mark {
  display: inline-block;
  color: #6d9fc4;
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  line-height: 0.75;
  margin-bottom: 14px;
}

.review-card h4 {
  margin: 0;
  font-size: 22px;
  color: #2d3c4c;
  font-weight: 600;
}

.review-card p {
  margin: 0 0 22px;
  color: #566779;
  line-height: 1.72;
  font-size: 16px;
}

.reviewer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stars {
  letter-spacing: 0.12em;
  color: #f2c24d;
  font-size: 16px;
}

.reviews-cta {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  text-decoration: none;
  background: #f0f4f8;
  color: #50606f;
  border: 1px solid #d2dce6;
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.reviews-cta:hover,
.reviews-cta:focus-visible {
  background: #1f94d0;
  color: #fff;
  border-color: #1f94d0;
}

.blue-service-band {
  position: relative;
  padding: 0;
  color: #fff;
  background: #2a5f8a;
}

.blue-band-grid {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}

.service-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
  margin: 0;
  padding: 28px 14px 32px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  transition: box-shadow 0.35s ease;
}

.service-panel:last-child {
  border-right: 0;
}

.service-panel:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  z-index: 2;
}

.service-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.service-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s ease;
}

.service-panel:hover .service-panel__bg img {
  transform: scale(1.04);
}

.service-panel.is-active .service-panel__bg img,
.service-panel.is-active:hover .service-panel__bg img {
  transform: scale(1.1);
}

.service-panel:first-child.is-active .service-panel__bg img,
.service-panel:first-child.is-active:hover .service-panel__bg img {
  transform: scale(1.16);
}

.service-panel__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(30, 90, 140, 0.55) 0%,
    rgba(20, 70, 120, 0.78) 100%
  );
  transition: background 0.35s ease;
}

.service-panel.is-active .service-panel__scrim {
  background: linear-gradient(
    180deg,
    rgba(25, 80, 130, 0.5) 0%,
    rgba(15, 55, 95, 0.88) 100%
  );
}

.service-panel__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  pointer-events: none;
}

.service-panel__icon {
  display: block;
  width: 52px;
  height: 52px;
  color: #fff;
}

.service-panel__icon svg {
  width: 100%;
  height: 100%;
}

.service-panel__title {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.service-panel__desc {
  display: block;
  max-width: 260px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
}

.service-panel:hover .service-panel__desc,
.service-panel:focus-within .service-panel__desc,
.service-panel.is-active .service-panel__desc {
  max-height: 280px;
  opacity: 1;
  margin-top: 6px;
}

.service-cards {
  padding: 72px 0;
  text-align: center;
}

.mini-title {
  color: #2a8fc6;
  font-size: 21px;
  margin: 0;
}

.service-cards h2 {
  font-size: 53px;
  margin: 6px 0 12px;
  font-weight: 300;
}

.intro {
  max-width: 840px;
  margin: 0 auto 28px;
  color: #757575;
  font-size: 19px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.card-grid article {
  border: 1px solid #ececec;
  background: #fff;
}

.img {
  height: 240px;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-grid h3,
.card-grid p {
  padding: 0 16px;
}

.card-grid h3 {
  font-size: 33px;
  margin: 18px 0 8px;
  font-weight: 300;
}

.card-grid p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.map-symptoms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.map-box {
  background: linear-gradient(145deg, #bfd6ea, #95bddc);
  display: grid;
  place-items: center;
  color: #274e6a;
  font-size: 24px;
}

.symptoms-grid {
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.symptoms-grid h3 {
  margin: 0 0 10px;
  font-size: 33px;
  font-weight: 300;
}

.symptoms-grid p {
  margin: 0;
  color: #707070;
  font-size: 16px;
  line-height: 1.7;
}

.main-footer {
  background: #22252a;
  color: #f0f0f0;
}

.footer-main {
  padding: 56px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 44px 40px;
  align-items: start;
}

.footer-col--brand {
  max-width: 360px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: #fff;
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: #fff;
}

.footer-logo-line1 {
  font-size: 13px;
}

.footer-logo-line2 {
  font-size: 20px;
}

.footer-brand-desc {
  margin: 0 0 22px;
  color: #b8bcc4;
  font-size: 14px;
  line-height: 1.75;
}

.footer-feature-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.footer-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e8eaee;
  font-size: 14px;
  line-height: 1.4;
}

.footer-feature-list li:last-child {
  margin-bottom: 0;
}

.footer-feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #4db6e8;
}

.footer-feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 22px;
  background: #1f94d0;
  color: #fff;
  border: 0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.footer-cta::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
  background: linear-gradient(currentColor, currentColor) top / 100% 3px no-repeat;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: #1a7fb5;
}

.footer-heading {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: #1f94d0;
  border-radius: 1px;
}

.footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-list li {
  border-bottom: 1px solid #3a3f48;
}

.footer-link-list a {
  display: block;
  padding: 12px 0;
  color: #e2e4e8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: #7ec8f0;
  padding-left: 4px;
}

.footer-col--hours .hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col--hours .hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #3a3f48;
  color: #e2e4e8;
  font-size: 13px;
}

.footer-col--hours .hours li:last-child {
  border-bottom: 0;
}

.footer-col--hours .hours li span:last-child {
  color: #c9cdd4;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.hours-row--accent span:first-child {
  color: #6ec4f0;
  font-weight: 600;
}

.footer-sub {
  background: #181a1e;
  border-top: 1px solid #2e323a;
  padding: 18px 0 20px;
}

.footer-sub-inner {
  text-align: center;
}

.footer-sub-line1,
.footer-sub-line2 {
  margin: 0;
  color: #9a9ea8;
  font-size: 13px;
  line-height: 1.65;
}

.footer-sub-line1 {
  margin-bottom: 8px;
  color: #b4b8c0;
}

.footer-sub-line1 span:not(.footer-sub-sep) {
  display: inline-block;
}

.footer-sub-sep {
  margin: 0 10px;
  color: #5c616b;
  font-weight: 300;
}

.footer-sub-line2 .copyright-attrib {
  color: #9a9ea8;
}

.footer-sub-line2 .copyright-attrib a {
  color: #7ec8f0;
  text-decoration: none;
}

.footer-sub-line2 .copyright-attrib a:hover,
.footer-sub-line2 .copyright-attrib a:focus-visible {
  text-decoration: underline;
  color: #a8dcf5;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-text {
    align-items: center;
    max-width: 220px;
  }

  .logo-main {
    font-size: 16px;
    white-space: normal;
  }

  .logo-sub {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    max-width: 180px !important;
  }

  .logo-main {
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 40px 0 36px;
  }

  .footer-sub-line1 span:not(.footer-sub-sep) {
    display: block;
  }

  .footer-sub-sep {
    display: none;
  }

  .footer-sub-line1 span:not(.footer-sub-sep):not(:last-child) {
    margin-bottom: 4px;
  }
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: #1e96d2;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .sticky-header {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  nav {
    display: flex;
    position: absolute;
    top: 102px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    flex-direction: column;
    z-index: 30;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  nav.open {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  nav a {
    padding: 9px 16px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 8px;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }

  .nav-list > li {
    width: 100%;
  }

  .dropdown-menu,
  .sub-dropdown-menu {
    display: none;
  }

  .nav-item-has-child.mobile-open > .dropdown-menu,
  .dropdown-has-child.mobile-open > .sub-dropdown-menu {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    border: 0;
    border-top: 1px solid #e7edf3;
    background: #f7fbff;
    padding: 0;
  }

  .dropdown-menu a,
  .sub-dropdown-menu a {
    color: #27455f;
    border-bottom: 1px solid #e7edf3;
    font-size: 10px;
    padding: 9px 16px;
  }

  .dropdown-has-child > a::after {
    content: "▾";
    float: right;
  }

  nav a.has-child span {
    margin-left: auto;
  }

  .mobile-search {
    display: block;
    color: #b0b0b0;
    font-size: 8px;
    padding: 8px 16px;
    border-bottom: 1px solid #f1f1f1;
  }

  .menu-btn.open .menu-btn-icon {
    transform: rotate(90deg);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    padding: 12px 0;
  }

  .feature-grid,
  .blue-band-grid,
  .review-track,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-grid,
  .map-symptoms {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    margin: 0 auto;
  }

  .hero-slider {
    height: 360px;
  }

  .page-hero-inner {
    min-height: 54px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 0;
    gap: 2px;
  }

  .page-hero-inner h1 {
    font-size: 26px;
  }

  .page-hero-inner .page-hero-sub {
    font-size: 15px;
    margin-top: 6px;
  }

  .crumb {
    font-size: 9px;
  }

  .page-content {
    padding: 42px 0 50px;
  }

  .page-content h2 {
    font-size: 28px;
  }

  .page-content p {
    font-size: 15px;
  }

  .hero-layout {
    display: block;
  }

  .hero-content {
    width: 56%;
  }

  .hero-media-fixed {
    width: 44%;
  }

  .hero-content p,
  .feature-grid p,
  .service-panel__desc,
  .intro,
  .card-grid p,
  .symptoms-grid p {
    font-size: 18px;
  }

  .hero-content h1,
  .welcome-copy h2,
  .reviews h2,
  .service-cards h2 {
    font-size: 42px;
  }

  .feature-grid h3,
  .welcome-copy h3,
  .service-panel__title,
  .card-grid h3,
  .symptoms-grid h3 {
    font-size: 28px;
  }

  .appointment-inner p {
    font-size: 28px;
  }

  .contact-strip {
    margin-top: 0;
  }

  .service-panel:nth-child(2n) {
    border-right: 0;
  }

  .service-panel:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 640px) {
  .top-strip {
    display: none;
  }

  .main-nav-inner {
    min-height: 96px;
    padding-top: 6px;
    padding-bottom: 16px;
  }

  .logo {
    margin: 0 auto 4px;
    flex-direction: column;
    gap: 2px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    max-width: 220px;
  }

  .logo-main {
    font-size: 16px;
  }

  .logo-sub {
    font-size: 12px;
  }

  nav {
    top: 96px;
  }

  .menu-btn {
    display: block;
    bottom: -21px;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }

  .contact-strip {
    display: none;
  }

  .contact-grid,
  .feature-grid,
  .blue-band-grid,
  .review-track,
  .card-grid,
  .symptoms-grid {
    grid-template-columns: 1fr;
  }

  .service-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 260px;
  }

  .service-panel:last-child {
    border-bottom: 0;
  }

  .hero-slider {
    height: 160px;
    margin-top: 0;
  }

  .hero-layout {
    display: block;
  }

  .hero-content {
    padding-top: 19px;
    padding-right: 8px;
    width: 64%;
  }

  .hero-content p:first-child {
    margin-bottom: 4px;
    font-size: 7px;
  }

  .hero-content h1 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .hero-content p {
    font-size: 9px;
    max-width: 165px;
    margin-bottom: 4px;
  }

  .outline-btn {
    font-size: 7px;
    border-width: 1px;
    padding: 6px 10px;
    margin-top: 0;
  }

  .slider-arrow {
    width: 20px;
    height: 20px;
    font-size: 18px;
  }

  .hero-media-fixed img {
    object-fit: cover;
    object-position: 78% center;
  }

  .appointment-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
  }

  .feature-icons {
    padding: 50px 0 58px;
  }

  .icon {
    width: 92px;
    height: 92px;
  }

  .icon svg {
    width: 42px;
    height: 42px;
  }

  .appointment-inner p {
    font-size: 20px;
    line-height: 1.3;
  }

  .to-top {
    width: 31px;
    height: 31px;
    font-size: 12px;
  }
}


/*F Edited */

.service-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.highlight {
  color: #2a7dbf;
  font-weight: 600;
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #2a7dbf;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.service-section-box {
  margin-top: 40px;
}

.service-section-box h3 {
  margin-bottom: 15px;
  color: #2a7dbf;
}

.service-section-box ul {
  padding-left: 20px;
}

.service-section-box li {
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-flex {
    flex-direction: column;
  }
}

/*F Edited */

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.left-content h2 {
  margin-bottom: 10px;
}

.highlight {
  color: #2a7dbf;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-card {
  display: flex;
  gap: 15px;
  background: #f1f6fb;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid #e0ebf5;
  transition: 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-number {
  background: #2a7dbf;
  color: #fff;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-number {
  background: #2a7dbf;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.info-box {
  background: #f1f6fb;
  padding: 20px;
  border-radius: 14px;
  margin-top: 20px;
  border: 1px solid #e0ebf5;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #2a7dbf;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }
}

.main-service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* PAGE BACKGROUND */
.page-content {
  background: #f4f7fb;
  padding: 50px 0;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.left-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.highlight {
  color: #2a7dbf;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.left-content p {
  line-height: 1.6;
  margin-bottom: 12px;
}

/* HEADINGS */
.left-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 15px;
}

/* SUB HEADING */
.highlight {
  font-size: 16px;
  color: #2a7dbf;
  font-weight: 600;
  margin-bottom: 15px;
}

/* PARAGRAPH */
.left-content p {
  font-size: 15px;
  color: #5a6b7b;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* RIGHT TITLE */
.right-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* STEP TITLE */
.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* STEP TEXT */
.step-card p {
  font-size: 14px;
  color: #5a6b7b;
}

.service-image {
  margin: 15px 0 20px;
}

.service-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-box ul {
  padding-left: 18px;
}

.info-box li {
  font-size: 14px;
  color: #4a5a6a;
  margin-bottom: 6px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #2a7dbf;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1f5f95;
}

.left-content {
  padding-right: 10px;
}

.right-content {
  padding-left: 10px;
}

/* LAYOUT */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* LEFT CARD */
.left-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* RIGHT CARD */
.right-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.page-content {
  background: #f4f7fb;
  padding: 50px 0;
}

.service-image img {
  width: 100%;
  border-radius: 14px;
  margin: 15px 0 20px;
}

.right-content h3 {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .two-col-layout {
    grid-template-columns: 1fr;
  }
}

.left-card:hover,
.right-card:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  text-align: center;
  background: #f5f8fb;
  padding: 15px;
  border-radius: 10px;
}

.team-card img {
  width: 100%;
  border-radius: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.feature-box {
  background: #eef5fb;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 20px;
    bottom: 85px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 15px;
  }

  .to-top {
    right: 15px;
    bottom: 15px;
  }
}

.clinic-maps {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.map-card {
  flex: 1;
  min-width: 300px;
}

.map-card h4 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.map-card iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .clinic-maps {
    flex-direction: column;
  }
}

/* ABOUT PAGE — feature boxes */
.about-copy p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.feature-box .icon-sm {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: #2a86b4;
}

.feature-box h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #1f3a4d;
}

.feature-box p {
  margin: 0;
  font-size: 13px;
  color: #6a7b89;
  line-height: 1.6;
}

/* ABOUT PAGE — animated doctor photo placeholders */
.doctor-avatar-placeholder {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a86b4, #6fc3e8, #2a7dbf);
  background-size: 220% 220%;
  animation: doctorGradient 7s ease infinite;
  box-shadow: 0 8px 20px rgba(42, 134, 180, 0.25);
}

.doctor-avatar-placeholder::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(42, 134, 180, 0.35);
  animation: doctorPulse 2.6s ease-out infinite;
}

.doctor-avatar-placeholder svg {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doctor-avatar-placeholder--lg {
  width: 156px;
  height: 156px;
}

.doctor-avatar-placeholder--lg svg {
  width: 64px;
  height: 64px;
}

@keyframes doctorGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes doctorPulse {
  0% { transform: scale(0.92); opacity: 0.9; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ABOUT PAGE — team names & roles */
.team-name {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  color: #1f3a4d;
}

.team-name span {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #2a86b4;
}

.team-role {
  margin: 0;
  font-size: 13px;
  color: #6a7b89;
  line-height: 1.5;
}

/* ABOUT PAGE — director spotlight */
.director-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #f5f8fb;
  border-radius: 16px;
  padding: 32px;
  margin: 22px 0 34px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.director-card .doctor-avatar-placeholder {
  flex-shrink: 0;
  margin: 0;
}

.director-info .team-name {
  font-size: 24px;
}

.director-info .team-role {
  margin: 4px 0 12px;
  font-size: 15px;
  color: #2a7dbf;
  font-weight: 500;
}

.director-info .director-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5a6b7b;
}

@media (max-width: 768px) {
  .director-card {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }
}