/* Sri Suraksha Multispeciality Hospital ? Brand Theme */
:root {
  --navy: #0b1f4a;
  --navy-deep: #061433;
  --navy-soft: #1a3366;
  --magenta: #c2185b;
  --magenta-bright: #e91e63;
  --magenta-dark: #8e0e3d;
  --sky: #4ba3d9;
  --sky-light: #7ec4eb;
  --lavender: #b8a0d0;
  --bg: #f5f8fc;
  --bg-soft: #eef3f9;
  --white: #ffffff;
  --text: #1c2434;
  --muted: #5c6b7a;
  --border: #dce5f0;
  --shadow: 0 12px 40px rgba(11, 31, 74, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 74, 0.14);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--text);
  background-color: #fbfcfe;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("../images/header-pattern.svg");
  background-repeat: repeat;
  background-size: auto, 160px 160px;
  line-height: 1.65;
  overflow-x: clip;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
}

#site-header-mount,
.top-bar,
.site-header,
.hero,
.page-hero,
.site-footer {
  width: 100%;
  max-width: 100%;
}

.container-site {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

/* Keep Bootstrap rows from creating side overflow */
.container-site > .row {
  margin-left: 0;
  margin-right: 0;
}

body:not([data-page="home"]) .top-bar {
  display: none !important;
}

/* Hide top bar below laptop screens */
@media (max-width: 1023.98px) {
  .top-bar {
    display: none !important;
  }
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy) 50%, var(--magenta-dark));
  color: #fff;
  font-size: 0.82rem;
  padding: 0.12rem 0;
  width: 100%;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.top-bar-left {
  justify-content: flex-start;
}

.top-bar-right {
  justify-content: flex-end;
  margin-left: auto;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  opacity: 0.95;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
}

.top-bar-link:hover {
  opacity: 1;
  color: var(--sky-light);
}

.top-bar-link i {
  font-size: 0.95rem;
}

.top-bar .sep {
  opacity: 0.35;
}

/* Navbar */
.site-header {
  position: relative;
  top: auto;
  z-index: 1040;
  background-color: #fbfcfe;
  background-image: url("../images/header-pattern.svg");
  background-repeat: repeat;
  background-size: 160px 160px;
  border-bottom: 1px solid rgba(220, 229, 240, 0.9);
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  width: 100%;
  max-width: 100%;
  isolation: isolate;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(11, 31, 74, 0.1);
  animation: navbarSlideIn 0.28s ease;
}

@keyframes navbarSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-spacer {
  display: none;
  width: 100%;
}

.navbar-spacer.is-active {
  display: block;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.87);
  pointer-events: none;
  z-index: 0;
}

.site-header .navbar {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.site-header.scrolled {
  box-shadow: none;
}

.site-header.is-fixed.scrolled {
  box-shadow: 0 8px 24px rgba(11, 31, 74, 0.1);
}

/* Full-width navbar row (logo left + menu right) */
.navbar-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.navbar-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  margin-right: 0.75rem;
}

.navbar-brand-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.brand-text .sub {
  font-family: var(--font-display);
  font-size: 1.20rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--magenta);
  white-space: nowrap;
}

.site-header .navbar-collapse {
  flex-grow: 1;
  flex-basis: auto;
}

/* Fix: Tailwind `.collapse` conflicts with Bootstrap navbar collapse */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse.collapse {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    visibility: visible !important;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  .navbar-expand-lg .navbar-collapse.collapse.show {
    display: block !important;
    visibility: visible !important;
  }
}

.site-header .navbar-nav {
  gap: 0.1rem;
}

.nav-link-custom {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy) !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0;
  position: relative;
  white-space: nowrap;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  outline: none !important;
}

.nav-link-custom:hover,
.nav-link-custom:focus,
.nav-link-custom:focus-visible,
.nav-link-custom.active,
.nav-link-custom.dropdown-toggle.show {
  color: var(--magenta) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  outline: none !important;
}

.btn-appointment,
.btn-appointment:hover,
.btn-appointment:focus,
.btn-appointment:focus-visible {
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  outline: none !important;
}

.nav-cta {
  margin-left: 0.35rem;
}

.site-header,
.site-header .navbar,
.site-header .navbar-shell,
.site-header .navbar-collapse,
.site-header .navbar-nav,
.site-header .nav-item.dropdown {
  overflow: visible !important;
}

.dropdown-menu-custom {
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-width: 180px;
  width: max-content;
  max-width: 220px;
  margin-top: 0.75rem !important;
  overflow: hidden;
}

.dropdown-menu-custom .dropdown-item {
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0.9rem;
  color: var(--navy);
  width: 100%;
  margin: 0;
  display: block;
  box-shadow: none;
  line-height: 1.4;
}

.dropdown-menu-custom .dropdown-item:hover,
.dropdown-menu-custom .dropdown-item:focus {
  background: #e8e8e8;
  color: var(--navy);
  box-shadow: none;
  border-radius: 0;
}

.specialities-dropdown-menu {
  min-width: 0;
  width: min(560px, calc(100vw - 2rem));
  max-width: min(560px, calc(100vw - 2rem));
  padding: 0;
}

.specialities-dropdown-top .dropdown-item {
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0.95rem;
}

.specialities-dropdown-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.specialities-dropdown-col {
  display: flex;
  flex-direction: column;
}

.specialities-dropdown-col:first-child {
  border-right: 1px solid var(--border);
}

.specialities-dropdown-menu .specialities-dropdown-col .dropdown-item {
  font-size: 0.9rem;
  padding: 0.42rem 0.9rem;
  white-space: normal;
}

/* Show About / Gallery dropdowns on hover (desktop) */
@media (min-width: 992px) {
  .site-header .nav-item.dropdown {
    position: relative;
  }

  .site-header .nav-item.dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
  }

  .site-header .nav-item.dropdown > .dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
  }

  .site-header .nav-item.dropdown:hover > .dropdown-menu,
  .site-header .nav-item.dropdown > .dropdown-menu.show {
    display: block !important;
  }

  .site-header .nav-item.dropdown:not(:hover) > .dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .specialities-dropdown-menu {
    width: 100%;
    max-width: 100%;
    max-height: min(34vh, 260px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 31, 74, 0.35) transparent;
  }

  .specialities-dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .specialities-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(11, 31, 74, 0.35);
    border-radius: 999px;
  }

  .specialities-dropdown-body {
    grid-template-columns: 1fr;
  }

  .specialities-dropdown-col:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--sky);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  box-shadow: none;
}

.btn-appointment:hover {
  background: var(--navy);
  transform: none;
  box-shadow: none;
  color: #fff !important;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.66rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid #cad6e6;
}

.btn-outline-brand:hover {
  border-color: var(--sky);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-solid-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--magenta-bright), var(--magenta));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.66rem 1.3rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 28px rgba(194, 24, 91, 0.3);
}

.btn-solid-brand:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

/* Social float removed ? icons now live in footer */

/* Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(75, 163, 217, 0.15);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.section-badge.magenta {
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
  overflow: hidden;
  background: #e8eef5;
  box-shadow: none;
  height: calc(100vh - var(--site-header-offset, 72px));
  height: calc(100svh - var(--site-header-offset, 72px));
  height: calc(100dvh - var(--site-header-offset, 72px));
  min-height: 320px;
  max-height: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: none;
  filter: none;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-1 {
  background-image: url("../images/Slides/Slide1.png");
}

.hero-slide-2 {
  background-image: url("../images/Slides/Slide2.png");
}

.hero-slide-3 {
  background-image: url("../images/Slides/Slide3.png");
}

@media (max-width: 1023.98px) {
  .hero-slide-1 {
    background-image: url("../images/Slides/responsiveslide1.png");
  }

  .hero-slide-2 {
    background-image: url("../images/Slides/responsiveslide2.png");
  }

  .hero-slide-3 {
    background-image: url("../images/Slides/responsiveslide3.png");
  }
}

.hero-overlay {
  display: none !important;
}

/* Welcome section (Obul Reddy / Giridhar style) */
.welcome-section {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(194, 24, 91, 0.06), transparent 45%),
    radial-gradient(ellipse at 85% 10%, rgba(75, 163, 217, 0.08), transparent 40%);
  padding: 2.25rem 0 2rem;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.welcome-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.welcome-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
}

.welcome-title .line-magenta {
  display: block;
  color: var(--magenta);
}

.welcome-title .line-navy {
  display: block;
  color: var(--navy);
}

.welcome-location {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.welcome-text {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 34rem;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.highlight-section {
  background: transparent;
  padding: 3.25rem 0 3.5rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.highlight-card {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(194, 24, 91, 0.22);
  border-radius: 1.2rem;
  padding: 1.85rem 1.4rem 1.7rem;
  text-align: center;
  box-shadow:
    0 12px 30px rgba(11, 31, 74, 0.08),
    0 2px 0 rgba(194, 24, 91, 0.06);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  transform-origin: center center;
}

.highlight-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta-bright), var(--magenta), var(--navy));
}

.highlight-card:hover,
.highlight-card.reveal.visible:hover {
  transform: translateY(-6px);
  border-color: rgba(75, 163, 217, 0.7);
  box-shadow:
    0 18px 40px rgba(75, 163, 217, 0.18),
    0 2px 0 rgba(75, 163, 217, 0.12);
}

.highlight-card:hover::before,
.highlight-card.reveal.visible:hover::before {
  background: linear-gradient(90deg, var(--sky-light), var(--sky), var(--navy));
}

.highlight-card:hover .highlight-icon,
.highlight-card.reveal.visible:hover .highlight-icon {
  background: linear-gradient(145deg, rgba(75, 163, 217, 0.18), rgba(11, 31, 74, 0.08));
  color: var(--sky);
  border-color: rgba(75, 163, 217, 0.35);
}

.highlight-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(194, 24, 91, 0.12), rgba(11, 31, 74, 0.08));
  color: var(--magenta);
  font-size: 1.85rem;
  border: 1px solid rgba(194, 24, 91, 0.16);
}

.highlight-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
}

.highlight-card p {
  margin: 0;
  color: #5a6578;
  font-size: 0.92rem;
  line-height: 1.65;
}

.welcome-visual {
  position: relative;
  padding-top: 1.25rem;
}

.welcome-float {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  max-width: 230px;
  box-shadow: 0 10px 28px rgba(11, 31, 74, 0.08);
}

.welcome-float i,
.welcome-float-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  object-fit: contain;
}

.welcome-float i {
  background: linear-gradient(135deg, var(--magenta-bright), var(--magenta-dark));
  color: #fff;
}

.welcome-float-logo {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.2rem;
}

.welcome-float strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.2;
}

.welcome-float span {
  font-size: 0.75rem;
  color: var(--muted);
}

.welcome-panel {
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 31, 74, 0.08);
}

.welcome-panel-top {
  padding: 1.5rem 1.35rem 1.15rem;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.welcome-panel-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(11, 31, 74, 0.12);
}

.welcome-panel-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.welcome-panel-brand strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
}

.welcome-panel-brand span {
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 650;
}

.welcome-slogan {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.welcome-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.welcome-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.feat-icon.sky { background: var(--sky); }
.feat-icon.magenta { background: var(--magenta); }
.feat-icon.navy { background: var(--navy); }
.feat-icon.green { background: #2f9e6b; }

.welcome-panel-photo {
  height: clamp(200px, 28vw, 260px);
}

.welcome-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(11, 31, 74, 0.35);
  padding: 0;
  cursor: pointer;
  box-shadow: none;
}

.hero-dots button.active {
  background: var(--magenta-bright);
  border-color: #fff;
  transform: scale(1.15);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--magenta), var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-card .label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.35);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin: 0.75rem 0 0.85rem;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

.text-center .section-lead {
  margin-inline: auto;
}

/* Vision Mission */
.vm-section {
  background: transparent;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.vm-grid {
  margin-top: 1.75rem;
  row-gap: 1.5rem;
}

.vm-grid > [class*="col-"] {
  display: flex;
}

.vm-card {
  background: #fff;
  border: 1.5px solid rgba(11, 31, 74, 0.22);
  border-radius: 1.25rem;
  padding: 2.1rem 1.5rem 1.9rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11, 31, 74, 0.07);
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 163, 217, 0.65);
  box-shadow: 0 16px 36px rgba(11, 31, 74, 0.11);
}

.vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  font-size: 1.55rem;
}

.vm-icon.vision {
  background: rgba(75, 163, 217, 0.12);
  color: var(--sky);
}

.vm-icon.mission {
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta);
}

.vm-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
}

.vm-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #61708a;
}

.vm-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 100%;
  padding: 0.5rem;
}

.vm-center-badge {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(11, 31, 74, 0.08);
}

.vm-center img {
  width: 70px;
  animation: floatY 4s ease-in-out infinite;
}

.vm-center .care-label {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--navy);
}

.pulse-line {
  width: 88px;
  height: 22px;
  opacity: 0.8;
}

/* About split */
.about-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(75, 163, 217, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(194, 24, 91, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 248, 252, 0.88));
  padding-block: 2.4rem;
}

.about-grid {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 2rem;
}

.about-media {
  position: relative;
  padding: 0.9rem 0 0.9rem 0.9rem;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0.35rem 1.8rem 1.9rem 0;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(75, 163, 217, 0.12), rgba(194, 24, 91, 0.08));
  z-index: 0;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  object-fit: cover;
  border-radius: 1.9rem;
  border: 10px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 55px rgba(11, 31, 74, 0.16);
}

.about-float {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 230, 240, 0.95);
  border-radius: 1.15rem;
  padding: 1rem 1.15rem;
  box-shadow: 0 18px 38px rgba(11, 31, 74, 0.14);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 240px;
  animation: floatY 5s ease-in-out infinite;
}

.about-float.top {
  top: 1.45rem;
  left: -0.15rem;
}

.about-float.bottom {
  bottom: 1.85rem;
  right: -0.15rem;
  animation-delay: 1s;
}

.about-float i {
  width: 44px;
  height: 44px;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--magenta));
  color: #fff;
  flex-shrink: 0;
}

.about-float strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.about-float span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.about-content {
  width: 100%;
}

.about-content .section-badge {
  margin-bottom: 1rem;
}

.about-content .section-title {
  display: block;
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 3.7vw, 3rem);
  line-height: 1.08;
  max-width: none;
  width: 100%;
  color: var(--navy);
}

.about-content .text-muted {
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #61708a !important;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-weight: 650;
  color: var(--text);
}

.check-list li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta-bright), var(--magenta));
  color: #fff;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Speciality cards */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.45rem;
  margin-top: 2.5rem;
}

a.spec-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.spec-card {
  background: #fff;
  border: 2px solid rgba(75, 163, 217, 0.55);
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 31, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(11, 31, 74, 0.14);
  border-color: rgba(11, 31, 74, 0.45);
}

.spec-card .img-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--magenta-dark));
}

.spec-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 20, 51, 0.55) 100%);
  pointer-events: none;
}

.spec-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.spec-card:hover .img-wrap img {
  transform: scale(1.1);
}

.spec-card .img-wrap .icon-chip {
  position: absolute;
  bottom: -18px;
  left: 1.15rem;
  width: 48px;
  height: 48px;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #fff, #f3f8fc);
  border: 1px solid rgba(220, 229, 240, 0.95);
  box-shadow: 0 10px 22px rgba(11, 31, 74, 0.12);
  display: grid;
  place-items: center;
  color: var(--magenta);
  font-size: 1.2rem;
  z-index: 3;
}

.spec-card .body {
  padding: 2rem 1.3rem 1.45rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spec-card h3 {
  font-size: 1.18rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 750;
  line-height: 1.25;
}

.spec-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .spec-card .img-wrap {
    height: 170px;
  }
}

@media (max-width: 575.98px) {
  .spec-card .img-wrap {
    height: 180px;
  }

  .spec-card .body {
    padding: 1.85rem 1.15rem 1.3rem;
  }
}

/* Specialities page CTA */
.spec-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.45rem 1.65rem;
  color: #fff;
  background: linear-gradient(110deg, #0b1f4a 0%, #1a4a7a 48%, #2f7fb8 100%);
  box-shadow: 0 14px 34px rgba(11, 31, 74, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-cta-banner::before,
.spec-cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.spec-cta-banner::before {
  width: 180px;
  height: 180px;
  top: -80px;
  right: -40px;
  background: rgba(255, 255, 255, 0.08);
}

.spec-cta-banner::after {
  width: 120px;
  height: 120px;
  bottom: -60px;
  left: 40%;
  background: rgba(194, 24, 91, 0.12);
}

.spec-cta-banner .row {
  position: relative;
  z-index: 1;
}

.spec-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.spec-cta-banner h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
}

.spec-cta-banner p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 34rem;
}

.spec-cta-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.spec-cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 650;
  font-size: 0.9rem;
}

.spec-cta-phones a:hover {
  color: #d7ecf8;
}

.spec-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.spec-cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  font-weight: 750;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-cta-banner .btn-white:hover {
  transform: translateY(-2px);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.spec-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  font-size: 0.88rem;
}

.spec-cta-link:hover {
  color: #fff;
}

@media (min-width: 992px) {
  .spec-cta-actions {
    align-items: flex-end;
  }
}

@media (max-width: 767.98px) {
  .spec-cta-banner {
    padding: 1.25rem 1.1rem;
    border-radius: 1.1rem;
  }

  .spec-cta-actions {
    align-items: stretch;
  }

  .spec-cta-banner .btn-white {
    width: 100%;
  }
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(105deg, #091b43 0%, #123565 48%, #25679a 100%);
  border-radius: 0;
  padding: 2.2rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-banner > .container-site {
  position: relative;
  z-index: 1;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -130px;
  right: -60px;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto auto -70px 48%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(194, 24, 91, 0.08);
  filter: blur(4px);
}

.cta-copy {
  max-width: 40rem;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 0.45rem;
  position: relative;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 38rem;
  position: relative;
}

.cta-banner .btn-white {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  font-weight: 750;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  box-shadow: none;
  z-index: 1;
}

.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* Doctor cards */
.doctors-section {
  padding-block: 0;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.doc-card {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 179, 71, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 243, 0.98));
  border: 1.5px solid rgba(255, 136, 53, 0.72);
  border-radius: 2rem;
  padding: 1.6rem 1.35rem 1.4rem;
  text-align: center;
  box-shadow: 0 18px 44px rgba(29, 42, 79, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(29, 42, 79, 0.14);
}

.doc-card::after {
  content: "";
  position: absolute;
  right: 0.55rem;
  bottom: 0.3rem;
  width: 112px;
  height: 112px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cg stroke='%23f3bb8a' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' opacity='0.35'%3E%3Ccircle cx='36' cy='24' r='8'/%3E%3Ccircle cx='84' cy='24' r='8'/%3E%3Cpath d='M36 32v26c0 10 8 18 18 18h12c10 0 18-8 18-18V32'/%3E%3Cpath d='M60 76v16c0 7-6 13-13 13h-4'/%3E%3Cpath d='M60 76v16c0 7 6 13 13 13h4'/%3E%3Ccircle cx='39' cy='105' r='6'/%3E%3Ccircle cx='81' cy='105' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.doc-decor {
  display: none;
}

.doc-avatar-wrap {
  width: 176px;
  height: 176px;
  margin: 0 auto 1.15rem;
  padding: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(181, 167, 214, 0.95), rgba(235, 226, 250, 0.95));
  box-shadow: 0 10px 26px rgba(77, 60, 110, 0.12);
}

.doc-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin: 0 auto;
  background: linear-gradient(145deg, #5f6fb0, #b39ad7);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 3.35rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.doc-card h3 {
  font-size: 1.35rem;
  line-height: 1.24;
  margin: 0 0 0.55rem;
  color: #2c2746;
}

.doc-card .spec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe8d6, #ffe0ca);
  color: #ea6c00;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.doc-credentials {
  color: #756b91;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.doc-card p {
  color: #7a728f;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.doc-card .btn-outline-brand {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(202, 214, 230, 0.95);
}

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(120deg, rgba(6, 20, 51, 0.92), rgba(194, 24, 91, 0.75)),
    url("../images/Slides/Slide1.png") center/cover;
  color: #fff;
  padding: 1.85rem 0 1.5rem;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0;
}

.page-hero p {
  opacity: 0.9;
  margin: 0;
}

/* About banner + counters (one combined block) */
.about-highlight-block {
  background: transparent;
  padding-bottom: 2.5rem;
}

.about-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 5.5rem 0 6rem;
  overflow: visible;
}

.about-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 20, 51, 0.88), rgba(20, 60, 110, 0.78), rgba(194, 24, 91, 0.55)),
    url("../images/Slides/Slide1.png") center/cover;
  z-index: 0;
}

/* Home trust banner — slightly softer navy-to-magenta overlay */
body[data-page="home"] .home-trust-block {
  margin-top: 0.5rem;
  padding-bottom: 1.25rem;
}

body[data-page="home"] .home-trust-block .about-banner {
  min-height: clamp(220px, 28vw, 300px);
  padding: 3.25rem 0 4rem;
}

body[data-page="home"] .home-trust-block .about-banner-bg {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    url("../images/Slides/Slide1.png") center/cover no-repeat;
}

body[data-page="home"] .home-trust-block .about-banner-inner {
  max-width: 40rem;
}

body[data-page="home"] .home-trust-kicker {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-trust-quote {
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

body[data-page="home"] .home-trust-quote em {
  font-style: normal;
  font-weight: 700;
  color: #f4d5e3;
  white-space: nowrap;
}

body[data-page="home"] .home-trust-block .about-counters {
  padding-top: 3rem;
}

body[data-page="home"] .highlight-section {
  padding-top: 2.25rem;
}

.about-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.about-banner .breadcrumb-custom {
  justify-content: center;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}

.about-banner .breadcrumb-custom a {
  color: #fff;
}

.about-banner h1,
.about-banner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  line-height: 1.25;
  font-weight: 700;
}

.about-play-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 5;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background: transparent;
}

.about-play-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(75, 163, 217, 0.22);
}

.about-play-core {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ba3d9, #2f7fb8);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  box-shadow: 0 12px 28px rgba(47, 127, 184, 0.35);
  padding-left: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-play-btn:hover .about-play-core {
  transform: scale(1.06);
  box-shadow: 0 16px 32px rgba(47, 127, 184, 0.42);
  color: #fff;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.video-lightbox[hidden] {
  display: none !important;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.video-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 24px;
  display: grid;
  place-items: center;
}

.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

body.video-lightbox-open {
  overflow: hidden;
}

.about-counter-card {
  background: #fff;
  border: 1px solid rgba(220, 229, 240, 0.95);
  border-radius: 1rem;
  padding: 1.45rem 1rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 31, 74, 0.08);
  height: 100%;
}

.about-counter-card .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.about-counter-card .label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .about-banner {
    min-height: 300px;
    padding: 4rem 0 5rem;
  }

  .about-play-btn {
    width: 68px;
    height: 68px;
  }

  .about-play-core {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  .about-counters {
    padding: 2.85rem 0 0.25rem;
  }
}

/* About page split (below page hero) */
.about-page-split {
  padding-block: 3.25rem 3.5rem;
}

.about-counters {
  padding: 3.35rem 0 0.5rem;
  background: transparent;
}

.about-page-media {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(11, 31, 74, 0.12);
  border: 8px solid rgba(255, 255, 255, 0.85);
}

.about-page-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.about-page-content .section-badge {
  margin-bottom: 0.9rem;
}

.about-page-content h2 {
  margin: 0 0 0.9rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.about-page-content > p {
  margin: 0 0 1.2rem;
  color: #61708a;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-page-content .check-list {
  margin: 0 0 1.35rem;
}

.about-page-content .check-list li {
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #3d4d66;
}

.about-page-content .check-list li i {
  width: 18px;
  height: 18px;
  font-size: 0.52rem;
  margin-top: 0.18rem;
  background: linear-gradient(135deg, #7ec4eb, #5aa8d4);
  box-shadow: 0 4px 10px rgba(90, 168, 212, 0.2);
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-page-actions .btn-outline-brand,
.about-page-actions .btn-appointment-soft {
  font-size: 0.76rem;
  padding: 0.48rem 0.95rem;
}

.btn-appointment-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #6bb6de, #4ba3d9);
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 18px rgba(75, 163, 217, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-appointment-soft:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: linear-gradient(135deg, #5aa8d4, #3b94cb);
  box-shadow: 0 12px 22px rgba(75, 163, 217, 0.28);
}

.about-page-actions .btn-outline-brand {
  border-color: #c5d6e8;
  color: #3a5475;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
  .about-page-split {
    padding-block: 2.5rem;
  }

  .about-page-media img {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .about-page-media img {
    height: 250px;
  }

  .about-page-content h2 {
    font-size: 1.55rem;
  }
}

/* Our Vision & Journey ? About page carousel */
.vision-journey-section {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: transparent;
}

.vision-journey-section-title {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.vision-journey-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.5rem 1.35rem 1.65rem;
  height: 100%;
  overflow: hidden;
}

.vision-journey-card-accent {
  height: 3px;
  margin: -1.5rem -1.35rem 1.35rem -1.35rem;
  border-radius: 11px 11px 0 0;
  background: linear-gradient(
    to right,
    var(--sky) 0%,
    var(--sky) 50%,
    var(--navy) 50%,
    var(--navy) 100%
  );
}

.vision-journey-card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.85rem;
}

.vision-journey-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 0;
}

.vision-journey-card-text strong {
  color: #334155;
  font-weight: 600;
}

.vision-journey-section .carousel-vision-journey {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
}

.vision-journey-section .carousel-vision-journey .owl-stage {
  display: flex;
}

.vision-journey-section .carousel-vision-journey .owl-item {
  display: flex;
  opacity: 1 !important;
}

.vision-journey-section .carousel-vision-journey .item {
  width: 100%;
  display: flex;
}

.vision-journey-section .carousel-vision-journey .owl-nav {
  margin-top: 0;
}

.vision-journey-section .carousel-vision-journey .owl-nav .owl-prev,
.vision-journey-section .carousel-vision-journey .owl-nav .owl-next,
.vision-journey-section .carousel-vision-journey:hover .owl-nav .owl-prev,
.vision-journey-section .carousel-vision-journey:hover .owl-nav .owl-next {
  opacity: 1 !important;
}

.vision-journey-section .carousel-vision-journey .owl-nav button.owl-prev,
.vision-journey-section .carousel-vision-journey .owl-nav button.owl-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  color: #94a3b8 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.vision-journey-section .carousel-vision-journey .owl-nav button.owl-prev:hover,
.vision-journey-section .carousel-vision-journey .owl-nav button.owl-next:hover {
  color: var(--navy) !important;
  background: transparent !important;
}

.vision-journey-section .carousel-vision-journey .owl-nav .owl-prev,
.vision-journey-section .carousel-vision-journey:hover .owl-nav .owl-prev {
  left: 0 !important;
}

.vision-journey-section .carousel-vision-journey .owl-nav .owl-next,
.vision-journey-section .carousel-vision-journey:hover .owl-nav .owl-next {
  right: 0 !important;
}

.vision-journey-section .carousel-vision-journey .owl-dots {
  text-align: center;
  margin-top: 1.25rem;
}

.vision-journey-section .carousel-vision-journey .owl-dots .owl-dot {
  width: auto;
  height: auto;
  margin: 0 3px;
  background: transparent !important;
  border: none;
}

.vision-journey-section .carousel-vision-journey .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 5px;
  background: #cbd5e1 !important;
  display: block;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.vision-journey-section .carousel-vision-journey .owl-dots .owl-dot.active span,
.vision-journey-section .carousel-vision-journey .owl-dots .owl-dot:hover span {
  background: var(--sky) !important;
}

@media (max-width: 575.98px) {
  .vision-journey-section {
    padding: 2.75rem 0 3.25rem;
  }

  .vision-journey-section .carousel-vision-journey {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* About ? Infrastructure collage */
.infra-section {
  padding: 1.75rem 0 2rem;
  background: transparent;
}

.infra-collage {
  position: relative;
  width: min(880px, 100%);
  height: 460px;
  margin: 0 auto 1.5rem;
}

.infra-circle {
  position: absolute;
  border: none;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3px rgba(194, 24, 91, 0.32),
    0 10px 26px rgba(11, 31, 74, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.infra-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
  z-index: 2;
}

.infra-circle:hover,
.infra-circle:focus-visible {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(194, 24, 91, 0.42),
    0 14px 30px rgba(11, 31, 74, 0.16);
}

.infra-circle:focus-visible {
  outline: 3px solid rgba(75, 163, 217, 0.45);
  outline-offset: 4px;
}

.infra-circle-lens {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 31, 74, 0.42);
  color: #fff;
  font-size: 1.45rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 3;
}

.infra-circle:hover .infra-circle-lens,
.infra-circle:focus-visible .infra-circle-lens {
  opacity: 1;
}

.infra-circle-soft:hover,
.infra-circle-soft:focus-visible {
  transform: scale(1.05);
}

.infra-circle-soft {
  width: 152px;
  height: 152px;
  top: 4%;
  left: 6%;
  z-index: 1;
}

.infra-circle-bl:hover,
.infra-circle-bl:focus-visible,
.infra-circle-br:hover,
.infra-circle-br:focus-visible,
.infra-circle-tr:hover,
.infra-circle-tr:focus-visible {
  transform: scale(1.05);
}

.infra-circle-bl {
  width: 168px;
  height: 168px;
  left: 4%;
  bottom: 6%;
  z-index: 2;
}

.infra-circle-center {
  width: 260px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgba(194, 24, 91, 0.34),
    0 14px 32px rgba(11, 31, 74, 0.14);
}

.infra-circle-center:hover,
.infra-circle-center:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
}

.infra-circle-center.infra-circle-photo {
  padding: 0;
}

.infra-circle-tr {
  width: 152px;
  height: 152px;
  top: 2%;
  right: 11%;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0;
}

.infra-circle-tr.infra-circle-photo {
  background: #fff;
  padding: 0;
}

.infra-circle-tr.infra-circle-photo img {
  filter: none;
  max-width: none;
}

.infra-circle-br {
  width: 176px;
  height: 176px;
  right: 5%;
  bottom: 8%;
  z-index: 2;
}

.infra-circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.infra-circle-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.infra-circle-tr img {
  filter: brightness(0) invert(1);
  max-width: 70%;
}

.infra-copy {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
  padding-inline: 0.5rem;
}

.infra-image-modal .modal-dialog {
  max-width: 520px;
}

.infra-image-modal .modal-content {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.infra-image-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11, 31, 74, 0.2);
}

.infra-image-modal-ring {
  width: min(78vw, 420px);
  height: min(78vw, 420px);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgba(194, 24, 91, 0.4),
    0 18px 40px rgba(11, 31, 74, 0.28);
}

.infra-image-modal-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.infra-image-modal-caption {
  margin: 1.1rem auto 0;
  max-width: 26rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 575.98px) {
  .infra-image-modal-ring {
    width: min(84vw, 320px);
    height: min(84vw, 320px);
  }

  .infra-image-modal-close {
    top: 0.25rem;
    right: 0.25rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 991.98px) {
  .infra-section {
    padding: 1.4rem 0 1.75rem;
  }

  .infra-collage {
    width: min(680px, 100%);
    height: 400px;
    margin-bottom: 1.25rem;
  }

  .infra-circle-soft {
    width: 120px;
    height: 120px;
    left: 5%;
  }

  .infra-circle-bl {
    width: 132px;
    height: 132px;
  }

  .infra-circle-center {
    width: 210px;
    height: 210px;
    padding: 1.15rem;
  }

  .infra-circle-tr {
    width: 120px;
    height: 120px;
    right: 9%;
    padding: 1rem;
  }

  .infra-circle-br {
    width: 138px;
    height: 138px;
  }
}

@media (max-width: 767.98px) {
  .infra-section {
    padding: 1.15rem 0 1.5rem;
  }

  .infra-collage {
    height: 310px;
    width: min(100%, 480px);
    margin-bottom: 1.1rem;
  }

  .infra-circle-soft {
    width: 88px;
    height: 88px;
    top: 4%;
    left: 4%;
  }

  .infra-circle-bl {
    width: 100px;
    height: 100px;
    left: 3%;
    bottom: 6%;
  }

  .infra-circle-center {
    width: 158px;
    height: 158px;
    padding: 0.9rem;
    border-width: 5px;
  }

  .infra-circle-tr {
    width: 88px;
    height: 88px;
    top: 3%;
    right: 5%;
    padding: 0.75rem;
    border-width: 4px;
  }

  .infra-circle-br {
    width: 104px;
    height: 104px;
    right: 3%;
    bottom: 5%;
  }

  .infra-copy {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

@media (max-width: 479.98px) {
  .infra-section {
    padding: 0.9rem 0 1.25rem;
  }

  .infra-collage {
    height: 255px;
    margin-bottom: 0.95rem;
  }

  .infra-circle-soft {
    width: 68px;
    height: 68px;
    left: 2%;
  }

  .infra-circle-bl {
    width: 80px;
    height: 80px;
    left: 1%;
  }

  .infra-circle-center {
    width: 128px;
    height: 128px;
    padding: 0.7rem;
    border-width: 4px;
  }

  .infra-circle-tr {
    width: 68px;
    height: 68px;
    right: 2%;
  }

  .infra-circle-br {
    width: 84px;
    height: 84px;
    right: 1%;
  }

  .infra-copy {
    font-size: 0.86rem;
  }
}

/* About ? Why Choose Us */
.why-choose-section {
  padding: 3rem 0 4.25rem;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(75, 163, 217, 0.1), transparent 42%),
    radial-gradient(ellipse at 88% 75%, rgba(194, 24, 91, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(236, 244, 250, 0.72), rgba(247, 250, 253, 0.55));
}

.why-choose-head {
  margin-bottom: 2.35rem;
}

.why-choose-head .section-badge {
  margin-bottom: 0.85rem;
}

.why-choose-head h2 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.why-choose-lead {
  margin: 0 auto;
  max-width: 28rem;
  color: #6b7a8d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(75, 163, 217, 0.45);
  border-radius: 1.35rem;
  box-shadow: 0 12px 32px rgba(11, 31, 74, 0.07);
  padding: 1.85rem 1.35rem 1.9rem;
  height: 100%;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--sky), var(--navy));
  opacity: 0.85;
  border-radius: 4px 0 0 4px;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(11, 31, 74, 0.35);
  box-shadow: 0 18px 40px rgba(11, 31, 74, 0.11);
}

.why-choose-icon {
  width: 54px;
  height: 54px;
  margin: 0 0 1.05rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.why-choose-icon.tone-sky {
  background: rgba(75, 163, 217, 0.16);
  color: #2f7fb8;
}

.why-choose-icon.tone-magenta {
  background: rgba(194, 24, 91, 0.12);
  color: var(--magenta);
}

.why-choose-icon.tone-navy {
  background: rgba(11, 31, 74, 0.1);
  color: var(--navy);
}

.why-choose-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.why-choose-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 767.98px) {
  .why-choose-section {
    padding: 2.25rem 0 3.25rem;
  }

  .why-choose-head {
    margin-bottom: 1.6rem;
  }

  .why-choose-card {
    text-align: center;
    padding-inline: 1.25rem;
  }

  .why-choose-card::before {
    width: 100%;
    height: 3px;
    border-radius: 0;
  }

  .why-choose-icon {
    margin-inline: auto;
  }
}

/* About ? Patient Voices */
.patient-voices-section {
  --pv-teal: #157367;
  --pv-text: #4a5563;
  --pv-muted: #8e9aaf;
  --pv-card: #f3f7f9;
  --pv-border: #d7e0e8;
  padding: 1.5rem 0 4rem;
  background: transparent;
}

.patient-appreciate-card {
  border: 2px dashed #7aa8a0;
  border-radius: 1rem;
  background: #fff;
  padding: 1.55rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
}

.patient-appreciate-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.patient-appreciate-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pv-teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.patient-appreciate-head h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pv-teal);
}

.patient-appreciate-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
}

.patient-appreciate-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.85rem;
  color: var(--pv-text);
  font-size: 0.94rem;
  line-height: 1.65;
}

.patient-appreciate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pv-teal);
}

.patient-appreciate-list li strong {
  color: #2d3748;
  font-weight: 700;
}

.patient-appreciate-note {
  margin: 0;
  color: var(--pv-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.patient-voices-panel {
  display: flex;
  flex-direction: column;
}

.patient-voices-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv-teal);
}

.patient-voice-card {
  margin: 0;
  height: 100%;
  background: var(--pv-card);
  border: 1.5px solid #9bb8c4;
  border-radius: 0.85rem;
  padding: 1.15rem 1.2rem 1.1rem;
}

.patient-voice-quote {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 0.75;
  color: var(--pv-teal);
  margin-bottom: 0.4rem;
}

.patient-voice-card p {
  margin: 0 0 0.75rem;
  color: var(--pv-text);
  font-size: 0.94rem;
  line-height: 1.65;
  font-style: italic;
}

.patient-voice-card footer {
  color: var(--pv-muted);
  font-size: 0.84rem;
  font-style: normal;
}

@media (max-width: 991.98px) {
  .patient-voices-section {
    padding: 1.25rem 0 3.25rem;
  }
}

@media (max-width: 767.98px) {
  .patient-voices-section {
    padding: 1rem 0 2.75rem;
  }

  .patient-appreciate-card {
    padding: 1.25rem 1.1rem 1.15rem;
  }
}

/* Doctor profile page */
.doctor-profile-section {
  padding: 2.25rem 0 3.25rem;
  background: transparent;
}

.doctor-profile-intro {
  margin-bottom: 2rem;
}

.doctor-profile-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(75, 163, 217, 0.14);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.doctor-profile-name {
  margin: 0 0 0.55rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
}

.doctor-profile-name .name-dark {
  color: var(--navy);
}

.doctor-profile-name .name-accent {
  color: var(--magenta);
  display: inline;
}

.doctor-profile-tagline {
  margin: 0 auto;
  max-width: 36rem;
  color: #64748b;
  font-size: 0.98rem;
}

.doctor-profile-media {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
}

.doctor-profile-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(11, 31, 74, 0.14);
  display: block;
}

.doctor-profile-logo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 31, 74, 0.14);
  display: grid;
  place-items: center;
  padding: 0.55rem;
  z-index: 2;
}

.doctor-profile-logo-badge img {
  width: 100%;
  height: auto;
}

.doctor-profile-exp {
  position: absolute;
  right: 1rem;
  bottom: 1.15rem;
  background: linear-gradient(105deg, var(--magenta), var(--navy));
  color: #fff;
  border-radius: 0.9rem;
  padding: 0.7rem 1rem;
  box-shadow: 0 12px 28px rgba(11, 31, 74, 0.22);
  min-width: 118px;
}

.doctor-profile-exp .exp-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.doctor-profile-exp .exp-label {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.2rem;
  opacity: 0.95;
  line-height: 1.3;
}

.doctor-profile-content .doctor-profile-badge {
  margin-bottom: 0.75rem;
}

.doctor-profile-content h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.2;
}

.doctor-profile-content > p {
  margin: 0 0 1.35rem;
  color: #61708a;
  font-size: 0.96rem;
  line-height: 1.7;
}

.doctor-qual-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.doctor-qual-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  background: #fff;
  border: 1.5px solid rgba(75, 163, 217, 0.4);
  border-radius: 1rem;
  padding: 0.55rem 1rem;
  box-shadow: 0 8px 22px rgba(11, 31, 74, 0.05);
}

.doctor-qual-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(194, 24, 91, 0.12);
  color: var(--magenta);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.doctor-qual-card h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.doctor-qual-card p {
  margin: 0;
  color: #7a8798;
  font-size: 0.82rem;
  line-height: 1.4;
}

.doctor-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.doctor-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.doctor-stats-section {
  padding: 0 0 3rem;
}

.doctor-stat-card {
  background: #fff;
  border: 1.5px solid rgba(75, 163, 217, 0.42);
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(11, 31, 74, 0.06);
  text-align: center;
  padding: 1rem 0.75rem;
  height: 100%;
}

.doctor-stat-card .stat-value {
  color: var(--magenta);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.doctor-stat-card .stat-label {
  color: #6b7a8d;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .doctor-stats-section {
    padding-bottom: 2.35rem;
  }

  .doctor-stat-card {
    padding: 0.85rem 0.55rem;
  }

  .doctor-stat-card .stat-label {
    font-size: 0.8rem;
  }
}

.doctor-expertise-section {
  padding: 1.25rem 0 3rem;
  background: transparent;
}

.doctor-expertise-head {
  margin-bottom: 1.75rem;
}

.doctor-expertise-head .doctor-profile-badge {
  margin-bottom: 0.7rem;
}

.doctor-expertise-head h2 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.doctor-expertise-head p {
  margin: 0 auto;
  max-width: 34rem;
  color: #6b7a8d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.doctor-expertise-card {
  background: #fff;
  border: 1.5px solid rgba(75, 163, 217, 0.38);
  border-radius: 1.15rem;
  box-shadow: 0 10px 26px rgba(11, 31, 74, 0.05);
  padding: 1.25rem 1.2rem 1.3rem;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.doctor-expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 31, 74, 0.09);
}

.doctor-expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta);
  font-size: 1.2rem;
}

.doctor-expertise-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
}

.doctor-expertise-card p {
  margin: 0;
  color: #6b7a8d;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .doctor-expertise-section {
    padding: 0.75rem 0 2.5rem;
  }

  .doctor-expertise-head {
    margin-bottom: 1.35rem;
  }

  .doctor-expertise-card {
    padding: 1.1rem 1.05rem 1.15rem;
  }
}

.doctor-care-section {
  --care-accent: #a3144d;
  --care-accent-soft: rgba(163, 20, 77, 0.1);
  --care-accent-bright: #b81d58;
  --care-accent-dark: #8a1040;
  --care-accent-icon: #d48aa8;
  padding: 2rem 0 3.5rem;
}

.doctor-care-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--care-accent-soft);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.doctor-care-copy h2 {
  margin: 0 0 0.9rem;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.18;
  max-width: 18ch;
}

.doctor-care-copy > p {
  margin: 0 0 1.45rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 36rem;
}

.doctor-care-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.doctor-care-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.doctor-care-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--care-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.doctor-care-card {
  background: var(--navy);
  color: #fff;
  border-radius: 1.75rem;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 55px rgba(11, 31, 74, 0.22);
  max-width: 420px;
  margin-left: auto;
}

.doctor-care-card-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.doctor-care-card-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 0.5rem;
}

.doctor-care-card-brand .brand-name {
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.2;
}

.doctor-care-card-brand .brand-sub {
  font-size: 0.86rem;
  opacity: 0.88;
  margin-top: 0.1rem;
}

.doctor-care-card h3 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
}

.doctor-care-contact {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.doctor-care-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.05rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.doctor-care-contact i {
  color: var(--care-accent-icon);
  font-size: 1.05rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.doctor-care-contact a {
  color: rgba(255, 255, 255, 0.94);
  word-break: break-word;
}

.doctor-care-contact a:hover {
  color: #fff;
}

.btn-care-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 170px;
  max-width: 100%;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(105deg, var(--care-accent-bright), var(--care-accent-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 22px rgba(163, 20, 77, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-care-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(163, 20, 77, 0.35);
  color: #fff !important;
}

/* Our Team page */
.team-hero-section {
  padding: 2rem 0 1.25rem;
  background:
    radial-gradient(ellipse at 12% 40%, rgba(194, 24, 91, 0.08), transparent 45%),
    radial-gradient(ellipse at 88% 30%, rgba(75, 163, 217, 0.1), transparent 42%);
}

.team-hero-title {
  margin: 0.15rem 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.team-hero-title .accent {
  color: var(--magenta);
}

.team-hero-lead {
  margin: 0 auto;
  max-width: 38rem;
  color: #6b7a8d;
  font-size: 0.98rem;
  line-height: 1.7;
}

.team-overview-section {
  padding: 0.75rem 0 2rem;
}

.team-overview-card {
  background: rgba(255, 244, 248, 0.85);
  border: 1.5px solid rgba(194, 24, 91, 0.28);
  border-radius: 1.5rem;
  padding: 1.75rem 1.65rem;
  box-shadow: 0 12px 32px rgba(11, 31, 74, 0.06);
}

.team-overview-card h2 {
  margin: 0.55rem 0 0.75rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.25;
}

.team-overview-card > .row > .col-lg-6 > p {
  margin: 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.7;
}

.team-overview-list {
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border-radius: 1.1rem;
  border: 1px solid rgba(220, 229, 240, 0.95);
}

.team-overview-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: #3d4d66;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.team-overview-list li:last-child {
  margin-bottom: 0;
}

.team-overview-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  flex-shrink: 0;
}

.team-doctors-section {
  padding: 0.5rem 0 3.5rem;
}

.team-doctor-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 55%);
  border: 1.5px solid rgba(194, 24, 91, 0.28);
  border-radius: 1.5rem;
  padding: 1.75rem 1.45rem 1.55rem;
  box-shadow: 0 14px 36px rgba(11, 31, 74, 0.07);
  overflow: hidden;
  text-align: left;
}

.team-doctor-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 18px solid rgba(194, 24, 91, 0.06);
  pointer-events: none;
}

.team-doctor-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(194, 24, 91, 0.45);
  box-shadow: 0 10px 24px rgba(11, 31, 74, 0.12);
}

.team-doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-doctor-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 750;
  text-align: center;
}

.team-doctor-role {
  text-align: center;
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.team-doctor-qual {
  margin: 0 0 1rem;
  color: #6b7a8d;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

.team-doctor-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.team-doctor-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: #5a6a7d;
  font-size: 0.88rem;
  font-weight: 550;
}

.team-doctor-points i {
  color: var(--magenta);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.team-doctor-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .team-hero-section {
    padding: 1.75rem 0 1.15rem;
  }

  .team-overview-card {
    padding: 1.35rem 1.15rem;
  }

  .team-doctors-section {
    padding-bottom: 2.75rem;
  }

  .team-doctor-card {
    padding: 1.45rem 1.15rem 1.35rem;
  }

  .team-doctor-photo {
    width: 118px;
    height: 118px;
  }
}

.team-features-section {
  padding: 0 0 3.5rem;
}

.team-features-head {
  margin-bottom: 1.75rem;
}

.team-features-head h2 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.team-features-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: #6b7a8d;
  font-size: 0.95rem;
  line-height: 1.65;
}

.team-feature-card {
  background: #fff;
  border: 1.5px solid rgba(75, 163, 217, 0.28);
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(11, 31, 74, 0.06);
  padding: 1.45rem 1.15rem 1.4rem;
  height: 100%;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 31, 74, 0.1);
}

.team-feature-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.85rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: rgba(75, 163, 217, 0.14);
  color: #2f7fb8;
  font-size: 1.2rem;
}

.team-feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 750;
  color: var(--navy);
}

.team-feature-card p {
  margin: 0;
  color: #6b7a8d;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .team-features-section {
    padding-bottom: 2.75rem;
  }

  .team-features-head {
    margin-bottom: 1.35rem;
  }

  .team-feature-card {
    padding: 1.25rem 1.05rem 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .doctor-care-card {
    max-width: none;
    margin-left: 0;
  }

  .doctor-care-copy h2 {
    max-width: none;
  }

  .btn-care-book {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .doctor-care-section {
    padding: 1.25rem 0 2.5rem;
  }

  .doctor-care-card {
    padding: 1.5rem 1.25rem 1.35rem;
    border-radius: 1.4rem;
  }

  .doctor-care-copy h2 {
    font-size: 1.7rem;
  }

  .doctor-care-list li {
    font-size: 0.94rem;
  }

  .doctor-care-list .check {
    width: 20px;
    height: 20px;
    font-size: 0.58rem;
  }
}

@media (max-width: 991.98px) {
  .doctor-profile-section {
    padding: 1.75rem 0 2.75rem;

  }

  .doctor-profile-photo {
    height: 460px;
  }
}

@media (max-width: 767.98px) {
  .doctor-profile-section {
    padding: 1.35rem 0 2.35rem;
  }

  .doctor-profile-intro {
    margin-bottom: 1.5rem;
  }

  .doctor-profile-name .name-accent {
    display: block;
  }

  .doctor-profile-photo {
    height: 380px;
  }

  .doctor-profile-logo-badge {
    width: 54px;
    height: 54px;
  }

  .doctor-profile-actions {
    flex-direction: column;
  }

  .doctor-profile-actions .btn-solid-brand,
  .doctor-profile-actions .btn-outline-brand {
    width: 100%;
    justify-content: center;
  }
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.breadcrumb-custom a:hover {
  color: var(--sky-light);
}

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-control-custom,
.form-select-custom {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-custom:focus,
.form-select-custom:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(75, 163, 217, 0.18);
}

.form-label-custom {
  font-weight: 650;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  display: block;
}

/* Contact message form (reference layout, brand colors) */
.contact-form-card {
  border-radius: 1rem;
  border: 1px solid #d8d8d8;
  border-top: 3px solid var(--magenta);
  box-shadow: 0 4px 24px rgba(11, 31, 74, 0.07);
  padding: 2rem;
}

.contact-form-title {
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-message-form {
  display: grid;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-message-form .form-control-custom {
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  box-shadow: none;
}

.contact-message-form .form-control-custom::placeholder {
  color: #aaa;
}

.contact-message-form .form-control-custom:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.12);
}

.contact-message-form .form-control-custom.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.contact-error {
  display: none;
  color: #dc3545;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-field.is-invalid .contact-error {
  display: block;
}

.contact-message-form textarea.form-control-custom {
  min-height: 140px;
  resize: vertical;
}

.contact-send-btn {
  display: block;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta-bright), var(--magenta));
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(194, 24, 91, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.contact-send-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(194, 24, 91, 0.32);
  filter: brightness(1.03);
}

#contact-alert {
  margin-bottom: 0.25rem;
}

@media (max-width: 575.98px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.35rem 1.15rem;
  }
}

/* Contact info cards (legacy tiles) */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.contact-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: transform var(--transition);
}

.contact-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-tile i {
  width: 46px;
  height: 46px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(75, 163, 217, 0.15), rgba(194, 24, 91, 0.12));
  color: var(--magenta);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-tile strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-tile span,
.contact-tile a {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== Contact page (reference layout) ===== */
.contact-hero {
  padding: 2.4rem 0 2.1rem;
  text-align: center;
  background:
    linear-gradient(rgba(255, 248, 251, 0.82), rgba(255, 255, 255, 0.82)),
    url("../images/header-pattern.svg"),
    radial-gradient(circle at top left, rgba(194, 24, 91, 0.1), transparent 34%),
    radial-gradient(circle at right center, rgba(75, 163, 217, 0.12), transparent 32%),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, 160px 160px, auto, auto, auto;
}

.contact-hero-title {
  margin: 0.85rem auto 0;
  max-width: 18em;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.3;
}

.contact-hero-title span {
  color: var(--magenta);
}

.contact-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-hero-stats > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border: 1.5px solid rgba(194, 24, 91, 0.22);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(11, 31, 74, 0.08);
}

.contact-hero-stats i {
  color: var(--magenta);
  font-size: 1rem;
}

.contact-hero-stats a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.contact-locations-section {
  position: relative;
  padding: 2.4rem 0 2.2rem;
  background:
    linear-gradient(rgba(255, 248, 251, 0.8), rgba(243, 248, 252, 0.8)),
    url("../images/header-pattern.svg"),
    linear-gradient(135deg, #fff8fb 0%, #f3f8fc 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 160px 160px, auto;
}

.contact-locations-section .section-lead {
  max-width: 40rem;
}

.contact-location-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1.5px solid rgba(194, 24, 91, 0.14);
  box-shadow: 0 4px 24px rgba(11, 31, 74, 0.07);
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(11, 31, 74, 0.12);
  border-color: rgba(194, 24, 91, 0.3);
}

.clc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.clc-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(194, 24, 91, 0.12);
  letter-spacing: -0.04em;
}

.contact-location-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(194, 24, 91, 0.08);
  border-radius: 999px;
  padding: 0.22rem 0.9rem;
  border: 1px solid rgba(194, 24, 91, 0.2);
}

.clc-body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.clc-icon-wrap {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #fff8fb, #f3f8fc);
  border: 1.5px solid rgba(194, 24, 91, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.clc-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clc-info h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.clc-info {
  min-width: 0;
}

.clc-info p {
  margin: 0;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.clc-info p i {
  color: var(--magenta);
  margin-right: 0.3rem;
}

.clc-info p a {
  color: inherit;
  text-decoration: none;
}

.clc-info p a:hover {
  color: var(--magenta);
}

.contact-location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--magenta);
  border: 1.5px solid var(--magenta);
  border-radius: 999px;
  padding: 0.38rem 1.1rem;
  transition: background 0.22s ease, color 0.22s ease;
}

.contact-location-link:hover {
  background: var(--magenta);
  color: #fff;
}

.contact-main-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    url("../images/header-pattern.svg");
  background-repeat: repeat, repeat;
  background-size: auto, 160px 160px;
  padding: 3.5rem 0 2.5rem;
}

.contact-info-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #d8d8d8;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-info-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #f0eaf8;
}

.contact-info-kicker {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}

.contact-info-header h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.cdl-cards {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cdl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cdl-card:hover {
  border-color: var(--magenta);
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.1);
}

.cdl-card-left {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.cdl-card-left > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.cdl-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  background: rgba(75, 163, 217, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdl-icon i {
  color: var(--navy);
  font-size: 1rem;
}

.cdl-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a1a2e;
}

.contact-info-card,
.contact-form-card {
  min-width: 0;
}

.cdl-card span {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cdl-card span a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.cdl-card span a:hover {
  color: var(--sky);
  text-decoration: underline;
}

.cdl-action-btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid rgba(75, 163, 217, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cdl-action-btn:hover {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}

.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.25rem;
}

.contact-social-row a {
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-social-row a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-social-row a[aria-label="Facebook"] { color: #1877f2; }
.contact-social-row a[aria-label="WhatsApp"] { color: #25d366; }
.contact-social-row a[aria-label="Instagram"] { color: #e1306c; }
.contact-social-row a[aria-label="YouTube"] { color: #ff0000; }

.contact-map-section {
  background:
    linear-gradient(rgba(255, 248, 251, 0.8), rgba(243, 248, 252, 0.8)),
    url("../images/header-pattern.svg"),
    linear-gradient(135deg, #fff8fb 0%, #f3f8fc 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 160px 160px, auto;
  padding: 1.5rem 0 3.5rem;
}

.contact-map-section .section-lead {
  max-width: 40rem;
}

.map-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 2px solid #d8d8d8;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 991.98px) {
  .contact-hero {
    padding: 1.75rem 0 1.5rem;
  }

  .contact-locations-section {
    padding: 2rem 0 1.75rem;
  }

  .contact-main-section {
    padding: 2.5rem 0 2rem;
  }

  .contact-map-section {
    padding: 1.25rem 0 2.5rem;
  }

  .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    padding: 1.4rem 0 1.15rem;
  }

  .contact-hero-title {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
    max-width: 14em;
  }

  .contact-hero-stats {
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .contact-hero-stats > div {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.86rem;
  }

  .contact-locations-section {
    padding: 1.75rem 0 1.5rem;
  }

  .contact-location-card {
    padding: 1.25rem 1.1rem;
    border-radius: 1rem;
  }

  .clc-body {
    gap: 0.85rem;
    margin-bottom: 1.1rem;
  }

  .clc-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .clc-info h3 {
    font-size: 1.02rem;
  }

  .contact-main-section {
    padding: 2rem 0 1.75rem;
  }

  .contact-main-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-main-section .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .cdl-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
  }

  .cdl-action-btn {
    align-self: stretch;
    text-align: center;
    padding: 0.45rem 0.9rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.25rem 1.1rem;
    border-radius: 1rem;
  }

  .contact-info-header h2 {
    font-size: 1.2rem;
  }

  .contact-form-title {
    font-size: 1.1rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-message-form .form-control-custom {
    font-size: 16px;
    padding: 0.8rem 0.95rem;
  }

  .contact-message-form textarea.form-control-custom {
    min-height: 120px;
  }

  .map-frame {
    border-radius: 1rem;
  }

  .map-frame iframe {
    min-height: 280px;
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero {
    padding: 1.15rem 0 1rem;
  }

  .contact-hero-stats > div {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }

  .contact-locations-section,
  .contact-main-section,
  .contact-map-section {
    padding-top: 1.35rem;
  }

  .contact-locations-section {
    padding-bottom: 1.25rem;
  }

  .contact-main-section {
    padding-bottom: 1.35rem;
  }

  .contact-map-section {
    padding-bottom: 2rem;
  }

  .contact-location-card {
    padding: 1.1rem 0.95rem;
  }

  .clc-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-location-link {
    width: 100%;
    justify-content: center;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.1rem 0.95rem;
  }

  .contact-info-header {
    margin-bottom: 1.15rem;
    padding-bottom: 0.85rem;
  }

  .cdl-card-left {
    gap: 0.7rem;
  }

  .cdl-icon {
    width: 36px;
    height: 36px;
  }

  .contact-send-btn {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .map-frame iframe {
    min-height: 240px;
    height: 240px;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 74, 0.55), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 0 1.15rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 252, 250, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%),
    url("../images/header-pattern.svg");
  background-repeat: repeat;
  background-size: 220px auto;
}

.inner-hero-title {
  max-width: 18em;
  margin: 0.85rem auto 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.inner-hero-title span {
  color: var(--orange);
  white-space: nowrap;
}

.inner-hero .section-copy {
  max-width: 40rem;
  margin: 0.65rem auto 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.65;
}

.gallery-section {
  padding: 0 0 3.5rem;
}

.gallery-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 1240px;
}

.gallery-tabs {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0.2rem;
  margin-inline: auto;
  margin-bottom: 0;
  padding: 0.18rem;
  border: 1.5px solid #9aa3ad;
  border-radius: 12px;
  background: #f3f5f7;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 6px 14px rgba(11, 31, 74, 0.08);
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 6.5rem;
  padding: 0.38rem 0.95rem;
  border: 0;
  border-radius: 9px;
  color: #5c6570;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-tab i {
  font-size: 0.95rem;
  line-height: 1;
}

.gallery-tab:hover {
  color: #4a2c84;
  background: rgba(255, 255, 255, 0.7);
}

.gallery-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #f47c20 0%, #e86a12 100%);
  box-shadow: 0 6px 14px rgba(244, 124, 32, 0.28);
}

.gallery-tab.active:hover {
  color: #fff;
  background: linear-gradient(135deg, #f58935 0%, #f47c20 100%);
}

.gallrow {
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem 0;
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.gallery_box .box {
  background: linear-gradient(to right, #4a2c84, #f47c20);
  text-align: center;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: auto;
  margin-bottom: 0;
}

.gallery_box .box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: all 0.6s ease 0s;
}

.gallery_box .box:hover img {
  opacity: 0.3;
  transform: scale(1.12);
  transform-origin: center;
}

.gallery_box .box-content {
  color: #fff;
  width: 85%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: all 0.35s ease 0.1s;
  pointer-events: none;
}

.gallery_box .box:hover .box-content {
  opacity: 1;
  pointer-events: auto;
}

.gallery_box .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gallery_box .box .icon li {
  margin: 0;
  display: inline-block;
}

.gallery_box .box .icon li a {
  color: #4a2c84;
  background: #fff;
  font-size: 1rem;
  line-height: 2.1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery_box .box .icon li a:hover {
  color: #fff;
  background: transparent;
  box-shadow: 0 0 0 2px #fff;
}

.videos_list {
  width: 100%;
  border: 1px solid #c8c8c8;
  background: #111;
  border-radius: 0;
  overflow: hidden;
}

.videos_list iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 160px;
  border: 0;
}

.videos_list-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  aspect-ratio: 16 / 9;
  min-height: 160px;
  padding: 1rem;
  background: linear-gradient(160deg, #2a173d 0%, #1d102d 55%, #3a2048 100%);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.videos_list-placeholder i {
  font-size: 2.1rem;
  color: #ff0033;
  line-height: 1;
}

.videos_list-placeholder span {
  font-size: 0.88rem;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .gallery-section .container {
    max-width: 100%;
    padding-inline: 1rem;
  }

  .gallery_box .box img {
    height: 160px;
  }

  .gallrow {
    margin-top: 1.1rem;
    padding: 1.5rem 0.75rem 0;
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .inner-hero {
    padding: 1.15rem 0 1rem;
  }

  .inner-hero-title {
    max-width: 100%;
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .inner-hero-title span {
    white-space: normal;
  }

  .inner-hero .section-copy {
    max-width: 34rem;
    padding-inline: 0.5rem;
    font-size: 0.95rem;
  }

  .gallery-section {
    padding: 0 0 2.75rem;
  }

  .gallery_box .box img {
    height: 145px;
  }

  .videos_list iframe,
  .videos_list-placeholder {
    min-height: 140px;
  }

  .gallrow {
    margin-top: 1rem;
    padding: 1.25rem 0.35rem 0;
  }
}

@media (max-width: 767.98px) {
  .inner-hero {
    padding: 1rem 0 0.85rem;
  }

  .inner-hero .section-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }

  .inner-hero-title {
    margin-top: 0.7rem;
    font-size: 1.35rem;
  }

  .inner-hero .section-copy {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .gallery-tabs {
    width: 100%;
    max-width: 320px;
  }

  .gallery-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.35rem 0.7rem;
    font-size: 0.84rem;
  }

  .gallery-section {
    padding: 0 0 2.25rem;
  }

  .gallery-section .container {
    padding-inline: 0.75rem;
  }

  .gallrow {
    margin-top: 0.85rem;
    padding: 0.85rem 0 0;
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .gallery_box .box img {
    height: 120px;
  }

  .gallery_box .box .icon li a {
    width: 1.85rem;
    height: 1.85rem;
    line-height: 1.85rem;
    font-size: 0.9rem;
  }

  .videos_list iframe,
  .videos_list-placeholder {
    min-height: 110px;
  }

  .videos_list-placeholder {
    gap: 0.35rem;
    padding: 0.65rem;
  }

  .videos_list-placeholder i {
    font-size: 1.55rem;
  }

  .videos_list-placeholder span {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

@media (max-width: 575.98px) {
  .gallery-tabs {
    max-width: 100%;
  }

  .gallery_box .box img {
    height: 108px;
  }

  .videos_list iframe,
  .videos_list-placeholder {
    min-height: 96px;
  }

  .gallrow {
    --bs-gutter-x: 0.55rem;
    --bs-gutter-y: 0.55rem;
  }
}

.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--magenta-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.5rem;
  position: relative;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
}

.blog-card {
  background: #fff;
  border: 1.5px solid #c5d0de;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 31, 74, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog-card-popup {
  cursor: pointer;
}

.blog-card-popup:focus-visible {
  outline: 3px solid rgba(75, 163, 217, 0.35);
  outline-offset: 3px;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 24, 91, 0.28);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card .body {
  padding: 1.25rem;
}

.blog-card .date {
  font-size: 0.78rem;
  color: var(--magenta);
  font-weight: 700;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin: 0.4rem 0 0.55rem;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.blogs-intro {
  margin-bottom: 2rem;
}

.blogs-intro .section-lead {
  max-width: 40rem;
}

.blogs-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-radius: 1.1rem;
  border: 1px solid rgba(194, 24, 91, 0.14);
  background:
    linear-gradient(90deg, #fff8fb 0%, #f5f9fc 100%);
}

.blogs-cta p {
  margin: 0 0 1rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
}

.blogs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.blog-modal .modal-dialog {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.blog-modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 680px);
  overflow: hidden;
  border: 1px solid rgba(197, 208, 222, 0.9);
  border-radius: 1.25rem;
  box-shadow: 0 18px 48px rgba(11, 31, 74, 0.18);
}

.blog-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(11, 31, 74, 0.15);
}

.blog-modal-media {
  flex-shrink: 0;
  overflow: hidden;
  line-height: 0;
}

.blog-modal-media img {
  width: 100%;
  height: min(48vh, 400px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.blog-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.35rem 1.25rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("../images/header-pattern.svg");
  background-repeat: repeat, repeat;
  background-size: auto, 160px 160px;
}

.blog-modal-date {
  flex-shrink: 0;
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(194, 24, 91, 0.08);
  color: var(--magenta);
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-modal-body h2 {
  flex-shrink: 0;
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--navy);
}

.blog-modal-content {
  flex: 1 1 auto;
  min-height: 0;
  max-height: clamp(130px, 28vh, 210px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 31, 74, 0.3) transparent;
}

.blog-modal-content::-webkit-scrollbar {
  width: 6px;
}

.blog-modal-content::-webkit-scrollbar-thumb {
  background: rgba(11, 31, 74, 0.3);
  border-radius: 999px;
}

.blog-modal-content p {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.65;
}

.blog-modal-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .blog-modal .modal-dialog {
    max-width: 580px;
  }

  .blog-modal .modal-content {
    max-height: min(92vh, 640px);
  }

  .blog-modal-media img {
    height: min(44vh, 340px);
  }

  .blog-modal-content {
    max-height: clamp(120px, 26vh, 190px);
  }

  .blog-modal-body h2 {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
  }
}

@media (max-width: 575.98px) {
  .blog-modal .modal-dialog {
    max-width: none;
    margin: 0.65rem;
  }

  .blog-modal .modal-content {
    max-height: calc(100vh - 1.3rem);
    border-radius: 1rem;
  }

  .blog-modal-media img {
    height: min(38vh, 260px);
  }

  .blog-modal-content {
    max-height: clamp(110px, 24vh, 170px);
    padding-right: 0.2rem;
  }

  .blogs-cta {
    margin-top: 2rem;
    padding: 1.35rem 1.1rem;
  }

  .blogs-cta-actions .btn-solid-brand,
  .blogs-cta-actions .btn-outline-brand {
    width: 100%;
    justify-content: center;
  }

  .blog-modal-body {
    padding: 1rem 0.95rem 1.1rem;
  }

  .blog-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-height: 640px) {
  .blog-modal .modal-content {
    max-height: calc(100vh - 1rem);
  }

  .blog-modal-media img {
    height: min(32vh, 200px);
  }

  .blog-modal-body {
    padding: 0.85rem 1rem 0.95rem;
  }

  .blog-modal-body h2 {
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
  }

  .blog-modal-content {
    max-height: clamp(90px, 30vh, 150px);
  }
}

/* Footer */
#site-footer-mount {
  width: 100%;
  max-width: 100%;
  display: block;
}

.site-footer {
  background: linear-gradient(180deg, var(--navy-deep), #040b1c);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.25rem 0 0;
  margin: 2rem 0 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-inner {
  width: 100%;
  max-width: 100%;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

.footer-inner > .row {
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  word-break: break-word;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand-top {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  max-width: 100%;
}

.footer-brand-top img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.2rem;
}

.footer-brand .brand-text .name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.footer-brand .brand-text .sub {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #f4a4c4;
  white-space: nowrap;
}

.footer-desc {
  opacity: 0.8;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.86rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition), box-shadow var(--transition);
}

.footer-social a:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.footer-social .fb { background: #1877f2; }
.footer-social .yt { background: #ff0000; }
.footer-social .wa { background: #25d366; }
.footer-social .ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-contact a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.55;
}

.footer-address {
  opacity: 0.85;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-address a {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-address a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-address span {
  display: block;
  max-width: 18rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  opacity: 0.85;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.footer-copy {
  opacity: 0.85;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal-sep {
  opacity: 0.55;
}

.wa-fab {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 1040;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: floatY 3.5s ease-in-out infinite;
}

.wa-fab:hover {
  color: #fff;
  transform: scale(1.08);
}

/* Legal pages */
.legal-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(194, 24, 91, 0.08), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(75, 163, 217, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.25);
  padding: 4.5rem 0 3.25rem;
  text-align: center;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: rgba(75, 163, 217, 0.16);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 1rem 0 0.55rem;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-section {
  padding: 0 0 4rem;
  margin-top: -1.25rem;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(220, 229, 240, 0.95);
  border-radius: 1.75rem 1.75rem 1.25rem 1.25rem;
  box-shadow: 0 18px 48px rgba(11, 31, 74, 0.08);
  padding: 2.5rem 2.35rem;
  max-width: 920px;
  margin-inline: auto;
}

.legal-block + .legal-block {
  margin-top: 1.85rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(226, 233, 242, 0.95);
}

.legal-block h2 {
  margin: 0 0 0.85rem;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
}

.legal-block p,
.legal-block li {
  color: #5b6778;
  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-block p {
  margin: 0 0 0.85rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
}

.legal-block li {
  margin-bottom: 0.55rem;
}

.legal-block a {
  color: var(--sky);
  font-weight: 650;
}

.legal-block a:hover {
  color: var(--navy);
}

.legal-contact {
  margin-top: 0.35rem;
}

@media (max-width: 767.98px) {
  .legal-hero {
    padding: 3.25rem 0 2.5rem;
  }

  .legal-section {
    margin-top: -0.75rem;
    padding-bottom: 3rem;
  }

  .legal-card {
    padding: 1.6rem 1.15rem;
    border-radius: 1.35rem;
  }

  .legal-block + .legal-block {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.highlight-card.reveal.visible:hover {
  transform: translateY(-6px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.highlight-card.reveal.visible {
  transition: opacity 0.7s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .container-site {
    padding-inline: 1rem;
  }

  .top-bar-inner,
  .navbar-shell {
    padding-inline: 0.75rem;
  }

  .about-float.top {
    left: 0.5rem;
  }

  .about-float.bottom {
    right: 0.5rem;
  }

  .nav-link-custom {
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem !important;
  }

  .btn-appointment {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .brand-text .name {
    font-size: 1.35rem;
  }

  .brand-text .sub {
    font-size: 0.95rem;
  }

  .navbar-brand-wrap img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 2rem;
    margin-top: 1.5rem;
  }

  .footer-brand .brand-text .name {
    font-size: 1.3rem;
  }

  .footer-brand .brand-text .sub {
    font-size: 0.98rem;
  }

  .footer-desc {
    max-width: none;
    font-size: 0.9rem;
  }

  .site-footer h4 {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
  }

  .cta-banner {
    padding: 1.85rem 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  }

  .cta-banner p {
    font-size: 0.94rem;
  }

  .welcome-section {
    padding: 1.85rem 0 1.6rem;
  }

  .highlight-section {
    padding: 2.75rem 0 3rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .welcome-visual {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .vm-grid {
    row-gap: 1.25rem;
  }

  .vm-center {
    order: 0;
    flex-direction: column;
    gap: 0.85rem;
    padding-block: 0.25rem 0.75rem;
  }

  .vm-center-badge {
    width: 110px;
    height: 110px;
  }

  .vm-card h3 {
    font-size: 1.65rem;
  }

  .about-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.75rem;
  }

  .about-content {
    max-width: none;
  }

  .about-content .section-title {
    max-width: none;
  }

  .about-media img {
    height: 340px;
  }

  .spec-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-modal-stage {
    min-height: 64vh;
    padding: 1.1rem 4rem;
  }

  .doc-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .doc-avatar-wrap {
    width: 164px;
    height: 164px;
  }

  .doc-avatar {
    font-size: 3rem;
  }

  .site-header .navbar-collapse {
    background: #fff;
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-basis: 100%;
  }

  .nav-link-custom {
    font-size: 0.92rem;
    padding: 0.65rem 0.85rem !important;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .btn-appointment {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .vm-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .vm-card {
    padding: 1.85rem 1.2rem;
  }

  .vm-card h3 {
    font-size: 1.5rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .spec-grid,
  .blog-grid,
  .gallery-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .gallery-modal-stage {
    min-height: 56vh;
    padding: 1rem 3.15rem;
  }

  .gallery-modal-nav {
    width: 2.6rem;
    height: 2.6rem;
  }

  .highlight-section {
    padding: 2.25rem 0 2.5rem;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .welcome-section {
    padding: 1.75rem 0 1.5rem;
  }

  .welcome-float {
    left: 0.5rem;
    max-width: 200px;
  }

  .about-media {
    padding: 0.6rem 0 0.6rem 0.6rem;
  }

  .about-media::before {
    inset: 0.25rem 1rem 1.25rem 0;
  }

  .about-float {
    max-width: 205px;
    padding: 0.8rem 0.9rem;
  }

  .about-float strong {
    font-size: 0.88rem;
  }

  .about-float span {
    font-size: 0.76rem;
  }

  .about-content .section-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .doc-card {
    padding: 1.45rem 1.05rem 1.2rem;
    border-radius: 1.6rem;
  }

  .doc-avatar-wrap {
    width: 144px;
    height: 144px;
    margin-bottom: 1rem;
  }

  .doc-avatar {
    font-size: 2.65rem;
  }

  .doc-card h3 {
    font-size: 1.18rem;
  }

  .doc-card .spec {
    font-size: 0.84rem;
    padding: 0.4rem 0.85rem;
  }

  .doc-credentials,
  .doc-card p {
    font-size: 0.86rem;
  }

  .doc-card::after {
    width: 88px;
    height: 88px;
  }

  .about-content .text-muted {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .check-list li {
    font-size: 0.95rem;
  }

  .about-actions {
    gap: 0.75rem;
  }

  .brand-text .name {
    font-size: 1.25rem;
  }

  .brand-text .sub {
    font-size: 0.88rem;
  }

  .top-bar .hide-sm {
    display: none;
  }

  .cta-banner {
    padding: 1.65rem 0;
    text-align: center;
  }

  .cta-copy {
    max-width: none;
    margin-inline: auto;
  }

  .cta-banner p {
    max-width: 34rem;
    margin-inline: auto;
  }

  .cta-banner .btn-white {
    width: 100%;
    max-width: 280px;
    white-space: normal;
    padding: 0.8rem 1.2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .doctors-section {
    padding-block: 0;
  }

  .site-footer {
    padding-top: 1.65rem;
    margin-top: 1.25rem;
  }

  .footer-inner,
  .footer-bottom {
    padding-inline: 1rem;
  }

  .footer-inner > .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.35rem;
  }

  .footer-brand-top {
    gap: 0.7rem;
  }

  .footer-brand-top img {
    width: 48px;
    height: 48px;
  }

  .footer-brand .brand-text .name {
    font-size: 1.2rem;
  }

  .footer-brand .brand-text .sub {
    font-size: 0.9rem;
  }

  .footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .site-footer h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-links li {
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
  }

  .footer-address {
    font-size: 0.84rem;
  }

  .footer-bottom {
    margin-top: 0.85rem;
    padding: 0.75rem 1rem 0.9rem;
    font-size: 0.78rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}


/* ===== Specialty / treatment detail pages ===== */

.treatment-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.treatment-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(194, 24, 91, 0.14), transparent 58%),
    radial-gradient(ellipse 45% 55% at 8% 85%, rgba(75, 163, 217, 0.16), transparent 60%),
    linear-gradient(180deg, #fff5f9 0%, #eef6fc 42%, #ffffff 100%);
  pointer-events: none;
}

.treatment-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/header-pattern.svg");
  background-size: 220px auto;
  opacity: 0.08;
}

.treatment-hero .container-site {
  padding-top: 2rem;
  padding-bottom: 3.75rem;
}

.treatment-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.treatment-breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.treatment-breadcrumb a:hover {
  color: var(--magenta);
}

.treatment-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}

.treatment-hero-copy {
  margin: 0 0 1.55rem;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.treatment-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.btn-outline-treatment {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.66rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 31, 74, 0.22);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.84rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline-treatment:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

.treatment-hero-actions .btn-solid-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.66rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
}

.treatment-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.treatment-hero-meta i {
  color: var(--magenta);
  font-size: 1rem;
}

.treatment-hero-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-hero-ring {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(145deg, rgba(194, 24, 91, 0.2), rgba(75, 163, 217, 0.2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  animation: treatmentPulse 6s ease-in-out infinite;
}

.treatment-hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 1.75rem;
  border-radius: 32px;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow:
    0 30px 60px rgba(11, 31, 74, 0.12),
    0 8px 20px rgba(194, 24, 91, 0.08);
  backdrop-filter: blur(10px);
}

.treatment-hero-visual img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto;
  animation: treatmentFloat 5.5s ease-in-out infinite;
}

.treatment-hero-chip {
  position: absolute;
  z-index: 2;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 14px 30px rgba(11, 31, 74, 0.1);
  animation: treatmentChipIn 0.7s ease both;
}

.treatment-hero-chip strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.2;
}

.treatment-hero-chip span {
  font-size: 0.78rem;
  color: var(--muted);
}

.treatment-hero-chip-left {
  left: 0;
  bottom: 18%;
  animation-delay: 0.15s;
}

.treatment-hero-chip-right {
  right: 0;
  top: 16%;
  animation-delay: 0.28s;
  background: #fff0f5;
  border-color: rgba(194, 24, 91, 0.35);
  box-shadow: 0 14px 30px rgba(194, 24, 91, 0.16);
}

.treatment-hero-chip-right strong {
  color: var(--magenta-dark);
}

.treatment-hero-chip-right span {
  color: #a34a6e;
}

@keyframes treatmentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes treatmentPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.92; }
}

@keyframes treatmentChipIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.treatment-section {
  padding: 4.25rem 0;
}

.treatment-about {
  background: #fff;
}

.treatment-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.treatment-section-head .section-title {
  margin-top: 0.85rem;
}

.treatment-section-head .section-copy {
  max-width: 40rem;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.treatment-lead {
  margin: 1.1rem 0 0.85rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}

.treatment-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.treatment-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.treatment-benefit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.2rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 12px 28px rgba(11, 31, 74, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 163, 217, 0.45);
  box-shadow: 0 18px 36px rgba(11, 31, 74, 0.1);
}

.treatment-benefit-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(194, 24, 91, 0.14), rgba(75, 163, 217, 0.12));
  color: var(--magenta);
  font-size: 1.2rem;
}

.treatment-benefit h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.treatment-benefit p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.treatment-types-section {
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.treatment-type {
  position: relative;
  height: 100%;
  padding: 1.55rem 1.35rem 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.treatment-type::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.treatment-type:first-child::before,
.treatment-types-section .row > :first-child .treatment-type::before,
.treatment-type:hover::before {
  transform: scaleX(1);
}

.treatment-type:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 24, 91, 0.35);
  box-shadow: 0 20px 40px rgba(11, 31, 74, 0.12);
}

.treatment-type-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.treatment-type-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--magenta);
}

.treatment-type-top i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(11, 31, 74, 0.06);
  color: var(--navy);
  font-size: 1.05rem;
}

.treatment-type h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
}

.treatment-type p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--muted);
}

.treatment-panel {
  height: 100%;
  padding: 1.9rem 1.7rem;
  border-radius: 24px;
}

.treatment-panel-light {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 16px 40px rgba(11, 31, 74, 0.06);
}

.treatment-panel-accent {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: 0 16px 40px rgba(11, 31, 74, 0.08);
  padding: 1.45rem 1.35rem;
}

.treatment-panel-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--sky));
}

.treatment-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(75, 163, 217, 0.12);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-panel-accent h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--navy);
}

.treatment-panel-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.treatment-care-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.treatment-care-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.85rem 0.7rem 0.75rem;
  border-radius: 14px;
  background: #f5f8fc;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--sky);
  line-height: 1.45;
  color: var(--text);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.treatment-care-list li:hover {
  transform: translateX(3px);
  background: #fff;
  border-color: rgba(75, 163, 217, 0.45);
  border-left-color: var(--magenta);
  box-shadow: 0 6px 14px rgba(11, 31, 74, 0.06);
}

.treatment-care-list span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(11, 31, 74, 0.06);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.treatment-checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.treatment-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(194, 24, 91, 0.05);
  border: 1.5px solid var(--border);
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.treatment-checklist li:hover {
  background: rgba(194, 24, 91, 0.09);
  border-color: rgba(194, 24, 91, 0.3);
}

.treatment-checklist i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  font-size: 0.8rem;
}

.treatment-process-section {
  padding-top: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 163, 217, 0.1), transparent 40%),
    #fff;
}

.treatment-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}

.treatment-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(148, 163, 184, 0.45);
}

.treatment-step {
  position: relative;
  text-align: center;
  padding: 0 0.35rem;
}

.treatment-step-index {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(194, 24, 91, 0.4);
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11, 31, 74, 0.1);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.treatment-step:hover .treatment-step-index {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
  transform: scale(1.06);
}

.treatment-step-body {
  padding: 1.15rem 1rem;
  border-radius: 18px;
  background: #f8fbfe;
  border: 1.5px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-step:hover .treatment-step-body {
  transform: translateY(-3px);
  border-color: rgba(75, 163, 217, 0.4);
  box-shadow: 0 14px 28px rgba(11, 31, 74, 0.08);
}

.treatment-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.treatment-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.treatment-cta-section {
  padding: 0 0 3rem;
}

.treatment-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.65rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 92% 20%, rgba(194, 24, 91, 0.1), transparent 40%),
    radial-gradient(ellipse at 8% 90%, rgba(75, 163, 217, 0.08), transparent 42%),
    #ffffff;
  border: 1.5px solid var(--border);
  box-shadow:
    0 14px 34px rgba(11, 31, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.treatment-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--magenta) 0%, var(--navy) 100%);
}

.treatment-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff0f5, #ffe4ec);
  border: 1.5px solid rgba(194, 24, 91, 0.3);
  color: var(--magenta);
  font-size: 1.45rem;
  box-shadow: 0 8px 16px rgba(194, 24, 91, 0.12);
}

.treatment-cta-copy {
  flex: 1;
  min-width: 0;
}

.treatment-cta-label {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-cta h2 {
  margin: 0 0 0.3rem;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--navy);
}

.treatment-cta-copy > p:not(.treatment-cta-label) {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 34rem;
}

.treatment-cta-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  min-width: 190px;
}

.treatment-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta-bright), var(--magenta));
  color: #fff;
  font-weight: 700;
  font-size: 0.93rem;
  border: none;
  box-shadow: 0 10px 20px rgba(194, 24, 91, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.treatment-cta-primary:hover {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(194, 24, 91, 0.34);
}

.treatment-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.treatment-cta-phone:hover {
  border-color: var(--navy);
  background: #f5f8fc;
  color: var(--navy);
}

.treatment-cta-phone i {
  color: var(--magenta);
}

@media (max-width: 1199.98px) {
  .treatment-timeline::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .treatment-hero {
    padding: 0;
    text-align: center;
  }

  .treatment-breadcrumb {
    justify-content: center;
  }

  .treatment-hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .treatment-hero-actions,
  .treatment-hero-meta {
    justify-content: center;
  }

  .treatment-hero-stage {
    min-height: 360px;
    margin-top: 0.5rem;
  }

  .treatment-hero-chip-left {
    left: 4%;
    bottom: 8%;
  }

  .treatment-hero-chip-right {
    right: 4%;
    top: 8%;
  }

  .treatment-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .treatment-benefit-grid {
    grid-template-columns: 1fr;
  }

  .treatment-hero-chip {
    display: none;
  }

  .treatment-hero-stage {
    min-height: 0;
  }

  .treatment-hero-visual {
    width: 100%;
  }

  .treatment-hero-visual img {
    height: 260px;
  }

  .treatment-timeline {
    grid-template-columns: 1fr;
  }

  .treatment-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.15rem 1.25rem 1.35rem;
  }

  .treatment-cta-actions {
    width: 100%;
    min-width: 0;
  }

  .treatment-cta-primary {
    width: 100%;
    text-align: center;
  }

  .treatment-panel {
    padding: 1.65rem 1.25rem;
  }

  .treatment-section {
    padding: 3.25rem 0;
  }

  .treatment-types-section {
    padding: 0;
  }

  .treatment-process-section {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatment-hero-visual img,
  .treatment-hero-ring,
  .treatment-hero-chip {
    animation: none;
  }
}

/* ===== Appointment page (reference layout) ===== */
.appointment-hero {
  padding: 1.5rem 0 1.1rem;
  text-align: center;
  background:
    linear-gradient(rgba(255, 248, 251, 0.82), rgba(255, 255, 255, 0.82)),
    url("../images/header-pattern.svg"),
    radial-gradient(circle at top left, rgba(194, 24, 91, 0.1), transparent 34%),
    radial-gradient(circle at right center, rgba(75, 163, 217, 0.12), transparent 32%),
    linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, 160px 160px, auto, auto, auto;
}

.appointment-hero-title {
  margin: 0.85rem auto 0;
  max-width: 18em;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.3;
}

.appointment-hero-title span {
  color: var(--magenta);
}

.appointment-hero .section-lead {
  max-width: 36rem;
  margin-top: 0.75rem;
}

.appointment-contact-strip-section {
  padding: 1.25rem 0 1.75rem;
  background:
    linear-gradient(rgba(251, 253, 255, 0.82), rgba(243, 247, 251, 0.82)),
    url("../images/header-pattern.svg"),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 160px 160px, auto;
}

.appointment-hero .container-site,
.appointment-contact-strip-section .container-site {
  max-width: 1360px;
  padding-inline: clamp(1rem, 2vw, 1.5rem);
}

.appointment-contact-strip {
  background: #fff;
  border: 1.5px solid #c5ced6;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 1rem 1.15rem;
  overflow: hidden;
}

.appointment-contact-ref-title {
  margin: 0 0 0.65rem;
  padding: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: #1b212c;
  border-bottom: 1px solid #e8eef2;
}

.appointment-contact-ref-row {
  --bs-gutter-x: 0.75rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.appointment-contact-ref-row > [class*="col-"] {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.appointment-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.4rem 0.15rem;
}

.appointment-contact-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.25rem;
  line-height: 1;
}

.appointment-contact-ref-icon-address { color: #d6527f; }
.appointment-contact-ref-icon-phone { color: var(--magenta); }
.appointment-contact-ref-icon-email { color: #7f8cff; }
.appointment-contact-ref-icon-web { color: #25d366; }

.appointment-contact-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sky);
}

.appointment-contact-item p {
  margin: 0;
  color: #1b212c;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.appointment-contact-item a {
  color: #1b212c;
  font-weight: 500;
}

.appointment-contact-item a:hover {
  color: var(--magenta);
  text-decoration: underline;
}

.appointment-form-map-row {
  margin-top: 1.75rem;
}

.appointment-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 74, 0.35);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(75, 163, 217, 0.2);
  height: 400px;
  width: 100%;
  background: #fff;
}

.appointment-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.book-appointment-card {
  background: #fff;
  border: 1.5px solid #c5ced6;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(11, 31, 74, 0.1);
  height: auto;
  overflow: visible;
  min-width: 0;
}

.book-appointment-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  text-align: center;
  padding: 0.7rem 1.35rem;
  background: #fff;
  border-bottom: 1px solid rgba(11, 31, 74, 0.08);
  border-radius: 16px 16px 0 0;
}

.book-appointment-logo {
  display: block;
  width: 52px;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  object-fit: contain;
}

.book-appointment-title {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: left;
}

.book-appointment-body {
  padding: 1.25rem 1.5rem 1.6rem;
}

.book-form-row {
  margin-left: -8px;
  margin-right: -8px;
}

.book-form-row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.book-form-group {
  margin-bottom: 1rem;
  position: relative;
  min-width: 0;
}

.book-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #1b212c;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.book-control {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 44px;
  padding: 6px 12px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  background: #fff !important;
  color: #1b212c !important;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.5;
  outline: none;
  box-shadow: none !important;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.book-control::placeholder {
  color: #8a93a0;
  opacity: 1;
}

.book-control:focus,
.book-control:active {
  border-color: rgba(75, 163, 217, 0.65);
}

.book-control.is-invalid,
.book-select-trigger.is-invalid {
  border-color: #dc3545 !important;
}

.book-textarea {
  height: auto !important;
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.book-invalid {
  display: none;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #dc3545;
  font-weight: 600;
}

.book-form-group.is-invalid .book-invalid {
  display: block;
}

.book-select-wrap {
  position: relative;
}

.book-select-trigger {
  text-align: left;
  cursor: pointer;
  padding-right: 2.4rem;
  position: relative;
  appearance: none;
}

.book-select-trigger::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6c757d;
  transform: translateY(-40%);
  pointer-events: none;
}

.book-select-wrap.is-open .book-select-trigger::after {
  transform: translateY(-60%) rotate(180deg);
}

.book-select-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
  max-height: 220px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.book-select-option {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.65rem 0.95rem;
  color: #1b212c;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
}

.book-select-option:hover,
.book-select-option.selected {
  background: #e9ecef;
  color: #1b212c;
}

.book-time-dropdown .book-select-option:hover,
.book-time-dropdown .book-select-option.selected {
  background: var(--sky);
  color: #fff;
}

.book-date-wrap {
  position: relative;
}

.book-date-wrap .book-control {
  padding-right: 2.6rem;
  cursor: pointer;
}

.book-date-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border: 0;
}

.book-date-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  color: var(--magenta);
  user-select: none;
}

.book-submit-wrap {
  margin-top: 0.35rem;
}

.book-submit-btn {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.6rem 1.25rem;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}

.book-submit-btn:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  color: #fff;
}

.book-submit-btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.appointment-success {
  padding: 1.5rem 1.15rem;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 0.85rem;
  text-align: center;
}

.appointment-success-icon {
  display: block;
  margin-bottom: 0.55rem;
  color: #059669;
  font-size: 2.4rem;
  line-height: 1;
}

.appointment-success h3 {
  margin: 0 0 0.45rem;
  color: #065f46;
  font-size: 1.35rem;
  font-weight: 700;
}

.appointment-success p {
  margin: 0 0 1rem;
  color: #047857;
  font-size: 0.92rem;
  line-height: 1.55;
}

.appointment-success .book-submit-btn {
  background: #059669;
}

.appointment-success .book-submit-btn:hover {
  background: #047857;
}

.appointment-error {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #ef4444;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  text-align: center;
}

.book-note {
  display: block;
  width: 100%;
  margin-top: 0.95rem;
  color: #5a6c7d;
  font-size: 0.9rem;
  text-align: left;
}

.book-note a {
  color: var(--sky);
  font-weight: 700;
}

.book-note a:hover {
  color: var(--magenta);
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .appointment-hero .container-site,
  .appointment-contact-strip-section .container-site {
    max-width: 1140px;
  }

  .appointment-map-wrap {
    height: 360px;
  }
}

@media (max-width: 991.98px) {
  .appointment-hero {
    padding: 1.25rem 0 0.9rem;
  }

  .appointment-contact-strip-section {
    padding: 1rem 0 1.5rem;
  }

  .appointment-form-map-row {
    margin-top: 1.25rem;
  }

  .appointment-map-wrap {
    height: 300px;
  }

  .appointment-contact-ref-row {
    row-gap: 0.35rem;
  }

  .book-appointment-body {
    padding: 1.15rem 1.2rem 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .appointment-hero-title {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    max-width: 14em;
  }

  .appointment-hero .section-lead {
    font-size: 0.95rem;
    padding-inline: 0.25rem;
  }

  .appointment-contact-strip {
    padding: 0.9rem 1rem;
  }

  .appointment-contact-item {
    padding: 0.55rem 0.15rem;
  }

  .appointment-contact-item p {
    font-size: 0.88rem;
  }

  .appointment-map-wrap {
    height: 260px;
  }

  .book-appointment-header {
    gap: 0.65rem;
    padding: 0.65rem 1rem;
  }

  .book-appointment-logo {
    width: 42px;
  }

  .book-appointment-title {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .book-appointment-body {
    padding: 1rem 0.95rem 1.25rem;
  }

  .book-form-row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .book-form-row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .book-form-group {
    margin-bottom: 0.85rem;
  }

  .book-control {
    height: 46px;
    font-size: 16px;
  }

  .book-textarea {
    min-height: 100px;
    font-size: 16px;
  }

  .book-select-dropdown {
    max-height: 200px;
  }

  .book-submit-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  .book-note {
    text-align: center;
    font-size: 0.86rem;
  }
}

@media (max-width: 575.98px) {
  .appointment-hero {
    padding: 1.1rem 0 0.75rem;
  }

  .appointment-contact-strip-section {
    padding: 0.85rem 0 1.25rem;
  }

  .appointment-hero .container-site,
  .appointment-contact-strip-section .container-site {
    padding-inline: 0.85rem;
  }

  .appointment-contact-strip {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .appointment-contact-ref-title {
    font-size: 1rem;
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
  }

  .appointment-contact-label {
    font-size: 0.7rem;
  }

  .appointment-form-map-row {
    margin-top: 1rem;
  }

  .appointment-map-wrap {
    height: 230px;
    border-radius: 10px;
  }

  .book-appointment-card {
    border-radius: 12px;
  }

  .book-appointment-header {
    border-radius: 12px 12px 0 0;
    padding: 0.55rem 0.85rem;
  }

  .book-appointment-logo {
    width: 38px;
  }

  .book-appointment-title {
    font-size: 1.1rem;
  }

  .book-label {
    font-size: 0.88rem;
  }

  .book-select-option {
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
  }
}

/* =========================================================
   Home page ? advanced responsive polish
   ========================================================= */
body[data-page="home"] {
  overflow-x: clip;
  --site-header-offset: 72px;
}

@media (min-width: 1024px) {
  body[data-page="home"] {
    --site-header-offset: 110px;
  }
}

body[data-page="home"] .hero {
  height: calc(100vh - var(--site-header-offset));
  height: calc(100svh - var(--site-header-offset));
  height: calc(100dvh - var(--site-header-offset));
  min-height: 320px;
  max-height: none;
}

body[data-page="home"] img {
  max-width: 100%;
}

body[data-page="home"] .hero-slide {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

body[data-page="home"] .container-site {
  padding-inline: clamp(1rem, 3.5vw, 1.5rem);
}

body[data-page="home"] .section {
  padding-block: clamp(2.25rem, 5vw, 4.5rem);
}

body[data-page="home"] .section.vm-section {
  padding-block: 2rem;
}

body[data-page="home"] .section-title {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  line-height: 1.15;
  word-wrap: break-word;
}

body[data-page="home"] .section-lead {
  max-width: 40rem;
  margin-inline: auto;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  padding-inline: 0.25rem;
}

body[data-page="home"] .welcome-actions,
body[data-page="home"] .about-actions,
body[data-page="home"] .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body[data-page="home"] .welcome-panel {
  width: 100%;
  max-width: 100%;
}

body[data-page="home"] .welcome-features li {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
}

body[data-page="home"] .about-media {
  width: 100%;
  max-width: 100%;
}

body[data-page="home"] .about-content .section-title {
  font-size: clamp(1.7rem, 4vw, 2.75rem);
}

body[data-page="home"] .spec-card .img-wrap {
  height: clamp(160px, 28vw, 190px);
}

body[data-page="home"] .blog-card img {
  width: 100%;
  height: clamp(160px, 28vw, 200px);
  object-fit: cover;
}

body[data-page="home"] .cta-banner {
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

@media (max-width: 1199.98px) {
  body[data-page="home"] .welcome-grid {
    gap: 2rem;
  }

  body[data-page="home"] .about-grid {
    --bs-gutter-x: 2rem;
  }
}

@media (max-width: 1023.98px) {
  body[data-page="home"] .hero {
    height: calc(100vh - var(--site-header-offset));
    height: calc(100svh - var(--site-header-offset));
    height: calc(100dvh - var(--site-header-offset));
    min-height: 0;
    max-height: none;
  }

  body[data-page="home"] .hero-slide {
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 991.98px) {
  body[data-page="home"] .welcome-section {
    padding: 2rem 0 1.75rem;
  }

  body[data-page="home"] .welcome-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  body[data-page="home"] .welcome-copy {
    text-align: left;
  }

  body[data-page="home"] .welcome-text {
    max-width: none;
  }

  body[data-page="home"] .welcome-visual {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  body[data-page="home"] .welcome-panel-photo {
    height: clamp(200px, 42vw, 260px);
  }

  body[data-page="home"] .welcome-actions .btn-outline-brand,
  body[data-page="home"] .welcome-actions .btn-solid-brand,
  body[data-page="home"] .about-actions .btn-outline-brand,
  body[data-page="home"] .about-actions .btn-solid-brand {
    flex: 1 1 auto;
    min-width: min(100%, 180px);
    justify-content: center;
    text-align: center;
  }

  body[data-page="home"] .highlight-section {
    padding: 2rem 0 2.25rem;
  }

  body[data-page="home"] .about-section {
    padding-block: 2.25rem;
  }

  body[data-page="home"] .about-media {
    padding: 0.4rem;
    margin-bottom: 0.5rem;
  }

  body[data-page="home"] .about-media::before {
    inset: 0.2rem 0.8rem 1rem 0;
  }

  body[data-page="home"] .about-media img {
    height: clamp(240px, 55vw, 380px);
    border-width: 6px;
    border-radius: 1.35rem;
  }

  body[data-page="home"] .about-float {
    display: none;
  }

  body[data-page="home"] .vm-section {
    padding-block: 1.5rem;
  }

  body[data-page="home"] .doc-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 1.15rem;
  }

  body[data-page="home"] .cta-banner .btn-white {
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 767.98px) {
  body[data-page="home"] .hero-dots {
    bottom: 0.65rem;
  }

  body[data-page="home"] .welcome-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  body[data-page="home"] .welcome-actions,
  body[data-page="home"] .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body[data-page="home"] .welcome-actions .btn-outline-brand,
  body[data-page="home"] .welcome-actions .btn-solid-brand,
  body[data-page="home"] .about-actions .btn-outline-brand,
  body[data-page="home"] .about-actions .btn-solid-brand {
    width: 100%;
    min-width: 0;
  }

  body[data-page="home"] .highlight-card {
    padding: 1.35rem 1.1rem;
  }

  body[data-page="home"] .highlight-card h3 {
    font-size: 1.15rem;
  }

  body[data-page="home"] .check-list li {
    font-size: 0.92rem;
    gap: 0.65rem;
  }

  body[data-page="home"] .spec-card .body {
    padding: 1rem 1rem 1.15rem;
  }

  body[data-page="home"] .cta-banner {
    text-align: center;
  }

  body[data-page="home"] .cta-banner .btn-white {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 575.98px) {
  body[data-page="home"] .container-site {
    padding-inline: 0.9rem;
  }

  body[data-page="home"] .welcome-panel-top {
    padding: 1rem;
  }

  body[data-page="home"] .welcome-panel-brand img {
    width: 42px;
    height: 42px;
  }

  body[data-page="home"] .welcome-panel-brand strong {
    font-size: 1.05rem;
  }

  body[data-page="home"] .welcome-panel-photo {
    height: 190px;
  }

  body[data-page="home"] .about-media img {
    height: 220px;
    border-width: 5px;
    border-radius: 1.15rem;
  }

  body[data-page="home"] .section-badge {
    font-size: 0.72rem;
    padding: 0.38rem 0.85rem;
  }

  body[data-page="home"] .vm-center-badge {
    width: 96px;
    height: 96px;
  }
}

@media (min-width: 1400px) {
  body[data-page="home"] .about-media img {
    height: 500px;
  }
}
