/* ============================================================
   STYLE — Oubertoaravanis Clinical
   All custom styles consolidated.
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --primary: #23366f;
  --primary-dark: #0a2d54;
  --header-h: 160px; /* overridden by JS */
  --transition: 0.28s ease;
}

/* ── Global ──────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
  font-family: "Manrope", "Inter", sans-serif !important;
}

:root {
  --title-font: "Manrope", "Inter", sans-serif;
}

/* ── Page wrapper ────────────────────────────────────────── */
.page-wrapper {
  position: relative;
  width: 100%;
  min-width: 300px;
  background: #fff;
}

/* ── overflow-x hidden ───────────────────────────────────── */
html,
body {
  overflow-x: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */

#main-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 61, 110, 0.08);
  box-shadow: 0 2px 20px rgba(15, 61, 110, 0.06);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

#main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15, 61, 110, 0.1);
  box-shadow: 0 4px 32px rgba(15, 61, 110, 0.12);
}

/* Logo row */
.header-brand {
  padding: 0;
}

.header-brand-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: calc(120px + 20px);
}

.header-brand .navbar-brand {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-brand .navbar-brand img {
  height: 120px;
  width: auto;
  display: block;
}

/* Tablet 768–991px: lang αριστερά, logo absolute κέντρο, toggler δεξιά */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-brand-inner {
    justify-content: space-between;
  }

  .header-brand .navbar-brand img {
    height: 90px;
  }

  .header-brand .lang-switcher {
    display: flex !important;
  }
}

/* Mobile <768px: logo αριστερά, toggler δεξιά, χωρίς lang-switcher */
@media (max-width: 767.98px) {
  .header-brand .navbar-brand {
    position: static;
    transform: none;
  }

  .header-brand-inner {
    justify-content: space-between;
  }
}

@media (max-width: 567px) {
  .header-brand .navbar-brand img {
    height: 70px;
  }
}

@media (min-width: 568px) and (max-width: 767.98px) {
  .header-brand .navbar-brand img {
    height: 80px;
  }
}

.brand-right {
  display: flex;
  align-items: center;
}

/* Hamburger */
.navbar-toggler {
  border: 1.5px solid rgba(15, 61, 110, 0.35);
  border-radius: 5px;
  padding: 7px 10px;
  background: transparent;
  transition: border-color var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f3d6e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  display: block;
  width: 22px;
  height: 22px;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* Nav row */
.header-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
  transition: border-color var(--transition);
  background-color: var(--primary);
}

#main-header.scrolled .header-nav {
  border-top-color: rgba(15, 61, 110, 0.08);
}

.header-nav .nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.015em;
  padding: 12px 16px;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.header-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
  color: #ffffff;
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* CTA button */
.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none !important;
  white-space: nowrap;
  margin-left: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-appointment:hover {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 61, 110, 0.15);
}



#main-header.scrolled .btn-appointment {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

#main-header.scrolled .btn-appointment:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(15, 61, 110, 0.28);
}

/* Mobile */
@media (max-width: 991.98px) {
  :root {
    --header-height: 76px;
  }
  .lang-switcher {
    font-size: 0.72rem;
    gap: 4px;
  }
  .header-nav {
    display: none;
  }
}

/* Mobile overlay menu */
.mobile-menu-overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: var(--primary-dark);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.is-open {
  transform: translateX(0);
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu-backdrop.is-open {
  display: block;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 28px 32px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mobile-lang-switcher {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  justify-content: center;
}

.mobile-lang-switcher .lang-option {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-lang-switcher .lang-option.active,
.mobile-lang-switcher .lang-option:hover {
  color: #fff;
}

.mobile-lang-switcher .lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-logo img {
  height: 70px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}

.mobile-menu-close:hover {
  color: #fff;
}

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

.mobile-menu-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 13px 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
  text-decoration: none;
  display: block;
  transition: color var(--transition);
}

.mobile-menu-nav .nav-link:hover {
  color: #fff;
}

.mobile-menu-cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
}

.mobile-menu-cta:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: none;
  box-shadow: none;
}

/* ── Lymphedema header theme ─────────────────────────────────
   Applied via .header--lymph on the <header> in services-l.html
   and any other lymphedema pages. Overrides --primary accents
   with the lymph colour (#1a6fa8).
   ─────────────────────────────────────────────────────────── */

.header--lymph {
  border-bottom-color: rgba(91, 195, 235, 0.15);
  box-shadow: 0 2px 20px rgba(91, 195, 235, 0.08);
}

.header--lymph.scrolled {
  border-bottom-color: rgba(91, 195, 235, 0.2);
  box-shadow: 0 4px 32px rgba(91, 195, 235, 0.14);
}

.header--lymph .header-nav {
  background-color: #1a6fa8;
}

/* Nav links */
.header--lymph #lymph-main-nav .nav-link {
  color: #ffffff;
}

.header--lymph #lymph-main-nav .nav-link::after {
  background: #ffffff;
}

.header--lymph #lymph-main-nav .nav-link:hover,
.header--lymph #lymph-main-nav .nav-link.active {
  color: #ffffff;
}

.header--lymph #lymph-main-nav .nav-dropdown-menu li a {
  color: #1a6fa8;
}

.header--lymph #lymph-main-nav .nav-dropdown-menu li a:hover {
  color: #3aadd8;
}

/* Language switcher */
.header--lymph #lymph-lang-switcher .lang-option {
  color: rgba(126, 126, 126, 0.9);
}

.header--lymph #lymph-lang-switcher .lang-option.active,
.header--lymph #lymph-lang-switcher .lang-option:hover {
  color: #1a6fa8;
}

.header--lymph #lymph-lang-switcher .lang-sep {
  color: rgba(91, 195, 235, 0.4);
}

/* CTA button */
.header--lymph #lymph-cta-btn, .header--lymph .btn-appointment {
  background-color: #1a6fa8;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff !important;
}

.header--lymph #lymph-cta-btn:hover, .header--lymph .btn-appointment:hover {
  background-color: transparent;
  border-color: #1a6fa8;
  color: #1a6fa8 !important;
  box-shadow: 0 6px 20px rgba(91, 195, 235, 0.25);
}

.header--lymph.scrolled #lymph-cta-btn, .header--lymph.scrolled .btn-appointment {
  background-color: #1a6fa8;
  border-color: #1a6fa8;
  color: #ffffff !important;
}

.header--lymph.scrolled #lymph-cta-btn:hover, .header--lymph.scrolled .btn-appointment:hover {
  background-color: #3aadd8;
  border-color: #3aadd8;
}

/* Hamburger toggler */
.header--lymph .navbar-toggler {
  border-color: rgba(26, 111, 168, 0.45);
}

.header--lymph .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a6fa8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Desktop dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
}

.nav-chevron {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  min-width: 210px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(15, 61, 110, 0.14);
  border: 1px solid rgba(15, 61, 110, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 200;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(15, 61, 110, 0.06));
}

.nav-dropdown-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: flex;
  padding: 9px 20px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: rgba(15, 61, 110, 0.05);
  color: var(--primary-dark);
}

/* Mega dropdown */
/* Mega dropdown — visual cards */
.nav-mega {
  display: flex;
  gap: 12px;
  padding: 16px;
  min-width: 560px;
  background: #ffffff;
}

.nav-mega__card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-mega__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nav-mega__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nav-mega__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 29, 60, 0.55) 0%,
    rgba(10, 29, 60, 0.85) 100%
  );
  transition: background 0.2s ease;
}

.nav-mega__card:hover .nav-mega__card-overlay {
  background: linear-gradient(
    160deg,
    rgba(10, 29, 60, 0.65) 0%,
    rgba(10, 29, 60, 0.92) 100%
  );
}

.nav-mega__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
}

.nav-mega__card-label {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.nav-mega__card-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.nav-mega__card-links {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mega__card-links li a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.nav-mega__card-links li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Lymph theme — cyan accent on card 2 overlay */
.header--lymph .nav-mega__card:last-child .nav-mega__card-overlay {
  background: linear-gradient(
    160deg,
    rgba(0, 80, 100, 0.6) 0%,
    rgba(0, 50, 70, 0.88) 100%
  );
}

/* Flyout submenu (opens right) */
.nav-flyout {
  position: relative;
}

.nav-flyout__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 20px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
  cursor: default;
}

.nav-flyout:hover > .nav-flyout__toggle {
  background: rgba(15, 61, 110, 0.05);
  color: var(--primary-dark);
}

.nav-flyout__arrow {
  font-size: 0.6rem;
  color: rgba(15, 61, 110, 0.3);
  flex-shrink: 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-flyout:hover .nav-flyout__arrow {
  color: var(--primary);
  transform: translateX(2px);
}

.nav-flyout__menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: -8px;
  left: calc(100% + 2px);
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(15, 61, 110, 0.14);
  border: 1px solid rgba(15, 61, 110, 0.07);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 210;
}

.nav-flyout:hover .nav-flyout__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-flyout__menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    padding-left var(--transition);
}

.nav-flyout__menu li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.nav-flyout__menu li a:hover {
  background: rgba(15, 61, 110, 0.05);
  color: var(--primary-dark);
  padding-left: 24px;
}

.nav-flyout__menu li a:hover::before {
  opacity: 0.6;
}

/* Lymph theme */
.header--lymph .nav-flyout__toggle {
  color: #1a6fa8;
}
.header--lymph .nav-flyout:hover > .nav-flyout__toggle {
  color: #3aadd8;
  background: rgba(91, 195, 235, 0.06);
}
.header--lymph .nav-flyout__arrow {
  color: rgba(91, 195, 235, 0.4);
}
.header--lymph .nav-flyout:hover .nav-flyout__arrow {
  color: #1a6fa8;
}
.header--lymph .nav-flyout__menu li a {
  color: #1a6fa8;
}
.header--lymph .nav-flyout__menu li a:hover {
  color: #3aadd8;
  background: rgba(91, 195, 235, 0.06);
}

/* Mobile accordion */
.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-header .nav-link {
  flex: 1;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  padding: 0 4px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  line-height: 1;
}

.mobile-dropdown-toggle:hover {
  color: #fff;
}

.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-menu.is-open {
  max-height: 600px;
}

/* Nested mobile accordion */
/* .mobile-dropdown-menu--nested { padding: 4px 0; } */

/* .mobile-nested { border-bottom: 1px solid rgba(255,255,255,0.06); } */
.mobile-nested:last-child {
  border-bottom: none;
}

.mobile-nested__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 0; */
}

/* .mobile-nested__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  flex: 1;
} */

.mobile-nested__toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  padding: 4px 12px;
  cursor: pointer;
  transition:
    color var(--transition),
    transform 0.25s ease;
}

.mobile-nested__toggle[aria-expanded="true"] {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nested__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.mobile-nested__menu.is-open {
  max-height: 300px;
  padding-left: 40px;
}

.mobile-nested__menu li a {
  display: block;
  padding: 8px 12px 8px 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-decoration: none;
  /* border-bottom: 1px solid rgba(255,255,255,0.04); */
  transition: color var(--transition);
}

.mobile-nested__menu li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.mobile-nested__menu li:last-child a {
  border-bottom: none;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 9px 0 9px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  text-decoration: none;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
  transition: color var(--transition);
}

.mobile-dropdown-menu li a:hover {
  color: #fff;
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-sep {
  color: rgba(15, 61, 110, 0.25);
  font-size: 0.75rem;
  line-height: 1;
}

.lang-option {
  color: rgba(126, 126, 126, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

.lang-option:hover {
  color: #fff;
}

.lang-option.active {
  color: var(--primary);
  pointer-events: none;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */

.hero-slider, .hero-slider-mob {
  width: 100%;
  height: calc(100vh - var(--header-h, 160px));
  min-height: 560px;
  overflow: hidden;
}

.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide,
.hero-slider-mob .swiper,
.hero-slider-mob .swiper-wrapper,
.hero-slider-mob .swiper-slide{
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide, .hero-slider-mob .swiper-slide {
  position: relative;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slider .swiper-slide::before, .hero-slider-mob .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 45, 84, 0.72) 0%,
    rgba(10, 45, 84, 0.38) 60%,
    rgba(10, 45, 84, 0.18) 100%
  );
  z-index: 1;
}

.hero-slide-content {
  position: absolute;
  inset: 80px 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-slide-content .container {
  position: relative;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  padding-left: 2px;
}

.hero-title {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  max-width: 640px;
}

.hero-title span {
  color: #7ec8e3;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary, #0f3d6e) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 5px;
  text-decoration: none !important;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-btn-primary:hover {
  background: #e8f4fb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  text-decoration: none !important;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-slider .swiper-pagination, .hero-slider-mob .swiper-pagination {
  bottom: 28px;
} {
  bottom: 28px;
}

.hero-slider .swiper-pagination-bullet, .hero-slider-mob .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}

.hero-slider .swiper-pagination-bullet-active, .hero-slider-mob .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next,
.hero-slider-mob .swiper-button-prev,
.hero-slider-mob .swiper-button-next{
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after,
.hero-slider-mob .swiper-button-prev::after,
.hero-slider-mob .swiper-button-next::after{
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover,
.hero-slider-mob .swiper-button-prev:hover,
.hero-slider-mob .swiper-button-next:hover{
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 767.98px) {
  .hero-slider, .hero-slider-mob {
    height: 550px;
    min-height: 550px;
  }
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next,
  .hero-slider-mob .swiper-button-prev,
  .hero-slider-mob .swiper-button-next{
    display: none;
  }
}

/* ============================================================
   BIO SECTION
   ============================================================ */

.bio-section {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.bio-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.bio-photo-wrap::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -28px;
  width: 65%;
  height: 65%;
  background: rgba(15, 61, 110, 0.06);
  border-radius: 50% 0 50% 0;
  z-index: 0;
}

.bio-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}

.bio-divider {
  width: 1px;
  height: 80px;
  background: #dde3ec;
}

.bio-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.65;
  margin: 0 0 6px;
}

.bio-name {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0a1e3c;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.bio-name span {
  color: var(--primary, #0f3d6e);
}

.bio-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(15, 61, 110, 0.6);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.bio-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #5a6a7e;
  margin: 0 0 16px;
  max-width: 560px;
}

@media (max-width: 991.98px) {
  .bio-text {
    max-width: 100%;
  }
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.bio-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(15, 61, 110, 0.06);
  border: 1px solid rgba(15, 61, 110, 0.12);
  border-radius: 100px;
  padding: 4px 12px;
}

.bio-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    gap 0.2s ease;
}

.bio-cta:hover {
  background: var(--primary);
  color: #ffffff;
  gap: 12px;
}

@media (max-width: 991.98px) {
  .bio-section {
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .bio-section {
    padding: 64px 0;
  }
}

/* ============================================================
   OSTEOPATHY SERVICES SECTION
   ============================================================ */

.osteo-services {
  position: relative;
  padding: 60px 0;
  background: #f8fafd;
  overflow: hidden;
}

.osteo-services__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary, #0f3d6e);
  margin: 0 0 12px;
}

.osteo-services__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0a1e3c;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.osteo-services__title span {
  color: var(--primary, #0f3d6e);
}

.osteo-services__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.osteo-swiper,
.lempho-swiper,
.cancer-swiper {
  padding-bottom: 32px !important;
}

.osteo-swiper .swiper-wrapper,
.lempho-swiper .swiper-wrapper,
.cancer-swiper .swiper-wrapper {
  align-items: stretch;
}

.osteo-swiper.is-centered .swiper-wrapper,
.lempho-swiper.is-centered .swiper-wrapper,
.cancer-swiper.is-centered .swiper-wrapper {
  justify-content: center;
}

.osteo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  height: 520px;
  cursor: pointer;
}

.osteo-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.osteo-card:hover .osteo-card__img {
  transform: scale(1.05);
}

.osteo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.88) 0%,
    rgba(5, 15, 35, 0.45) 55%,
    rgba(5, 15, 35, 0.12) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.osteo-card:hover .osteo-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.92) 0%,
    rgba(5, 15, 35, 0.6) 60%,
    rgba(5, 15, 35, 0.2) 100%
  );
}

.osteo-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 36px 32px;
}

.osteo-card__number {
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.osteo-card:hover .osteo-card__number {
  color: rgba(255, 255, 255, 0.16);
}

.osteo-card__title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.osteo-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px;
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; /* Number of visible lines */
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    margin 0.35s ease;
text-overflow: ellipsis;
}

.osteo-card:hover .osteo-card__text {
  max-height: 120px;
  opacity: 1;
}

.osteo-card__tags {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;

overflow: hidden;
    max-height: 53px; /* exactly 2 rows of tags */
}

.osteo-card__tags li {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.osteo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  width: fit-content;
  transition:
    gap 0.28s ease,
    border-color 0.28s ease;
}

.osteo-card__link:hover {
  gap: 12px;
  border-color: #fff;
  color: #fff;
}

/* Swiper nav */

.osteo-swiper__pagination,
.lempho-swiper__pagination,
.cancer-swiper__pagination {
  bottom: 0 !important;
}
.osteo-swiper-nav,
.lempho-swiper-nav,
.cancer-swiper-nav {
  display: flex;
  gap: 10px;
}

.osteo-swiper__prev,
.osteo-swiper__next,
.cancer-swiper__prev,
.cancer-swiper__next,
.lempho-swiper__prev,
.lempho-swiper__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary, #0f3d6e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
  flex-shrink: 0;
}

.osteo-swiper__prev:hover,
.osteo-swiper__next:hover,
.cancer-swiper__prev:hover,
.cancer-swiper__next:hover,
.lempho-swiper__prev:hover,
.lempho-swiper__next:hover {
  background: var(--primary-dark, #0a2d54);
  transform: scale(1.08);
}

.osteo-swiper__prev.swiper-button-disabled,
.osteo-swiper__next.swiper-button-disabled,
.cancer-swiper__prev.swiper-button-disabled,
.cancer-swiper__next.swiper-button-disabled,
.lempho-swiper__prev.swiper-button-disabled,
.lempho-swiper__next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .osteo-swiper .swiper-pagination,
  .lempho-swiper .swiper-pagination,
  .cancer-swiper .swiper-pagination {
    display: none !important;
  }
}

@media (min-width: 991px) {
  .osteo-swiper-nav,
  .lempho-swiper-nav,
  .cancer-swiper-nav {
    display: none;
  }
}

.osteo-swiper .swiper-pagination-bullet,
.lempho-swiper .swiper-pagination-bullet,
.cancer-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(15, 61, 110, 0.25);
  opacity: 1;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}

.osteo-swiper .swiper-pagination-bullet-active,
.lempho-swiper .swiper-pagination-bullet-active,
.cancer-swiper .swiper-pagination-bullet-active {
  background: var(--primary, #0f3d6e);
  transform: scale(1.3);
}

.osteo-services__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary, #0f3d6e);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(15, 61, 110, 0.25);
  padding-bottom: 2px;
  transition:
    gap 0.28s ease,
    border-color 0.28s ease;
}

.osteo-services__cta:hover {
  gap: 14px;
  border-color: var(--primary, #0f3d6e);
  color: var(--primary, #0f3d6e);
}

@media (max-width: 991.98px) {
  .osteo-services {
    padding: 60px 0;
  }
  .osteo-card {
    height: 460px;
  }
}

@media (max-width: 575.98px) {
  .osteo-services {
    padding: 40px 0;
  }
  .osteo-card {
    height: 400px;
  }
  .osteo-card__body {
    padding: 28px 24px;
  }
  .osteo-card__title {
    font-size: 1.4rem;
  }
}

/* ============================================================
   LYMPHEDEMA SECTION
   ============================================================ */

.lymph-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.lymph-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a6fa8;
  margin: 0 0 14px;
}

.lymph-title {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0a1e3c;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.lymph-title span {
  color: #1a6fa8;
}

.lymph-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 28px;
}

.lymph-points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lymph-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.5;
}

.lymph-points li i {
  color: #1a6fa8;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.lymph-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lymph-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1a6fa8;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid #1a6fa8;
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.lymph-btn-primary:hover {
  background: #3badd4;
  border-color: #3badd4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 195, 235, 0.3);
}

.lymph-btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a6fa8;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(91, 195, 235, 0.4);
  padding-bottom: 2px;
  transition:
    border-color 0.28s ease,
    color 0.28s ease;
}

.lymph-btn-outline:hover {
  border-color: #1a6fa8;
  color: #3badd4;
}

.lymph-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: visible;
}

.lymph-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  box-shadow: 0 20px 60px rgba(15, 61, 110, 0.12);
}

.lymph-stat-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(15, 61, 110, 0.12);
  border: 1px solid rgba(91, 195, 235, 0.15);
  min-width: 220px;
}

.lymph-stat-card i {
  font-size: 1.6rem;
  color: #1a6fa8;
  flex-shrink: 0;
}

.lymph-stat-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a1e3c;
  line-height: 1.2;
}

.lymph-stat-card span {
  font-size: 0.75rem;
  color: #718096;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .lymph-section {
    padding: 80px 0;
  }
  .lymph-image {
    height: 360px;
  }
  .lymph-stat-card {
    left: 0;
    bottom: -18px;
  }
}

@media (max-width: 575.98px) {
  .lymph-section {
    padding: 64px 0;
  }
  .lymph-image {
    height: 260px;
  }
  .lymph-stat-card {
    position: static;
    margin-top: 16px;
    min-width: unset;
    width: 100%;
  }
  .lymph-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   WHY US SECTION
   ============================================================ */

.why-us {
  padding: 56px 0;
  background: #ffffff;
}

.why-us__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a6fa8;
  margin-bottom: 12px;
}

.why-us__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0a1e3c;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.why-us__title span {
  color: #1a6fa8;
}

.why-us__intro {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #5a6a7e;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Cards */
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 28px;
  background: #f8fafc;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  height: 100%;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.why-card:hover {
  border-color: #1a6fa8;
  box-shadow: 0 10px 36px rgba(91, 195, 235, 0.1);
  transform: translateY(-3px);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(91, 195, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #1a6fa8;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.why-card:hover .why-card__icon {
  background: #1a6fa8;
  color: #ffffff;
}

.why-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a1e3c;
  margin-bottom: 8px;
}

.why-card__text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #5a6a7e;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .why-us {
    padding: 40px 0;
  }
}
@media (max-width: 767.98px) {
  .why-us {
    padding: 24px 0;
  }
}

/* Osteopathy variant — navy colours */
.why-us__eyebrow--osteo {
  color: var(--primary);
}
.why-us__title--osteo span {
  color: var(--primary);
}

.why-card--osteo .why-card__icon {
  background: rgba(15, 61, 110, 0.07);
  color: var(--primary);
}

.why-card--osteo:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 36px rgba(15, 61, 110, 0.1);
}

.why-card--osteo:hover .why-card__icon {
  background: var(--primary);
  color: #ffffff;
}

/* ============================================================
   BREAST CANCER SECTION
   ============================================================ */

.breast-section {
  padding: 60px 0;
  background: #f8fafc;
  overflow: hidden;
}

.breast-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

.breast-title {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0a1e3c;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.breast-title span {
  color: var(--primary);
}

.breast-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 20px;
}

.breast-text:last-of-type {
  margin-bottom: 32px;
}

.breast-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.breast-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid var(--primary);
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.breast-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 61, 110, 0.25);
}

.breast-btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(15, 61, 110, 0.35);
  padding-bottom: 2px;
  transition:
    border-color 0.28s ease,
    color 0.28s ease;
}

.breast-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .breast-section {
    padding: 48px 0;
  }
}

@media (max-width: 767.98px) {
  .breast-section {
    padding: 40px 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #07213f;
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 0;
  font-size: 15px;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer__logo img {
  height: 85px;
  width: auto;
  display: block;
  margin-top: -25px;
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.site-footer__subscribe-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin: 0 0 14px;
}

.site-footer__form-row {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.site-footer__form-row input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.site-footer__form-row input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.site-footer__form-row button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary, #0f3d6e);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.site-footer__form-row button:hover {
  background: #1a5490;
}

.site-footer__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.site-footer__consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  accent-color: var(--primary, #0f3d6e);
  cursor: pointer;
}

.site-footer__consent-label span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.site-footer__consent-label a {
  color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 2px;
}

.site-footer__consent-label a:hover {
  color: #fff;
}

.site-footer__divider {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 0;
}

.site-footer__widgets {
  padding: 48px 0 40px;
}

.site-footer__widget-title, .site-footer__widget-title a {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 14px;
  text-decoration:none;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.22s ease,
    padding-left 0.22s ease;
  display: inline-block;
}

.site-footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.site-footer__contact {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 15px;
}

.site-footer__contact i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.site-footer__contact a,
.site-footer__contact span {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.22s ease;
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  gap: 8px;
}

.site-footer__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  text-decoration: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.site-footer__social a:hover {
  background: var(--primary, #0f3d6e);
  border-color: var(--primary, #0f3d6e);
  color: #fff;
}

.site-footer__bottom {
  padding: 18px 0;
}

.site-footer__copyright, .site-footer__copyright a  {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-decoration:none
}

.site-footer__legal-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.22s ease;
}

.site-footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__legal-link a {
  color: #1a6fa8;
  text-decoration: none;
  transition: color 0.22s ease;
}

.site-footer__legal-link a:hover {
  color: #7ed4f5;
}

.site-footer__legal-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
  font-size: 0.75rem;
}

@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 44px;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 36px;
  }
  .site-footer__form-row {
    flex-direction: column;
  }
  .site-footer__form-row button {
    justify-content: center;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: 80px 0 0;
  background: #fff;
}

.contact-info-box {
  background: #f8fafd;
  border: 1px solid rgba(15, 61, 110, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
  height: 100%;
}

.contact-info-box:hover {
  box-shadow: 0 8px 28px rgba(15, 61, 110, 0.1);
  transform: translateY(-3px);
}

.contact-info-box__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 61, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  color: var(--primary, #0f3d6e);
  transition:
    background 0.28s ease,
    color 0.28s ease;
}

.contact-info-box:hover .contact-info-box__icon {
  background: var(--primary, #0f3d6e);
  color: #fff;
}

.contact-info-box__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a1e3c;
  margin: 0 0 8px;
}

.contact-info-box__text {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.contact-info-box__text a {
  color: var(--primary, #0f3d6e);
  text-decoration: none;
  transition: color 0.22s ease;
}

.contact-info-box__text a:hover {
  color: var(--primary-dark, #0a2d54);
}

.contact-form__heading {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0a1e3c;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.contact-form__sub {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 28px;
}

.contact-form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.contact-form__label span {
  color: var(--primary, #0f3d6e);
}

.contact-form__input {
  width: 100%;
  background: #f8fafd;
  border: 1.5px solid rgba(15, 61, 110, 0.12);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #0a1e3c;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  appearance: none;
}

.contact-form__input:focus {
  border-color: var(--primary, #0f3d6e);
  box-shadow: 0 0 0 3px rgba(15, 61, 110, 0.08);
  background: #fff;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact-form__consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--primary, #0f3d6e);
  cursor: pointer;
}

.contact-form__consent-label span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-form__consent-label a {
  color: var(--primary, #0f3d6e);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary, #0f3d6e);
  color: #fff;
  border: 1.5px solid var(--primary, #0f3d6e);
  border-radius: 6px;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-form__submit:hover {
  background: transparent;
  color: var(--primary, #0f3d6e);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 61, 110, 0.15);
}

.contact-side {
  background: #f8fafd;
  border: 1px solid rgba(15, 61, 110, 0.08);
  border-radius: 12px;
  padding: 36px 32px;
  transition: box-shadow 0.28s ease;
}

@media (min-width: 992px) {
  .contact-side.is-sticky {
    position: fixed;
    z-index: 50;
    box-shadow: 0 8px 32px rgba(15, 61, 110, 0.12);
  }

  .contact-side.is-sticky-bottom {
    position: absolute;
    bottom: 0;
    top: auto !important;
  }
}

.contact-side__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a1e3c;
  margin: 0 0 12px;
}

.contact-side__text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 20px;
}

.contact-side__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary, #0f3d6e);
  text-decoration: none;
  transition: color 0.22s ease;
}

.contact-side__tel:hover {
  color: var(--primary-dark, #0a2d54);
}

.contact-side__divider {
  border-color: rgba(15, 61, 110, 0.1);
  margin: 24px 0;
}

.contact-side__hours-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a1e3c;
  margin: 0 0 14px;
}

.contact-side__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-side__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #4a5568;
}

.contact-side__hours li strong {
  color: #0a1e3c;
  font-weight: 600;
}

.contact-side__social {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.contact-side__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 61, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #0f3d6e);
  font-size: 0.8rem;
  text-decoration: none;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.contact-side__social a:hover {
  background: var(--primary, #0f3d6e);
  border-color: var(--primary, #0f3d6e);
  color: #fff;
}

.contact-map {
  margin-top: 80px;
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(15%);
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 60px 0 0;
  }
  .contact-map {
    margin-top: 60px;
  }
  .contact-map iframe {
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 48px 0 0;
  }
  .contact-side {
    padding: 28px 20px;
  }
  .contact-map iframe {
    height: 260px;
  }
}

/* ============================================================
   PAGE HERO (breadcrumb-style hero με logo)
   ============================================================ */

.page-hero {
  background: var(--primary, #0a2d54);
  padding: 48px 0;
  text-align: center;
}

.page-hero--blue {
  background: #1a6fa8;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-hero-logo img {
  height: 120px;
  width: auto;
}

.page-hero-title {
  font-family: var(--font-heading, "Manrope", sans-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 20px;
  --bs-breadcrumb-divider: "›";
}

.page-hero-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.page-hero-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: color 0.22s ease;
}

.page-hero-breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}

.page-hero-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767.98px) {
  .page-hero {
    padding: 36px 16px;
  }

  .page-hero-logo img {
    height: 80px;
  }

  .page-hero-title {
    font-size: 1.35rem;
  }

  /* Κρύβουμε τα ενδιάμεσα breadcrumb items — εμφανίζεται μόνο το active */
  .page-hero-breadcrumb .breadcrumb-item:not(.active) {
    display: none;
  }

  .page-hero-breadcrumb .breadcrumb-item.active::before {
    display: none;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.page-breadcrumb {
  background: #f4f7fb;
  border-bottom: 1px solid rgba(15, 61, 110, 0.07);
  padding: 12px 0;
  margin-top: 0;
}

.page-breadcrumb .breadcrumb-item a {
  color: var(--primary, #0f3d6e);
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.22s ease;
}

.page-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-dark, #0a2d54);
}

.page-breadcrumb .breadcrumb-item.active {
  color: #64748b;
  font-size: 0.875rem;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(15, 61, 110, 0.3);
}

/* ============================================================
   ABOUT ROWS
   ============================================================ */

.about-rows {
  padding: 96px 0 0;
  background: #ffffff;
}

.about-row {
  padding-bottom: 80px;
  border-bottom: 1px solid #eef1f5;
  margin-bottom: 80px;
}

.about-row--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 96px;
}

@media (min-width: 992px) {
  .about-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.about-row__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-row__img-wrap:hover .about-row__img {
  transform: scale(1.03);
}

.about-row__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-row__title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0a1e3c;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-row__title span {
  color: var(--primary);
}

.about-row__text p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #5a6a7e;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

@media (max-width: 991.98px) {
  .about-rows {
    padding-top: 72px;
  }
  .about-row {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .about-row--last {
    padding-bottom: 72px;
  }
}

@media (max-width: 767.98px) {
  .about-rows {
    padding-top: 56px;
  }
  .about-row {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
  .about-row--last {
    padding-bottom: 56px;
  }
}

/* ============================================================
   SERVICE PAGE — LYMPHEDEMA THEME OVERRIDES
   Applied via .page-wrapper--lymph on service-page-l.html
   ============================================================ */

/* Scoped only to service detail & FAQ — not footer */
.page-wrapper--lymph .osteo-services__eyebrow {
  color: #1a6fa8;
}
.page-wrapper--lymph .osteo-services__title span {
  color: #1a6fa8;
}
.page-wrapper--lymph .svc-detail__eyebrow {
  color: #1a6fa8;
}
.page-wrapper--lymph .svc-detail__heading span {
  color: #1a6fa8;
}
.page-wrapper--lymph .svc-detail__section-title span {
  color: #1a6fa8;
}
.page-wrapper--lymph .svc-detail__heading--dark {
  color: #0a1e3c;
}

/* Process section eyebrow — white on dark bg */
.page-wrapper--lymph .svc-detail__process .svc-detail__eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.page-wrapper--lymph .svc-detail__process .svc-detail__section-title {
  color: #ffffff;
}

.page-wrapper--lymph .svc-benefit-item__num {
  color: #d6f0fa;
}
.page-wrapper--lymph .svc-benefit-item:hover .svc-benefit-item__num {
  color: #1a6fa8;
  opacity: 0.2;
}

.page-wrapper--lymph .svc-conditions__item {
  color: #0a7a9a;
  background: rgba(91, 195, 235, 0.08);
  border-color: rgba(91, 195, 235, 0.2);
}

.page-wrapper--lymph .svc-conditions__item:hover {
  background: #1a6fa8;
  color: #ffffff;
  border-color: #1a6fa8;
}

.page-wrapper--lymph .svc-process__num {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-wrapper--lymph .faq-section__eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.page-wrapper--lymph .faq-section__title span {
  color: rgba(255, 255, 255, 0.7);
}

.page-wrapper--lymph .faq-btn {
  color: #0a1e3c;
}
.page-wrapper--lymph .faq-btn:not(.collapsed) {
  color: #1a6fa8;
}
.page-wrapper--lymph .faq-btn::before {
  border-color: #1a6fa8;
  color: #1a6fa8;
}
.page-wrapper--lymph .faq-btn:not(.collapsed)::before {
  background: #1a6fa8;
  border-color: #1a6fa8;
  color: #ffffff;
}

.page-wrapper--lymph .faq-section__overlay {
  background: linear-gradient(
    160deg,
    rgba(10, 61, 79, 0.72) 0%,
    rgba(0, 123, 160, 0.55) 100%
  );
}

/* ============================================================
   SERVICE DETAIL
   ============================================================ */

/* Shared typography */
.svc-detail__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.svc-detail__heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0a1e3c;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.svc-detail__heading span {
  color: var(--primary);
}
.svc-detail__heading--dark {
  color: #0a1e3c;
}

.svc-detail__section-title span {
  color: var(--primary);
}

.svc-detail__section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0a1e3c;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.svc-detail__lead, .svc-detail__body strong {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #0a1e3c;
  line-height: 1.6;
  margin-bottom: 20px;
}

.svc-detail__body {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #5a6a7e;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── Part 1: Intro ─────────────────────────────────────────── */
.svc-detail__intro {
  padding: 80px 0 72px;
  background: #ffffff;
  border-bottom: 1px solid #eef1f5;
}

.svc-detail__intro-img {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.svc-detail__intro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Part 2: Benefits ──────────────────────────────────────── */
.svc-detail__benefits {
  padding: 80px 0;
  background: #f8fafc;
}

.svc-benefit-item {
  border-bottom: 1px solid #dde3ec;
}

.svc-benefit-item:nth-child(odd) {
  border-right: 1px solid #dde3ec;
}

/* remove right border on last row if grid is 2-col */
@media (min-width: 992px) {
  .svc-benefit-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 991.98px) {
  .svc-benefit-item:nth-child(odd) {
    border-right: none;
  }
  .svc-benefit-item:last-child {
    border-bottom: none;
  }
}

.svc-benefit-item__inner {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .svc-benefit-item:nth-child(odd) .svc-benefit-item__inner {
    padding-right: 48px;
  }
  .svc-benefit-item:nth-child(even) .svc-benefit-item__inner {
    padding-left: 48px;
  }
}

.svc-benefit-item__num {
  font-family: "Manrope", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #e8edf3;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  user-select: none;
  transition: color 0.3s ease;
}

.svc-benefit-item:hover .svc-benefit-item__num {
  color: var(--primary);
  opacity: 0.15;
}

.svc-benefit-item__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1e3c;
  margin-bottom: 10px;
}

.svc-benefit-item__text {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Part 3: For whom ──────────────────────────────────────── */
.svc-detail__forwhom {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
}

.svc-conditions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.svc-conditions__item {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(15, 61, 110, 0.06);
  border: 1px solid rgba(15, 61, 110, 0.14);
  border-radius: 100px;
  padding: 10px 20px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: default;
}

.svc-conditions__item:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ── Part 4: Process ───────────────────────────────────────── */
.svc-detail__process {
  padding: 80px 0;
  background: #0a1e3c;
}

.page-wrapper--lymph .svc-detail__process {
  background: #0a1e3c;
}

.svc-detail__process .svc-detail__eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.svc-detail__process .svc-detail__section-title {
  color: #ffffff;
}

.svc-process {
  position: relative;
}

.svc-process__step-inner {
  padding: 0 32px 0 0;
  position: relative;
}

.svc-process__num {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary, #0f3d6e);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.svc-process__title {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.svc-process__text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Mobile stacking */
@media (max-width: 767.98px) {
  .svc-detail__intro,
  .svc-detail__benefits,
  .svc-detail__forwhom,
  .svc-detail__process {
    padding: 56px 0;
  }

  .svc-process__step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .svc-process__step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .svc-process__step-inner {
    padding: 0;
  }

  .svc-benefit-item__num {
    font-size: 2.5rem;
  }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
  padding: 50px 0;
  background: #f8fafd;
}

/* Image with overlay */
.faq-section__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.faq-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 29, 60, 0.72) 0%,
    rgba(15, 61, 110, 0.55) 100%
  );
}

.faq-section__overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
}

.faq-section__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.faq-section__title {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
}

.faq-section__title span {
  color: rgba(255, 255, 255, 0.75);
}

.faq-item {
  border: none;
  border-bottom: 1px solid #e8edf3;
  background: transparent;
}

.faq-item:first-child {
  border-top: 1px solid #e8edf3;
}

.faq-btn {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a1f3c;
  background: transparent;
  padding: 24px 48px 24px 0;
  box-shadow: none;
  border: none;
  position: relative;
}

.faq-btn:focus {
  box-shadow: none;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.faq-btn:not(.collapsed) {
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

/* Custom chevron — replaces Bootstrap default */
/* Override Bootstrap's default chevron entirely */
.faq-btn::after {
  display: none;
}

.faq-btn::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  color: currentColor;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  box-sizing: border-box;
}

.faq-btn:not(.collapsed)::before {
  content: "−";
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.faq-body {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #5a6a7e;
  line-height: 1.75;
  padding: 0 48px 24px 0;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 20px 0;
  }
  .faq-section__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 20px 0;
  }
  .faq-section__title {
    font-size: 1.45rem;
  }
  .faq-btn {
    font-size: 0.95rem;
    padding: 20px 40px 20px 0;
  }
  .faq-body {
    padding-right: 40px;
  }
}

/* ============================================================
   CTA MODAL
   ============================================================ */

.cta-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.cta-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dde3ec;
  background: #ffffff;
  color: #5a6a7e;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cta-modal__close:hover {
  background: #f4f7fb;
  color: #0a1e3c;
}

/* Left: form col */
.cta-modal__form-col {
  padding: 48px 40px;
  background: #ffffff;
}

.cta-modal__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.cta-modal__title {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a1e3c;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta-modal__title span {
  color: var(--primary);
}

.cta-modal__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #5a6a7e;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-modal__label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a1e3c;
  margin-bottom: 6px;
  display: block;
}

.cta-modal__label span {
  color: var(--primary);
}

.cta-modal__input {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #0a1e3c;
  background: #f8fafc;
  border: 1px solid #dde3ec;
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  appearance: none;
}

.cta-modal__textarea {
  resize: vertical;
  min-height: 80px;
}

.cta-modal__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 61, 110, 0.08);
  background: #ffffff;
}

.cta-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.cta-modal__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.cta-modal__consent span {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #5a6a7e;
  line-height: 1.5;
}

.cta-modal__consent span a {
  color: var(--primary);
  text-decoration: underline;
}

.cta-modal__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cta-modal__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Right: call col */
.cta-modal__call-col {
  background: linear-gradient(160deg, #0a2d54 0%, #0f3d6e 100%);
}

.cta-modal__call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 48px 32px;
  gap: 12px;
}

.cta-modal__call-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-modal__call-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.cta-modal__call-num {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.cta-modal__call-num:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cta-modal__call-hours {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-modal__full-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-top: 8px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.cta-modal__full-link:hover {
  color: #ffffff;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .cta-modal__form-col {
    padding: 36px 24px;
  }
  .cta-modal__call {
    padding: 36px 24px;
  }
  .cta-modal__title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2d54 0%, #0f3d6e 60%, #1a5490 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-banner__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 12px;
}

.cta-banner__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.cta-banner__title span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary, #0f3d6e);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  border: 2px solid #fff;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.cta-banner__btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .cta-banner {
    padding: 64px 0;
  }
}

@media (max-width: 575.98px) {
  .cta-banner {
    padding: 52px 0;
  }
  .cta-banner__title {
    font-size: 1.35rem;
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */

.custom-padding {
  padding: 0 3%;
}

.breadcrumb {
  align-items: center;
}

@media (max-width: 576px) {
  .svc-detail__intro-img {
    min-height: auto;
  }
}

/* ============================================================
   TYPOGRAPHY REFERENCE SECTION
   ============================================================ */

.typography-reference {
  background: #f8fafc;
  padding: 80px 0;
}

.typo-row {
  padding: 32px 0;
}

.typo-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0;
}

/* Meta column — tag + specs */
.typo-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.typo-tag {
  display: inline-block;
  background: var(--primary, #0f3d6e);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.typo-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.typo-specs li {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
}

/* Preview column — actual rendered element */
.typo-preview {
  margin: 0;
  padding: 0;
  color: var(--dark, #0a1628);
}

.typo-h1 {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.typo-h2 {
  font-family: "Manrope", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.typo-h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.typo-h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
}

.typo-h5 {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.typo-h6 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.typo-body-lg {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #334155;
}

.typo-body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #475569;
}

.typo-small {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .typography-reference {
    padding: 56px 0;
  }
  .typo-h1 {
    font-size: 2rem;
  }
  .typo-h2 {
    font-size: 1.6rem;
  }
  .typo-h3 {
    font-size: 1.35rem;
  }
  .typo-meta {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .typo-specs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .typo-specs li::after {
    content: "·";
    margin-left: 6px;
  }
  .typo-specs li:last-child::after {
    content: "";
  }
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  display: none;
}

@media (min-width: 568px) and (max-width: 767.98px) {
  .header-brand .navbar-brand img {
    height: 105px;
  }
}

.page-hero-inner nav {
  margin-top: 20px;
}
