@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Stack+Sans+Text:wght@200..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #001a4d;
  --accent-cyan: #00b4d8;
  --accent-light-cyan: #caf0f8;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --border-radius: 16px;
  --parent-width: 280px;
  --child-width: 300px;
  --panel-gap: 14px;

  --surface: #ffffff;
  --border-soft: rgba(0, 26, 77, 0.08);
  --shadow-panel: 0 20px 60px -12px rgba(0, 26, 77, 0.28), 0 4px 16px -4px rgba(0, 26, 77, 0.12);
  --ease-premium: cubic-bezier(0.19, 1, 0.22, 1);

  --vpc-navy-2: #002766;
  --vpc-bg-soft: #f6f9fc;
  --vpc-bg-mist: #eef6fb;
  --vpc-white: #ffffff;
  --vpc-border: #e6ecf3;
  --vpc-shadow-sm: 0 4px 16px rgba(0, 26, 77, 0.06);
  --vpc-shadow-md: 0 12px 40px rgba(0, 26, 77, 0.1);
  --vpc-shadow-lg: 0 24px 60px rgba(0, 26, 77, 0.14);
  --vpc-radius: 18px;
  --vpc-radius-sm: 12px;
  --vpc-font-display: "Inter", sans-serif;
  --vpc-font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif !important;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f8 100%);
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--accent-light-cyan);
  border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--primary-dark));
  border-radius: var(--border-radius);
  border: 2px solid var(--accent-light-cyan);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--accent-cyan));
}

::-webkit-scrollbar-corner {
  background: var(--accent-light-cyan);
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 50px !important;
  display: inline-flex !important;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- NAVBAR */
.navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.nav-item {
  position: relative;
}

.navbar.scrolled {
  padding: 8px 0;
}

.navbar-brand {
  width: 170px;
}

.navbar-brand img {
  width: 100%;
  height: auto;
}

.nav-link {
  color: #444 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.nav-link.active {
  color: var(--accent-cyan) !important;
  font-weight: 600;
}

@media (min-width: 992px) {

  .navbar-collapse {
    flex-basis: auto !important;
    flex-grow: 0 !important;
    justify-content: center;
  }

  .navbar-nav {
    margin: 0 auto !important;
    gap: 10px;
  }

}

/* ============================================================= CONDITIONS DROPDOWN ================================================================= */
.nav-item-conditions {
  position: relative;
}

.trigger-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-item-conditions.open .trigger-arrow {
  transform: rotate(-135deg);
}

.panel-wrap {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 594px;
  min-height: 20px;
  z-index: 1200;
  display: none;
}

.nav-item-conditions.open .panel-wrap {
  display: block;
}

.panel-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--parent-width);
  max-height: calc(100vh - 110px);
  padding: 8px 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 26, 77, 0.16);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-light-cyan) transparent;
}

.panel-primary::-webkit-scrollbar {
  width: 5px;
}

.panel-primary::-webkit-scrollbar-track {
  background: transparent;
}

.panel-primary::-webkit-scrollbar-thumb {
  background: var(--accent-light-cyan);
  border-radius: 6px;
}

.cond-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}


.cond-link {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 12px 8px 12px 20px;
  color: var(--text-dark);
  background: transparent;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.cond-link:hover {
  color: var(--text-dark);
  background: #f4f6f9;
}

.cond-expand {
  flex: 0 0 42px;
  width: 42px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cond-expand:hover {
  background: #f4f6f9;
}

.cond-row.active .cond-link {
  color: var(--accent-cyan);
  font-weight: 600;
  background: #f4f6f9;
}

.cond-row.active .cond-expand {
  background: #f4f6f9;
}

.chevron-right {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--text-gray);
  border-bottom: 2px solid var(--text-gray);
  transform: rotate(-45deg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.cond-row.active .chevron-right {
  border-color: var(--accent-cyan);
  transform: rotate(135deg);
}

.panel-secondary {
  position: absolute;
  top: 0;
  left: calc(var(--parent-width) + var(--panel-gap));
  width: var(--child-width);
  /* height: fit-content !important; */
  max-height: 400px;
  padding: 8px 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 26, 77, 0.16);
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease,
    top 0.12s ease,
    left 0.12s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-light-cyan) transparent;
}

.panel-secondary::-webkit-scrollbar {
  width: 5px;
}

.panel-secondary::-webkit-scrollbar-track {
  background: transparent;
}

.panel-secondary::-webkit-scrollbar-thumb {
  background: var(--accent-light-cyan);
  border-radius: 6px;
}

.panel-secondary.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.panel-secondary a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.panel-secondary a:hover {
  background: var(--accent-light-cyan);
  color: var(--primary-dark);
}

.panel-secondary a.overview-link {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4px;
}

.panel-secondary a.overview-link:hover {
  background: transparent;
  color: var(--accent-cyan);
}

.info-card {
  width: min(620px, calc(100% - 30px));
  margin: 70px auto 0;
  padding: 22px 26px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 26, 77, 0.06);
}

.info-card h5 {
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.info-card p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .conditions-trigger {
    width: 100%;
    /* padding: 10px 0px 10px 15px; */
  }

  .panel-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    margin-top: 5px;
  }

  .panel-primary {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: min(55vh, 450px);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 26, 77, 0.12);
  }

  .panel-secondary {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: 100%;
    max-height: min(40vh, 350px);
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 26, 77, 0.12);
    transform: translateY(-6px);
  }

  .panel-secondary.show {
    transform: translateY(0);
  }

  .book-btn {
    margin-top: 15px;
  }

  .info-card {
    margin-top: 35px;
  }
}

@media (max-width: 767.98px) {

  .panel-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100dvh;
    min-height: 100dvh;

    padding-top: 64px;

    background: #ffffff;

    overflow-y: auto;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .panel-primary {
    position: relative;
    top: auto;
    left: auto;

    width: 100%;
    max-height: none;

    overflow: visible;

    padding: 0 0 30px;

    border-radius: 0;
    box-shadow: none;
  }

  .cond-row {
    width: 100%;

    display: flex;
    align-items: stretch;
    flex-wrap: wrap;

    border-bottom: 1px solid var(--border-light);
  }

  .cond-link {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;

    padding: 14px 15px;

    font-size: 14px;
  }

  .cond-expand {
    flex: 0 0 50px;
    width: 50px;
    min-height: 50px;
  }

  /* MOBILE CHILD DROPDOWN */
  .panel-secondary {
    position: relative !important;

    top: auto !important;
    left: auto !important;

    width: 100%;

    max-height: 0 !important;

    margin: 0;
    padding: 0;

    background: #f8fafc;

    border-radius: 0;
    border: 0;
    box-shadow: none;

    overflow: hidden;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;

    transition:
      max-height 0.4s ease,
      padding 0.3s ease;
  }

  /* OPEN */
  .panel-secondary.show {
    max-height: 600px !important;
    padding: 5px 0 8px;
  }

  .panel-secondary a {
    display: block;
    width: 100%;

    padding: 11px 20px 11px 30px;

    font-size: 13.5px;
    line-height: 1.45;

    color: var(--text-dark);
    text-decoration: none;

    border-bottom: 1px solid #edf0f4;
  }

  .panel-secondary a:last-child {
    border-bottom: 0;
  }

  .panel-secondary a:hover {
    background: var(--accent-light-cyan);
    color: var(--primary-dark);
  }

  .panel-secondary a.overview-link {
    padding: 10px 20px 10px 30px;

    background: #f3f7fa;
    color: var(--accent-cyan);

    font-size: 11.5px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    border-bottom: 1px solid #e5e9ef;
  }
}

@media (max-width: 575.98px) {
  .cond-link {
    padding: 13px 14px;
    font-size: 14px;
  }

  .cond-expand {
    flex-basis: 48px;
    width: 48px;
  }

  .panel-secondary a {
    padding: 11px 15px 11px 28px;
    font-size: 13.5px;
  }

  .info-card {
    width: calc(100% - 20px);
    margin-top: 25px;
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .cond-link {
    font-size: 13.5px;
  }

  .panel-secondary a {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }
}

/* =================================================== TREATMENTS DROPDOWN =============================================================== */
.treatments-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: none;
  z-index: 9999;
}

.tm-parent {
  width: 300px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-panel);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition:
    opacity 0.32s var(--ease-premium),
    transform 0.32s var(--ease-premium),
    visibility 0s linear 0.32s;
}

.nav-item.is-open .tm-parent {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.32s var(--ease-premium),
    transform 0.32s var(--ease-premium),
    visibility 0s linear 0s;
  pointer-events: auto;
}

.tm-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.tm-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 9px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.tm-cat:hover,
.tm-cat.is-active {
  background: var(--accent-light-cyan);
}

.tm-cat-icon {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 9px;
  background: rgba(0, 26, 77, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.tm-cat:hover .tm-cat-icon,
.tm-cat.is-active .tm-cat-icon {
  background: var(--accent-cyan);
}

.tm-cat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-dark);
  transition: stroke 0.2s ease;
}

.tm-cat:hover .tm-cat-icon svg,
.tm-cat.is-active .tm-cat-icon svg {
  stroke: #fff;
}

.tm-cat-text {
  flex: 1;
  min-width: 0;
}

.tm-cat-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.3;
}

.tm-cat-sub {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 1px;
}

.tm-cat-arrow {
  width: 16px;
  height: 16px;
  flex: none;
  stroke: var(--text-gray);
  transition:
    transform 0.25s var(--ease-premium),
    stroke 0.2s ease;
}

.tm-cat:hover .tm-cat-arrow,
.tm-cat.is-active .tm-cat-arrow {
  transform: translateX(3px);
  stroke: var(--accent-cyan);
}

.tm-active-indicator {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 0px;
  background: transparent;
  border-radius: 9px;
  pointer-events: none;
  border: 1px solid rgba(0, 180, 216, 0.35);
  transition:
    top 0.35s var(--ease-premium),
    height 0.35s var(--ease-premium),
    opacity 0.2s ease;
  opacity: 0;
}

.tm-child {
  width: 300px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-panel);
  padding: 10px 10px 5px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition:
    opacity 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium),
    visibility 0s linear 0.3s;
  max-height: 420px;
  overflow-y: auto;
}

.tm-child.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity 0.3s var(--ease-premium),
    transform 0.3s var(--ease-premium),
    visibility 0s linear 0s;
  pointer-events: auto;
}

.tm-child::-webkit-scrollbar {
  width: 6px;
}

.tm-child::-webkit-scrollbar-thumb {
  background: var(--accent-light-cyan);
  border-radius: 6px;
}

.tm-child-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.tm-child-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}

.tm-treat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.tm-treat-item {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.32s var(--ease-premium),
    transform 0.32s var(--ease-premium);
}

.tm-child.is-visible .tm-treat-item {
  opacity: 1;
  transform: none;
}

.tm-treat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
}

.tm-treat-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-gray);
  flex: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.tm-treat-link:hover {
  background: var(--accent-light-cyan);
  color: var(--primary-dark);
  padding-left: 14px;
}

.tm-treat-link:hover::before {
  background: var(--accent-cyan);
  transform: scale(1.4);
}

@media (max-width: 991.98px) {
  .treatments-mega {
    position: static;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.4s var(--ease-premium);
  }

  .nav-item.is-open .treatments-mega {
    max-height: 2000px;
  }

  .tm-parent {
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 4px 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .tm-active-indicator {
    display: none;
  }

  .tm-cat {
    padding: 13px 14px;
  }

  .tm-child {
    position: static;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      max-height 0.35s var(--ease-premium),
      padding 0.35s var(--ease-premium);
    background: #fafcff;
  }

  .tm-child.is-visible {
    max-height: 1200px;
    padding: 6px 14px 14px;
    transition:
      max-height 0.4s var(--ease-premium),
      padding 0.35s var(--ease-premium);
  }

  .tm-child-heading {
    display: none;
  }

  .tm-child-eyebrow {
    display: none;
  }

  .tm-treat-link {
    padding: 11px 10px 11px 22px;
  }
}

/* ======================================================================================== PAGES MEGA DROPDOWN =================================== */
.pages-dropdown {
  position: relative;
}

.pages-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pages-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.pages-dropdown:hover .pages-chevron {
  transform: rotate(180deg);
}

.pages-mega-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  width: 700px;
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 28px 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 26, 77, 0.08);
  border-radius: 16px;
  box-shadow:
    0 20px 50px rgba(0, 26, 77, 0.12),
    0 5px 15px rgba(0, 26, 77, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  z-index: 9999;
}

.pages-mega-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-left: 1px solid rgba(0, 26, 77, 0.08);
  border-top: 1px solid rgba(0, 26, 77, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.pages-dropdown:hover .pages-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pages-menu-column {
  min-width: 0;
}

.pages-menu-heading {
  margin-bottom: 13px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pages-menu-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  padding: 11px 10px;
  margin-bottom: 3px;
  text-decoration: none;
  border-radius: 10px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.pages-menu-item:hover {
  background: rgba(202, 240, 248, 0.35);
  transform: translateX(3px);
}

.pages-menu-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--accent-cyan);
  font-size: 16px;
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(135deg,
      rgba(202, 240, 248, 0.45),
      rgba(255, 255, 255, 0.9));
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.pages-menu-item:hover .pages-menu-icon {
  color: #ffffff;
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-1px);
}

.pages-menu-content {
  min-width: 0;
}

.pages-menu-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  transition: color 0.2s ease;
}


.pages-menu-item:hover .pages-menu-title {
  color: var(--primary-dark);
}

.pages-menu-description {
  max-width: 220px;
  color: var(--text-gray);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 400;
}

.pages-hiring-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  color: #25805b;
  background: rgba(37, 128, 91, 0.08);
  border: 1px solid rgba(37, 128, 91, 0.12);
  border-radius: 5px;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 991.98px) {

  .pages-mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 15px 0 10px;
    background: transparent;
  }

  .pages-mega-menu::before {
    display: none;
  }

  .pages-dropdown:hover .pages-mega-menu {
    transform: none;
  }

}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #001a4e;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  padding: 6px 6px 6px 15px;
  font-size: 16px;
  box-shadow: 0 5px 25px rgba(0, 26, 78, 0.2);
  transition: all 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 26, 78, 0.3);
  color: #fff;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: #fff;
  color: #001a4e;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.book-btn:hover .btn-icon {
  transform: rotate(-35deg);
}

@media (max-width: 991px) {
  .book-btn {
    width: 58% !important;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------------------------------------- Hero Section */
.hero-section {
  padding: 80px 0;
  overflow-x: clip;

  scrollbar-width: none;
}

.hero-section::-webkit-scrollbar {
  display: none;
}

.badge-tag {
  display: inline-block;
  background: rgba(0, 184, 212, 0.1);
  border: 1px solid #00b8d4;
  color: #00839e;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #001f3f;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  color: #00b8d4;
}

.hero-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.85rem;
  max-width: 500px;
}

.btn-learn-more {
  background: #001f3f;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-learn-more:hover {
  background: #003d5c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
}

.stats-container {
  display: flex;
  gap: 3rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: #001f3f;
  display: flex;
  justify-content: center;
}

.stat-label {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.3rem;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.doctor-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.heart-icon {
  position: absolute;
  top: 100px;
  right: 50px;
  font-size: 2.5rem;
  animation: heartbeat 1.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.avatar-chat {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.5s ease;
}

.avatar-img {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b8d4 0%, #0097a7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.chat-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
}

.chat-email {
  font-size: 0.8rem;
  color: #00b8d4;
  font-weight: 500;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-stat {
  position: absolute;
  bottom: 300px;
  left: 60px;
  background: white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: slideUp 0.6s ease 0.2s both;
}

.success-percentage {
  font-size: 2rem;
  font-weight: 600;
  color: #00b8d4;
}

.success-label {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 0.3rem;
  font-weight: 600;
  max-width: 90px;
}

.circular-progress {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#00b8d4 0% 85%, #e8f1f8 85% 100%);
  padding: 3px;
}

.circular-progress::after {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-nav .nav-link {
    margin-left: 0.8rem;
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .stats-container {
    gap: 1.98rem;
  }

  .heart-icon {
    top: 20px;
    right: 10px;
    font-size: 1.5rem;
  }

  .avatar-chat {
    bottom: 30px;
    right: -20px;
    padding: 0.7rem;
  }

  .success-stat {
    bottom: 60px;
    left: 20px;
    width: 85px;
    height: 85px;
  }

  .success-percentage {
    font-size: 1.3rem;
  }

  .success-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .cta-section {
    padding: 60px 0 !important;
  }

  .content-section {
    padding: 40px 0 !important;
  }

  .doctor-section {
    padding: 40px 0 !important;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .btn-appointment {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .test-title {
    font-size: 1.95rem !important;
  }

  .contact-content h2 {
    font-size: 2rem !important;
  }

  .hero-image-wrapper {
    margin-bottom: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .heart-icon {
    font-size: 1.2rem;
  }

  .avatar-chat {
    /* width: 120px; */
    display: none;
  }

  .success-stat {
    width: 80px;
    height: 80px;
    bottom: 150px;
    left: 10px;
  }

  .success-percentage {
    font-size: 1rem;
  }

  .circular-progress {
    width: 70px;
    height: 70px;
  }
}

/* -------------------------------------------------------------------------------------------------- ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
  overflow-x: clip;
}

.rounded-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-container:hover .rounded-image {
  transform: scale(1.02);
}

.about-badge {
  margin-bottom: 20px;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-light-cyan);
  color: var(--accent-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.main-heading {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.main-heading .highlight {
  color: var(--accent-cyan);
}

.description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 35px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  text-align: left;
}

.feature-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light-cyan);
  color: var(--accent-cyan);
  font-size: 24px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.btn-view-all {
  background-color: var(--primary-dark);
  padding: 12px 28px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-view-all:hover {
  background-color: #00285c;
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 26, 77, 0.3);
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .image-container {
    margin-bottom: 30px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .about-section {
    padding: 30px 0;
  }

  .main-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 0;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-text {
    font-size: 13px;
  }

  .btn-view-all {
    padding: 10px 25px;
    font-size: 15px;
  }

  .about-badge {
    margin-bottom: 16px;
  }

  .badge-text {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* ----------------------------------------------------------------------------------------------------- SERVICES SECTION */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5fafb 0%, #f0f7f9 100%);
  overflow-x: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-label {
  display: inline-block;
  background-color: #d4ede9;
  color: #1a7a6f;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.services-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin: 0 auto;
}

.services-title span {
  background: linear-gradient(135deg, #00a78e 0%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mySwiper {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 167, 142, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a78e 0%, #00d4aa 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 167, 142, 0.15);
  border-color: rgba(0, 167, 142, 0.2);
}

.service-icon {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg,
      rgba(0, 167, 142, 0.1) 0%,
      rgba(0, 212, 170, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  border: 2px solid rgba(0, 167, 142, 0.15);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.5s ease;
}

.service-card:hover .service-icon::before {
  left: 100%;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #00a78e 0%, #00d4aa 100%);
  border-color: #00a78e;
  transform: scale(1.1) rotate(5deg);
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter 0.4s ease;
}

.service-card:hover .service-icon img {
  filter: brightness(1.3);
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.3s ease;
  margin: 0;
  letter-spacing: -0.5px;
}

.service-card:hover .service-name {
  color: #00a78e;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #00a78e 0%, #00d4aa 100%);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 167, 142, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 167, 142, 0.4);
}

.swiper-button-next:disabled,
.swiper-button-prev:disabled {
  background: #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
  opacity: 0.5;
}

.swiper-button-next:disabled:hover,
.swiper-button-prev:disabled:hover {
  transform: none;
}

.swiper-pagination-bullet {
  background: rgba(0, 167, 142, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #00a78e 0%, #00d4aa 100%);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 167, 142, 0.3);
}

/* ============ ANIMATIONS ============ */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 28px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .service-icon img {
    width: 50px;
    height: 50px;
  }

  .service-name {
    font-size: 16px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 0;
  }

  .services-label {
    font-size: 12px;
    padding: 6px 16px;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-icon {
    width: 170px;
    height: 160px;
    margin-bottom: 15px;
  }

  .service-icon img {
    width: 80px;
    height: 80px;
  }

  .service-name {
    font-size: 15px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }

  .swiper-pagination {
    bottom: -30px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-title {
    font-size: 36px;
  }

  .service-card {
    padding: 35px 25px;
  }
}

.blogs-section {
  padding: 80px 0px;
  background-color: #ffffff;
  /*overflow-x: hidden;*/
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.badge-custom {
  display: inline-block;
  background-color: #d4f1f4;
  color: #0e7490;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  align-items: center;
}

.badge-custom::before {
  content: "●";
  margin-right: 8px;
  font-size: 10px;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001f3f;
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 0;
}

.view-all-btn {
  background-color: #001f3f;
  color: white;
  border: 2px solid #001f3f;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-btn:hover {
  background-color: #003d66;
  border-color: #003d66;
  transform: translateX(2px);
}

.view-all-btn::after {
  content: "→";
  font-size: 16px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.blog-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  align-items: end;
  height: 100%;
}

.blog-card-dark {
  background: linear-gradient(135deg, #001f3f 0%, #003d66 100%);
}

.blog-card-dark .blog-card-overlay {
  display: none;
}

.blog-card-dark .blog-card-content {
  color: white;
}

.blog-card-dark .blog-category {
  background-color: #d4f1f4;
  color: #0e7490;
}

.blog-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 0px;
  line-height: 1.4;
}

.blog-card-dark .blog-text {
  color: white;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-arrow-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-arrow-icon {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translate(2px, -2px);
}

.blog-card-dark .blog-arrow-icon {
  background-color: #b3f0f6;
  color: #001f3f;
}

.blog-card-dark:hover .blog-arrow-icon {
  background-color: #92e5ed;
}

.icon-placeholder {
  width: 80px;
  height: 80px;
  background-color: #b3f0f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #001f3f;
  margin: 0 auto 16px;
}

@media (max-width: 768px) {
  .blogs-section {
    padding: 40px 15px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .view-all-btn {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .blogs-section {
    padding: 30px 12px;
  }

  .blog-title {
    font-size: 1.75rem;
  }

  .blog-card {
    height: 300px;
    width: 100%;
  }

  .blog-category {
    font-size: 12px;
    padding: 5px 12px;
  }

  .blog-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .blog-date {
    font-size: 12px;
  }

  .view-all-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}

/* ----------------------------------------------------------------------------------------------- TESTIMONIALS SECTION */
.testimonials-section {
  padding: 80px 0px;
  overflow-x: hidden !important;
}

.section-badge {
  display: inline-block;
  background-color: #d4e8e4;
  color: #2d7a6e;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.test-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-description {
  font-size: 16px;
  color: #888;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.testimonials-container {
  position: relative;
}

.testimonials-wrapper {}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  margin: 0 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -35px;
  left: 30px;
  border: 4px solid white;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin: 30px 0 20px;
}

.testimonial-text {
  color: #999;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.testimonial-address {
  font-size: 14px;
  color: #999;
  text-decoration: none !important;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-button:hover {
  background: #2d7a6e;
  color: white;
}

.nav-button.prev {
  left: 0;
}

.nav-button.next {
  right: 0;
}

.nav-button i {
  font-size: 20px;
  color: #2d7a6e;
}

.nav-button:hover i {
  color: white;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }

  .section-title {
    font-size: 32px;
  }

  .testimonials-container {
    padding: 0 50px;
  }

  .nav-button {
    width: 40px;
    height: 40px;
  }

  .nav-button i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
}

/* ------------------------------------------------------------------------------------------------------- Contact Info with Map */
.contact-section {
  background: #ffffff;
  padding: 80px 0;
}

.contact-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #555;
}

.contact-item i {
  color: var(--accent-cyan);
  margin-right: 15px;
  font-size: 1.2rem;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.custom-map {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* ----------------------------------------------------------------------------------------------- CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--primary-dark);
  color: white;
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
}

.btn-secondary-custom {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f8 100%);
  color: black;
  padding: 14px 35px;
  border-radius: 30px;
  border: 2px solid var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-secondary-custom:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-content h1 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .map-container {
    height: 300px;
    margin-top: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-content h1 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

.footer-section {
  background-color: var(--primary-dark);
  color: white;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-light-cyan);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.521);
  margin: 2.5rem 0px 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}

.social-links .social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-cyan);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.social-links .social-icon:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-5px);
}

/* ----------------------------------------------------------------------------------------------------- VIDEO SECTION */
.video-section {
  padding: 80px 0;
  overflow-x: hidden;
}

.header-section {
  background: var(--accent-cyan);
  border-bottom: 1px solid var(--border-color);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  background-color: rgb(247, 245, 245);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: var(--primary-color);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-thumbnail {
  transform: scale(1.08);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.653);
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trending-badge {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: white;
}

.popular-badge {
  background: rgba(100, 200, 255, 0.2);
  color: #64c8ff;
  border-color: rgba(100, 200, 255, 0.4);
}

.recent-badge {
  background: rgba(100, 255, 200, 0.2);
  color: #64ffc8;
  border-color: rgba(100, 255, 200, 0.4);
}

.video-info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--);
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card:hover .video-title {
  color: var(--accent-light);
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.channel-name {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s;
}

.video-card:hover .channel-name {
  color: var(--accent-light);
}

.view-count {
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.likes {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.video-card:hover .likes {
  color: var(--accent-color);
}

.likes i {
  transition: transform 0.3s;
}

.video-card:hover .likes i {
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .header-section .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-buttons {
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .header-section h1 {
    font-size: 2rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .video-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .video-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-section {
    padding: 20px 0;
  }

  .header-section h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .header-section p {
    font-size: 0.85rem;
  }

  .filter-buttons {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .load-more-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-card {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.video-card:nth-child(1) {
  animation-delay: 0s;
}

.video-card:nth-child(2) {
  animation-delay: 0.1s;
}

.video-card:nth-child(3) {
  animation-delay: 0.2s;
}

.video-card:nth-child(4) {
  animation-delay: 0.3s;
}

.video-card:nth-child(5) {
  animation-delay: 0.4s;
}

.video-card:nth-child(6) {
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

/* ========================================================================= GALLERY SECTION ============================ */
/*.gallery-section {*/
/*  padding: 80px 0;*/
/*  background: #fff;*/
/*  overflow-x: hidden;*/
/*}*/

/*.gallery-title {*/
/*  font-size: 2rem;*/
/*  font-weight: 700;*/
/*}*/

/*.gallery-title .highlight {*/
/*  color: #00a4cc;*/
/*}*/

/*.gallery-swiper {*/
/*  width: 100%;*/
/*  padding-bottom: 10px;*/
/*}*/

/*.gallery-swiper .swiper-slide {*/
/*  display: flex;*/
/*}*/

/*.gallery-item {*/
/*  width: 100%;*/
/*  height: 250px;*/
/*  border-radius: 12px;*/
/*  overflow: hidden;*/
/*  position: relative;*/
/*  background: #f0f0f0;*/
/*}*/

/*.gallery-item img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  display: block;*/
/*  transition: transform 0.4s ease;*/
/*}*/

/*.gallery-item:hover img {*/
/*  transform: scale(1.05);*/
/*}*/

/*.gallery-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(119, 179, 244, 0.7);*/
/*  color: #fff;*/
/*  font-weight: 600;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  opacity: 0;*/
/*  border-radius: 12px;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*.gallery-item:hover .gallery-overlay {*/
/*  opacity: 1;*/
/*}*/

/*.gallery-controls {*/
/*  display: flex;*/
/*  align-items: center;*/
/*}*/

/*.control-btn {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border: none;*/
/*  background: #000;*/
/*  color: #fff;*/
/*  border-radius: 50%;*/
/*  font-size: 16px;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.control-btn:hover {*/
/*  background: #00a4cc;*/
/*}*/

/*@media (max-width: 991px) {*/
/*  .gallery-item {*/
/*    height: 220px;*/
/*  }*/
/*}*/

/*@media (max-width: 576px) {*/
/*  .gallery-item {*/
/*    height: 200px;*/
/*  }*/
/*}*/

/*.gallery-prev,*/
/*.gallery-next {*/
/*  position: relative;*/
/*  z-index: 20 !important;*/
/*  pointer-events: auto !important;*/
/*}*/

/*.gallery-controls {*/
/*  position: relative;*/
/*  z-index: 30;*/
/*}*/

/*.gallery-prev,*/
/*.gallery-next {*/
/*  transition: background 0.25s ease, transform 0.2s ease;*/
/*}*/

/*.gallery-prev:hover,*/
/*.gallery-next:hover {*/
/*  transform: scale(1.08);*/
/*}*/

/*.gallery-section {*/
/*  padding: 80px 0;*/
/*  background: #fff;*/
/*  overflow-x: hidden;*/
/*}*/

/*.gallery-title {*/
/*  font-size: 2rem;*/
/*  font-weight: 700;*/
/*}*/

/*.gallery-title .highlight {*/
/*  color: #00a4cc;*/
/*}*/

/*.gallery-swiper {*/
/*  width: 100%;*/
/*  padding-bottom: 10px;*/
/*  overflow: hidden;*/
/*  will-change: transform;*/
/*  transform: translateZ(0);*/
/*}*/

/*.gallery-swiper .swiper-wrapper {*/
/*  height: 260px !important;*/
/*}*/

/*.gallery-item {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  border-radius: 12px;*/
/*  overflow: hidden;*/
/*  position: relative;*/
/*  background: #f0f0f0;*/
/*}*/

/*.gallery-item img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  display: block;*/
/*  aspect-ratio: 16/9;*/
/*  transition: transform 0.4s ease;*/
/*  will-change: transform;*/
/*}*/

/*.gallery-item:hover img {*/
/*  transform: scale(1.04);*/
/*}*/

/*.gallery-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(119, 179, 244, 0.7);*/
/*  color: #fff;*/
/*  font-weight: 600;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  opacity: 0;*/
/*  border-radius: 12px;*/
/*  transition: opacity 0.3s ease;*/
/*}*/

/*.gallery-item:hover .gallery-overlay {*/
/*  opacity: 1;*/
/*}*/

/*.gallery-controls {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  position: relative;*/
/*  z-index: 30;*/
/*}*/

/*.control-btn {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border: none;*/
/*  background: #000;*/
/*  color: #fff;*/
/*  border-radius: 50%;*/
/*  font-size: 16px;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.control-btn:hover {*/
/*  background: #00a4cc;*/
/*  transform: scale(1.08);*/
/*}*/

/*.gallery-prev,*/
/*.gallery-next {*/
/*  position: relative;*/
/*  z-index: 50 !important;*/
/*  pointer-events: auto !important;*/
/*}*/

/*@media (max-width: 991px) {*/
/*  .gallery-swiper .swiper-wrapper {*/
/*    height: 220px !important;*/
/*  }*/
/*}*/

/*@media (max-width: 576px) {*/
/*  .gallery-swiper .swiper-wrapper {*/
/*    height: 200px !important;*/
/*  }*/
/*}*/

/*.conditions {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 10px;*/
/*  margin-top: 20px;*/
/*}*/

/*.pill {*/
/*  display: inline-block;*/
/*  width: fit-content;*/
/*  padding: 6px 14px;*/
/*  font-size: 14px;*/
/*  font-weight: 500;*/
/*  color: var(--primary-dark);*/
/*  background-color: var(--accent-light-cyan);*/
/*  border-radius: 999px;*/
/*  border: 1px solid var(--accent-cyan);*/
/*  transition: all 0.25s ease;*/
/*  text-decoration: none;*/
/*}*/

/*.pill:hover {*/
/*  background-color: var(--accent-cyan);*/
/*  color: #fff;*/
/*  border-color: var(--accent-cyan);*/
/*}*/

/* ==========================
   Gallery Section
========================== */

.gallery-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 700;
}

.gallery-title .highlight {
  color: #00a4cc;
}

/* ==========================
   Swiper
========================== */

.gallery-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}

.gallery-swiper .swiper-slide {
  display: flex;
  height: auto;
}

/* ==========================
   Gallery Item
========================== */

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Shows full image without cropping */
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ==========================
   Overlay
========================== */

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 164, 204, 0.7);
  color: #fff;
  font-weight: 600;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================
   Controls
========================== */

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}

.control-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #00a4cc;
  transform: scale(1.08);
}

.gallery-prev,
.gallery-next {
  position: relative;
  z-index: 20;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: 1.75rem;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .control-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* ==========================
   Pills
========================== */

.conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-block;
  width: fit-content;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-dark);
  background: var(--accent-light-cyan);
  border: 1px solid var(--accent-cyan);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pill:hover {
  background: var(--accent-cyan);
  color: #fff;
  border-color: var(--accent-cyan);
}

/* ------------------------------------------------------------------------------------------- FAQS SECTION */
#faq {
  max-width: 100%;
}

#faq h3 {
  color: var(--primary-dark);
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

#faq h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 70px;
  height: 4px;
  background: var(--accent-cyan);
  border-radius: 50px;
}

#faqAccordion {
  margin-top: 2rem;
}

#faqAccordion .accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 26, 77, 0.08);
  transition: all 0.3s ease;
}

#faqAccordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 26, 77, 0.12);
}

#faqAccordion .accordion-button {
  background: #fff;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.4rem 1.5rem;
  border: none;
  box-shadow: none;
  position: relative;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background: var(--accent-light-cyan);
  color: var(--primary-dark);
}

#faqAccordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

#faqAccordion .accordion-button::after {
  background-image: none;
  content: "+";
  width: auto;
  height: auto;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent-cyan);
  transform: none;
  transition: all 0.3s ease;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: var(--primary-dark);
}

#faqAccordion .accordion-body {
  padding: 1.5rem;
  color: var(--text-gray);
  line-height: 1.9;
  font-size: 0.98rem;
  background: #fff;
}

#faqAccordion .accordion-body ul {
  margin: 0;
  padding-left: 1.2rem;
}

#faqAccordion .accordion-body li {
  margin-bottom: 8px;
  color: var(--text-gray);
}

#faqAccordion .accordion-body strong {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  #faq h3 {
    font-size: 1.8rem;
  }

  #faqAccordion .accordion-button {
    font-size: 1rem;
    padding: 1.2rem;
  }

  #faqAccordion .accordion-body {
    padding: 1.2rem;
  }
}




/* ==================================================== NEW TREATMENTS PGES CSS ============================================================== */
.vpc-page h1,
.vpc-page h2,
.vpc-page h3,
.vpc-page h4,
.vpc-page h5 {
  font-family: var(--vpc-font-display);
  color: var(--primary-dark);
  margin: 0;
}

.vpc-page p {
  color: var(--text-gray);
  margin: 0;
}

.vpc-page a {
  text-decoration: none;
}

.vpc-page ::selection {
  background: var(--accent-light-cyan);
  color: var(--primary-dark);
}

/* ---------- Shared section + heading classes (ONLY ones used across sections) ---------- */
.vpc-section {
  padding: 80px 0;
  position: relative;
}

.vpc-section a {
  text-decoration: none;
}

.vpc-heading {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.vpc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vpc-font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  background: var(--accent-light-cyan);
  border: 1px solid rgba(0, 180, 216, 0.35);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.vpc-section-tag {
  text-align: center;
  display: block;
  margin: 0 auto 12px;
}

.vpc-section-sub {
  text-align: center;
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 16px;
}

/* ---------- Top breadcrumb ---------- */
.vpc-breadcrumb-bar {
  background: var(--vpc-bg-soft);
  border-bottom: 1px solid var(--vpc-border);
  padding: 13px 0;
  font-size: 13.5px;
}

.vpc-breadcrumb-bar a {
  color: var(--text-gray);
  font-weight: 500;
}

.vpc-breadcrumb-bar a:hover {
  color: var(--accent-cyan);
}

.vpc-breadcrumb-bar .vpc-current {
  color: var(--primary-dark);
  font-weight: 600;
}

.vpc-breadcrumb-bar .vpc-sep {
  margin: 0 8px;
  color: #b7c2d6;
}

/* ---------- Hero ---------- */
.vpc-hero {
  background: linear-gradient(180deg,
      var(--vpc-bg-soft) 0%,
      var(--vpc-white) 100%);
  padding: 60px 0;
}

.vpc-hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 14px;
}

.vpc-hero-subtitle {
  font-family: var(--vpc-font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.vpc-hero-subtitle .vpc-underline {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-decoration-color: var(--accent-cyan);
  text-underline-offset: 5px;
}

.vpc-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 32px;
}

.vpc-btn-primary {
  background: var(--primary-dark);
  color: #fff;
  border: 1.5px solid var(--primary-dark);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: var(--vpc-shadow-sm);
}

.vpc-btn-primary:hover {
  background: var(--vpc-navy-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--vpc-shadow-md);
}

.vpc-btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid #c9d3e3;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.vpc-btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: var(--accent-light-cyan);
}

.vpc-hero-img-wrap {
  position: relative;
  border-radius: var(--vpc-radius);
  overflow: hidden;
  box-shadow: var(--vpc-shadow-lg);
  /* aspect-ratio: 4/3; */
}

.vpc-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vpc-hero-btn-group a {
  text-decoration: none;
}

/* ---------- Stats strip ---------- */
.vpc-stats-wrap {
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.vpc-stats-card {
  background: var(--vpc-white);
  border-radius: var(--vpc-radius);
  box-shadow: var(--vpc-shadow-md);
  border: 1px solid var(--vpc-border);
  padding: 26px 10px;
}

.vpc-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 18px;
}

.vpc-stat-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: var(--accent-light-cyan);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.vpc-stat-label {
  font-size: 12.5px;
  color: var(--text-gray);
  font-weight: 500;
}

.vpc-stat-value {
  font-family: var(--vpc-font-display);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 15px;
}

.vpc-stat-divider {
  width: 1px;
  background: var(--vpc-border);
  align-self: stretch;
}

/* ---------- What is section ---------- */
.vpc-whatis-img {
  border-radius: var(--vpc-radius);
  overflow: hidden;
  box-shadow: var(--vpc-shadow-md);
  aspect-ratio: 4/3.1;
}

.vpc-whatis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vpc-whatis-text p {
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.vpc-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 22px;
}

.vpc-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--primary-dark);
}

.vpc-check-item i {
  color: var(--accent-cyan);
  background: var(--accent-light-cyan);
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ---------- Conditions carousel ---------- */
.vpc-conditions {
  background: var(--vpc-bg-mist);
}

.vpc-cond-card {
  flex: 0 0 auto;
  width: 158px;
  background: var(--vpc-white);
  border: 1px solid var(--vpc-border);
  border-radius: var(--vpc-radius-sm);
  padding: 26px 14px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
}

.vpc-cond-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--vpc-shadow-sm);
  transform: translateY(-4px);
}

.vpc-cond-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-light-cyan);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.vpc-cond-card span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
  display: block;
}

.vpc-cond-arrow {
  position: absolute;
  right: -6px;
  top: 40%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--vpc-shadow-md);
  transition: all 0.2s ease;
  z-index: 3;
}

.vpc-cond-arrow:hover {
  background: var(--accent-cyan);
  transform: scale(1.06);
}

/* ---------- Process steps ---------- */
.vpc-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}

.vpc-process-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
}

.vpc-process-num {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(18px);
  width: 26px;
  height: 26px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}

.vpc-process-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--vpc-white);
  border: 1.5px solid var(--vpc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-cyan);
  margin: 0 auto 20px;
  box-shadow: var(--vpc-shadow-sm);
  position: relative;
}

.vpc-process-title {
  font-family: var(--vpc-font-display);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 16px;
  margin-bottom: 8px;
}

.vpc-process-desc {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.vpc-process-line {
  position: absolute;
  top: 39px;
  left: 12.5%;
  right: 12.5%;
  height: 0;
  border-top: 2px dashed #b9d9e6;
  z-index: 0;
}

/* ---------- Benefits + Candidate ---------- */
.vpc-benefit-card {
  background: var(--vpc-bg-mist);
  border-radius: var(--vpc-radius);
  padding: 32px;
  height: 100%;
}

.vpc-benefit-title {
  font-family: var(--vpc-font-display);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 22px;
}

.vpc-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.vpc-benefit-item i {
  color: var(--accent-cyan);
  font-size: 21px;
  margin-bottom: 8px;
  display: block;
}

.vpc-benefit-item strong {
  display: block;
  color: var(--primary-dark);
  font-size: 13.8px;
  font-weight: 700;
  margin-bottom: 4px;
}

.vpc-benefit-item p {
  font-size: 12.5px;
  line-height: 1.6;
}

.vpc-benefit-note {
  font-size: 11.5px;
  color: #98a4b8;
  margin-top: 18px;
  font-style: italic;
}

.vpc-candidate-card {
  background: var(--vpc-white);
  border: 1.5px solid var(--vpc-border);
  border-radius: var(--vpc-radius);
  padding: 32px;
  height: 100%;
  box-shadow: var(--vpc-shadow-sm);
}

.vpc-candidate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.vpc-candidate-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.5;
}

.vpc-candidate-list li i {
  color: var(--accent-cyan);
  margin-top: 3px;
}

.vpc-info-callout {
  background: var(--accent-light-cyan);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.6;
}

.vpc-info-callout i {
  color: var(--accent-cyan);
  font-size: 17px;
  margin-top: 2px;
}

/* ---------- Why choose ---------- */
.vpc-why-card {
  text-align: center;
  padding: 34px 22px;
  border: 1px solid var(--vpc-border);
  border-radius: var(--vpc-radius);
  height: 100%;
  transition: all 0.25s ease;
}

.vpc-why-card:hover {
  box-shadow: var(--vpc-shadow-md);
  border-color: transparent;
  transform: translateY(-6px);
}

.vpc-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-light-cyan);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.vpc-why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.vpc-why-card p {
  font-size: 13.5px;
  line-height: 1.65;
}

/* ---------- Before / After / Risks ---------- */
/* =========================================
   BEFORE / AFTER SECTION
========================================= */

.before-after-section {
  position: relative;
  background: #edf6fb;
  padding: 60px 0;
}

/* .before-after-section .row {
  min-height: calc(100vh - 140px);
} */


/* =========================================
   STICKY COLUMNS
========================================= */

.before-after-sticky {
  position: sticky;
  top: 30px;
  align-self: flex-start;
}


/* =========================================
   SCROLLABLE THIRD COLUMN
========================================= */

.before-after-scroll {
  /* height: calc(100vh - 60px); */
  overflow-y: auto;
  overflow-x: hidden;
  align-self: flex-start;

  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) transparent;
}


/* =========================================
   CONTENT
========================================= */

.before-after-content {
  padding-right: 10px;
}

.before-after-title {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 700;
}

.before-after-section p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}


/* =========================================
   LIST
========================================= */

.before-after-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.before-after-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;

  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

.before-after-list li i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent-cyan);
  font-size: 12px;
}


/* =========================================
   IMAGE
========================================= */

.before-after-image {
  overflow: hidden;

  border-radius: 12px;
  background: #e4f0f6;
  box-shadow: 0 12px 30px rgba(0, 26, 77, 0.08);
}

.before-after-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
}


/* =========================================
   RISK BOX
========================================= */

.before-after-risk {
  margin-top: 25px;
  padding: 20px;

  background: #f5fbfe;
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: 12px;
}

.before-after-risk .before-after-title {
  margin-bottom: 10px;
}

.before-after-risk p {
  margin-bottom: 12px;
}

.before-after-risk p:last-child {
  margin-bottom: 0;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991.98px) {

  .before-after-section {
    padding: 50px 0;
  }

  .before-after-section .row {
    min-height: auto;
  }

  .before-after-sticky {
    position: static;
  }

  .before-after-scroll {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .before-after-image {
    height: 400px;
    min-height: 400px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

  .before-after-section {
    padding: 40px 0;
  }

  .before-after-image {
    height: 300px;
    min-height: 300px;
  }

  .before-after-risk {
    padding: 16px;
  }
}

/* ---------- FAQ ---------- */
.vpc-faq-item {
  border: 1px solid var(--vpc-border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.vpc-faq-item.vpc-open {
  border-color: var(--accent-cyan);
}

.vpc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.8px;
  color: var(--primary-dark);
}

.vpc-faq-q .vpc-faq-toggle {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--accent-light-cyan);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.vpc-faq-item.vpc-open .vpc-faq-toggle {
  background: var(--primary-dark);
  color: #fff;
  transform: rotate(45deg);
}

.vpc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 22px;
  font-size: 13.8px;
  color: var(--text-gray);
  line-height: 1.7;
}

.vpc-faq-item.vpc-open .vpc-faq-a {
  max-height: 220px;
  padding: 0 22px 20px;
}

/* ---------- Related ---------- */
.vpc-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.vpc-related-head h3 {
  font-size: 16px;
}

.vpc-related-head a {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
  white-space: nowrap;
}

.vpc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vpc-related-card {
  background: var(--vpc-bg-mist);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.2s ease;
}

.vpc-related-card:hover {
  background: var(--accent-light-cyan);
  transform: translateY(-3px);
}

.vpc-related-card i {
  font-size: 22px;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: block;
}

.vpc-related-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
  display: block;
}

/* ---------- CTA banner ---------- */
.vpc-cta {
  background: linear-gradient(120deg,
      var(--primary-dark) 0%,
      var(--vpc-navy-2) 60%,
      #003a8c 100%);
  border-radius: 28px;
  padding: 46px 44px;
  position: relative;
  overflow: hidden;
}

.vpc-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 180, 216, 0.25),
      transparent 70%);
}

.vpc-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 8px;
}

.vpc-cta p {
  color: #c7d3ea;
  font-size: 14.5px;
  max-width: 740px;
}

.vpc-cta-btn-white {
  background: #fff;
  color: var(--primary-dark);
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.2s ease;
}

.vpc-cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--primary-dark);
}

.vpc-cta-btn-cyan {
  background: var(--accent-cyan);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.2s ease;
}

.vpc-cta-btn-cyan:hover {
  background: #0096b8;
  transform: translateY(-2px);
  color: #fff;
}

/* ---------- Trust strip / footer ---------- */
.vpc-trust-strip {
  padding: 46px 0 60px;
}

.vpc-trust-item {
  text-align: center;
}

.vpc-trust-item i {
  font-size: 26px;
  color: var(--accent-cyan);
  margin-bottom: 10px;
  display: block;
}

.vpc-trust-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.vpc-trust-item span {
  font-size: 12px;
  color: var(--text-gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .vpc-section {
    padding: 64px 0;
  }

  .vpc-hero {
    text-align: center;
  }

  .vpc-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .vpc-hero-img-wrap {
    margin-top: 34px;
  }

  .vpc-stats-wrap {
    margin-top: 24px;
  }

  .vpc-stat-item {
    justify-content: center;
    padding: 14px 10px;
  }

  .vpc-stat-divider {
    display: none;
  }

  .vpc-whatis-img {
    margin-bottom: 30px;
  }

  .vpc-check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vpc-process-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 46px;
  }

  .vpc-process-line {
    display: none;
  }

  .vpc-benefit-card,
  .vpc-candidate-card {
    margin-bottom: 22px;
  }

  .vpc-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vpc-cta {
    text-align: center;
    padding: 40px 26px;
  }

  .vpc-cta .vpc-cta-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .vpc-flow-img {
    margin: 30px 0;
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .vpc-section {
    padding: 52px 0;
  }

  .vpc-hero-title {
    font-size: 2rem;
  }

  .vpc-btn-primary,
  .vpc-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .vpc-hero-btn-group {
    flex-direction: column;
    gap: 12px !important;
  }

  .vpc-check-grid {
    grid-template-columns: 1fr;
  }

  .vpc-process-row {
    grid-template-columns: 1fr;
  }

  .vpc-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vpc-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vpc-cond-arrow {
    display: none;
  }

  .vpc-stats-card {
    padding: 18px 6px;
  }

  .vpc-stat-item {
    padding: 10px 6px;
    gap: 10px;
  }

  .vpc-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .vpc-eyebrow {
    font-size: 11px;
    padding: 6px 12px;
  }

  .vpc-cta-btn-white,
  .vpc-cta-btn-cyan {
    width: 100%;
    justify-content: center;
  }

  .vpc-cta-actions {
    flex-direction: column;
    width: 100%;
  }
}




/* ------------------------------------------- REGENERATIVE MEDICINE PAGE ----------------------------------------- */
.rgm-section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .rgm-section {
    padding: 40px 0;
  }
}

.rgm-heading-wrap {
  /* max-width: 640px; */
  margin-bottom: 2.75rem;
}

.rgm-heading-wrap.rgm-center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.rgm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vpc-navy-2);
  background: var(--accent-light-cyan);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}

.rgm-heading {
  font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.rgm-subtext {

  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============ buttons ============ */
.rgm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.9rem 1.7rem;
  border-radius: 50px;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.rgm-btn i {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-size: 1rem;
}

.rgm-btn:hover i {
  transform: translateX(4px);
}

.rgm-btn-primary {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(0, 180, 216, 0.35);
}

.rgm-btn-primary:hover {
  background: #00c9ec;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 180, 216, 0.45);
}

.rgm-btn-ghost {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.35);
}

.rgm-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.rgm-btn-dark {
  background: var(--primary-dark);
  color: var(--surface);
  box-shadow: var(--vpc-shadow-sm);
}

.rgm-btn-dark:hover {
  background: var(--vpc-navy-2);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: var(--vpc-shadow-md);
}

.rgm-btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.rgm-btn-outline-dark:hover {
  background: var(--primary-dark);
  color: var(--surface);
  transform: translateY(-3px);
}

/* ============ HERO ============ */
.rgm-hero {
  background: linear-gradient(180deg,
      var(--vpc-bg-mist) 0%,
      var(--surface) 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.rgm-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 180, 216, 0.16),
      transparent 70%);
  top: -260px;
  right: -180px;
  pointer-events: none;
}

.rgm-hero-badge {
  display: inline-block;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}

.rgm-hero-title {
  font-size: clamp(2.4rem, 1.7rem + 3vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.rgm-hero-sub {

  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vpc-navy-2);
  margin-bottom: 1.1rem;
}

.rgm-hero-desc {
  color: var(--text-gray);
  font-size: 1.08rem;
  line-height: 1.75;
  /* max-width: 520px; */
  margin-bottom: 2.1rem;
}

.rgm-hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--vpc-shadow-lg);
  isolation: isolate;
}

.rgm-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* aspect-ratio: 5/4.4; */
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rgm-hero-media:hover img {
  transform: scale(1.045);
}

.rgm-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 55%,
      rgba(0, 26, 77, 0.35) 100%);
  z-index: 1;
}

.rgm-float-card {
  position: absolute;
  left: -1.75rem;
  bottom: 1.75rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--vpc-shadow-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  /* max-width: 250px; */
}

.rgm-float-card .rgm-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rgm-float-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.rgm-float-card span {
  font-size: 0.78rem;
  color: var(--text-gray);
}

@media (max-width: 991.98px) {
  .rgm-float-card {
    left: 1rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 399.98px) {
  .rgm-float-card {
    max-width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    bottom: -1.25rem;
  }
}

/* ============ INTRO STRIP (What is Regenerative Medicine) ============ */
.rgm-intro {
  background: var(--vpc-bg-mist);
  border-top: 1px solid var(--vpc-border);
  border-bottom: 1px solid var(--vpc-border);
}

.rgm-intro-rule {
  width: 4px;
  border-radius: 4px;
  background: var(--accent-cyan);
  align-self: stretch;
}

.rgm-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .rgm-pillars {
    grid-template-columns: 1fr;
  }
}

.rgm-pillar {
  text-align: center;
  padding: 0 0.5rem;
}

.rgm-pillar-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--vpc-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.4rem;
}

.rgm-pillar h4 {

  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.rgm-pillar p {
  font-size: 0.86rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* ============ TREATMENT CARDS ============ */
.rgm-treatment-card {
  background: var(--surface);
  border: 1px solid var(--vpc-border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rgm-treatment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      var(--accent-light-cyan) 0%,
      transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rgm-treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vpc-shadow-lg);
  border-color: transparent;
}

.rgm-treatment-card:hover::before {
  opacity: 1;
}

.rgm-treatment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.rgm-treatment-card h3 {

  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.rgm-treatment-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.rgm-learn-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.rgm-learn-link i {
  transition: transform 0.3s ease;
}

.rgm-learn-link:hover i {
  transform: translateX(4px);
}

.rgm-learn-link:hover {
  color: var(--vpc-navy-2);
}

/* ============ WHY SECTION ============ */
.rgm-why-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--vpc-shadow-md);
}

.rgm-why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* aspect-ratio: 4/3.3; */
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rgm-why-media:hover img {
  transform: scale(1.05);
}

.rgm-feature-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-top: 30px;
}

.rgm-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.rgm-feature-row h5 {

  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.15rem;
}

.rgm-feature-row p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* ============ HOW IT WORKS ============ */
.rgm-process {
  background: var(--primary-dark);
  background-image:
    radial-gradient(circle at 15% 20%,
      rgba(0, 180, 216, 0.18),
      transparent 45%),
    radial-gradient(circle at 85% 80%,
      rgba(0, 180, 216, 0.12),
      transparent 45%);
  color: var(--surface);
}

.rgm-process .rgm-heading {
  color: var(--surface);
}

.rgm-process .rgm-subtext {
  color: rgba(255, 255, 255, 0.65);
}

.rgm-process .rgm-eyebrow {
  background: rgba(0, 180, 216, 0.16);
  color: var(--accent-light-cyan);
}

.rgm-process .rgm-eyebrow::before {
  background: var(--accent-cyan);
}

.rgm-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

.rgm-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.rgm-step-num {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--accent-light-cyan);
  position: relative;
}

.rgm-step-num span {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-cyan);
  color: var(--primary-dark);

  font-size: 0.65rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rgm-step h4 {

  font-size: 1rem;
  font-weight: 800;
  color: var(--surface);
  margin-bottom: 0.4rem;
}

.rgm-step p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.rgm-step-connector {
  flex: 0 0 auto;
  width: 60px;
  height: 1px;
  margin-top: 30px;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.35) 0 6px,
      transparent 6px 12px);
}

@media (max-width: 767.98px) {
  .rgm-steps {
    flex-direction: column;
  }

  .rgm-step-connector {
    width: 1px;
    height: 36px;
    margin: 0 0 0 30px;
    background: repeating-linear-gradient(180deg,
        rgba(255, 255, 255, 0.35) 0 6px,
        transparent 6px 12px);
  }

  .rgm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .rgm-steps {
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .rgm-step {
    flex: 0 0 40%;
  }

  .rgm-step-connector {
    display: none;
  }
}

/* ============ CONDITIONS ============ */
.rgm-condition-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;

}

@media (max-width: 575.98px) {
  .rgm-condition-list {
    grid-template-columns: 1fr;
  }
}

.rgm-condition-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 5px 0;
  color: var(--text-dark);
}

.rgm-condition-list li i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.rgm-conditions-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--vpc-shadow-md);
}

.rgm-conditions-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* aspect-ratio: 4/3.5; */
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rgm-conditions-media:hover img {
  transform: scale(1.05);
}

/* ============ RIGHT FOR YOU ============ */
.rgm-fit {
  background: var(--vpc-bg-soft);
}

.rgm-fit-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--vpc-shadow-md);
}

.rgm-fit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

/* ============ FAQ ============ */
.rgm-faq-card {
  background: var(--surface);
  border: 1px solid var(--vpc-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--vpc-shadow-sm);
  height: 100%;
}

.rgm-faq-kicker {
  width: 34px;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: 3px;
  margin-bottom: 0.9rem;
}

.rgm-faq-item {
  border-bottom: 1px solid var(--vpc-border);
}

.rgm-faq-item:last-child {
  border-bottom: none;
}

.rgm-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.05rem 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.rgm-faq-q .rgm-faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
  font-size: 0.8rem;
}

.rgm-faq-q[aria-expanded="true"] .rgm-faq-toggle {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: rotate(45deg);
}

.rgm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.rgm-faq-a-inner {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.rgm-contact-card {
  background: var(--accent-light-cyan);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rgm-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--vpc-shadow-sm);
}

.rgm-contact-card h3 {

  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.rgm-contact-card p {
  font-size: 0.9rem;
  color: var(--vpc-navy-2);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* ============ CTA BANNER ============ */
.rgm-cta {
  background: var(--primary-dark);
  background-image: linear-gradient(120deg,
      var(--primary-dark) 0%,
      var(--vpc-navy-2) 100%);
  border-radius: 28px;
  padding: 2.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.rgm-cta::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 180, 216, 0.28),
      transparent 70%);
  right: -120px;
  top: -120px;
}

.rgm-cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.rgm-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light-cyan);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rgm-cta h3 {
  color: var(--surface);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.rgm-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin: 0;
}

.rgm-cta-right {
  position: relative;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .rgm-cta {
    padding: 2.25rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .rgm-cta-right .rgm-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ FOOTER ============ */
.rgm-footer {
  background: var(--vpc-bg-mist);
  border-top: 1px solid var(--vpc-border);
  padding: 2.25rem 0;
  text-align: center;
}

.rgm-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* focus visibility */
.rgm-body a:focus-visible,
.rgm-body button:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* =============================================================== SYMPTOM-BASED PAGES =================================================================== */
.spc-section {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .spc-section {
    padding: 40px 0;
  }
}

.spc-heading-wrap {
  /* max-width: 640px; */
  margin-bottom: 2.5rem;
}

.spc-heading-wrap.spc-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.spc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.85rem;
}

.spc-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  display: inline-block;
}

.spc-eyebrow.spc-eyebrow-pill {
  color: var(--vpc-navy-2);
  background: var(--accent-light-cyan);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
}

.spc-heading {
  font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.spc-subtext {

  color: var(--text-gray);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============ buttons ============ */
.spc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.88rem 1.65rem;
  border-radius: 10px;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.spc-btn i {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-size: 1rem;
}

.spc-btn:hover i {
  transform: translateX(4px);
}

.spc-btn-primary {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  box-shadow: 0 10px 28px rgba(0, 180, 216, 0.35);
}

.spc-btn-primary:hover {
  background: #00c9ec;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 180, 216, 0.45);
}

.spc-btn-dark {
  background: var(--primary-dark);
  color: var(--surface);
  box-shadow: var(--vpc-shadow-sm);
}

.spc-btn-dark:hover {
  background: var(--vpc-navy-2);
  color: var(--surface);
  transform: translateY(-3px);
  box-shadow: var(--vpc-shadow-md);
}

.spc-btn-outline {
  background: transparent;
  color: var(--vpc-navy-2);
  border-color: var(--accent-cyan);
}

.spc-btn-outline:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 180, 216, 0.3);
}

/* ============ HERO ============ */
.spc-hero {
  background: linear-gradient(120deg,
      var(--primary-dark) 0%,
      var(--vpc-navy-2) 100%);
  /* padding: 80px 0; */
  overflow: hidden;
  position: relative;
}

.spc-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 180, 216, 0.28),
      transparent 70%);
  top: -220px;
  right: -140px;
  pointer-events: none;
}

.spc-hero-eyebrow {
  color: var(--accent-light-cyan);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.spc-hero-title {
  font-size: clamp(2.1rem, 1.6rem + 2.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--surface);
  margin-bottom: 0.85rem;
}

.spc-hero-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-light-cyan);
  margin-bottom: 1rem;
}

.spc-hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 0;
}

.spc-hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  /* box-shadow: var(--vpc-shadow-lg); */
}

.spc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* aspect-ratio: 16/10; */
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* .spc-hero-media:hover img {
  transform: scale(1.045);
} */

/* ============ SYMPTOM CARDS ============ */
.spc-symptom-card {
  background: var(--surface);
  border: 1px solid var(--vpc-border);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
  position: relative;
}

.spc-symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vpc-shadow-md);
  border-color: transparent;
  background: var(--vpc-bg-mist);
}

.spc-symptom-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.spc-symptom-body {
  flex: 1;
  min-width: 0;
}

.spc-symptom-body h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: .25rem;
}

.spc-symptom-body p {
  font-size: .85rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 0;
}

.spc-symptom-arrow {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: background .3s ease, color .3s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
}

.spc-symptom-card:hover .spc-symptom-arrow {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  transform: translateX(3px);
}

/* ============ SYMPTOM SWIPER ============ */
.spc-swiper-nav {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.spc-swiper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--vpc-border);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: var(--vpc-shadow-sm);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
}

.spc-swiper-btn:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--vpc-shadow-md);
}

.spc-swiper-btn:active {
  transform: translateY(-1px);
}

.spc-swiper-btn.swiper-button-disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.spc-symptom-swiper-wrap {
  position: relative;
}

.spc-symptom-swiper-wrap::before,
.spc-symptom-swiper-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 3.25rem;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.spc-symptom-swiper-wrap::before {
  left: 0;
}

.spc-symptom-swiper-wrap::after {
  right: 0;
}

@media (max-width:575.98px) {

  .spc-symptom-swiper-wrap::before,
  .spc-symptom-swiper-wrap::after {
    width: 28px;
  }
}

.spc-symptom-swiper {
  padding: .75rem .25rem 3.25rem;
}

.spc-symptom-swiper .swiper-slide {
  height: auto;
  display: flex;
  cursor: grab;
}

.spc-symptom-swiper .swiper-slide-active .spc-symptom-card,
.spc-symptom-swiper .swiper-slide:hover .spc-symptom-card {
  border-color: transparent;
}

.spc-symptom-swiper .spc-symptom-card {
  width: 100%;
}

.spc-symptom-progress.swiper-pagination-progressbar {
  position: relative;
  left: 0;
  top: 0;
  height: 4px;
  max-width: 220px;
  margin: 0 auto;
  background: var(--vpc-border);
  border-radius: 99px;
  overflow: hidden;
}

.spc-symptom-progress .swiper-pagination-progressbar-fill {
  background: var(--accent-cyan);
  border-radius: 99px;
}

/* ============ WHY MATTERS ============ */
.spc-why {
  background: var(--vpc-bg-mist);
}

.spc-why-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--vpc-shadow-md);
}

.spc-why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3.4;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.spc-why-media:hover img {
  transform: scale(1.05);
}

.spc-mini-feature {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.spc-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--vpc-shadow-sm);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.spc-mini-feature h5 {

  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.1rem;
}

.spc-mini-feature p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin: 0;
}

/* ============ HOW WE EVALUATE ============ */
.spc-approach-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--vpc-shadow-md);
}

.spc-approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3.15;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.spc-approach-media:hover img {
  transform: scale(1.05);
}

.spc-checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
}

.spc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.spc-checklist li:last-child {
  margin-bottom: 0;
}

.spc-checklist li i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============ WHY CHOOSE US ============ */
.spc-choose {
  background: var(--vpc-bg-soft);
}

.spc-choose-card {
  background: var(--surface);
  border: 1px solid var(--vpc-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: left;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
}

.spc-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vpc-shadow-md);
}

.spc-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light-cyan);
  color: var(--vpc-navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.spc-choose-card h4 {

  font-size: 0.96rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.spc-choose-card p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* ============ BOTTOM CTA ============ */
.spc-cta {
  background: var(--primary-dark);
  background-image: linear-gradient(120deg,
      var(--primary-dark) 0%,
      var(--vpc-navy-2) 100%);
  border-radius: 26px;
  padding: 2.6rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.spc-cta::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 180, 216, 0.28),
      transparent 70%);
  right: -110px;
  top: -110px;
}

.spc-cta-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.spc-cta-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light-cyan);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.spc-cta h3 {
  color: var(--surface);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.spc-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

.spc-cta-right {
  position: relative;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .spc-cta {
    padding: 2.1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .spc-cta-right .spc-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}




/* ================================================= SYMPTOM DETAIL PAGE ========================================================= */
.symp-breadcrumb {
  background: var(--vpc-white);
  border-bottom: 1px solid var(--vpc-border);
  padding: 14px 0;
}

.symp-breadcrumb__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-gray);
}

.symp-breadcrumb__list a {
  color: var(--text-gray);
  transition: color 0.2s ease;
}

.symp-breadcrumb__list a:hover {
  color: var(--accent-cyan);
}

.symp-breadcrumb__list li:last-child {
  color: var(--primary-dark);
  font-weight: 600;
}

.symp-breadcrumb__sep {
  color: #c4cede;
  font-size: 0.7rem;
}

/* ===== Hero ===== */
.symp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--vpc-navy-2) 55%,
      var(--primary-dark) 100%);
  padding: 64px 0 76px;
}

.symp-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(0, 180, 216, 0.35),
      rgba(0, 180, 216, 0) 70%);
  pointer-events: none;
}

.symp-hero::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(202, 240, 248, 0.12),
      rgba(202, 240, 248, 0) 70%);
  pointer-events: none;
}

.symp-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.symp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light-cyan);
  background: rgba(0, 180, 216, 0.14);
  border: 1px solid rgba(0, 180, 216, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 600;
}

.symp-hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  color: var(--vpc-white);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.15;
}

.symp-hero__title .symp-hero__bracket {
  color: var(--accent-cyan);
}

.symp-hero__intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 32px;
}

.symp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== Buttons ===== */
.symp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.symp-btn--primary {
  background: var(--accent-cyan);
  color: var(--vpc-white);
  box-shadow: 0 10px 26px rgba(0, 180, 216, 0.32);
}

.symp-btn--primary:hover {
  background: #00a1c2;
  color: var(--vpc-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 180, 216, 0.4);
}

.symp-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--vpc-white);
}

.symp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--vpc-white);
  transform: translateY(-2px);
}

.symp-btn--outline-navy {
  background: var(--vpc-white);
  border-color: var(--vpc-border);
  color: var(--primary-dark);
}

.symp-btn--outline-navy:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.symp-btn--block {
  width: 100%;
}

.symp-btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* ===== Layout ===== */
.symp-body {
  background: var(--vpc-bg-soft);
  padding: 60px 0;
}

/* ===== Shared section + heading ===== */
.symp-section {
  background: var(--vpc-white);
  border: 1px solid var(--vpc-border);
  border-radius: 16px;
  padding: 34px 36px;
  margin-bottom: 24px;
  box-shadow: var(--vpc-shadow-sm);
}

.symp-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.36rem;
  color: var(--primary-dark);
  position: relative;
  padding-left: 16px;
  margin-bottom: 14px;
}

.symp-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg,
      var(--accent-cyan),
      var(--primary-dark));
}

.symp-section__text {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.symp-section__divider {
  border: none;
  border-top: 1px solid var(--vpc-border);
  margin: 28px 0 0;
}

.symp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.symp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.94rem;
  line-height: 1.6;
}

.symp-list li i {
  color: var(--accent-cyan);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== Quick Information sidebar card ===== */
.symp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.symp-card {
  background: var(--vpc-white);
  border: 1px solid var(--vpc-border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--vpc-shadow-sm);
}

.symp-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.symp-quickinfo__item {
  padding: 12px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.symp-quickinfo__item+.symp-quickinfo__item {
  border-top: 1px solid var(--vpc-border);
}

.symp-quickinfo__item:hover {
  background: var(--vpc-bg-mist);
}

.symp-quickinfo__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.symp-quickinfo__value {
  font-size: 0.88rem;
  color: var(--text-gray);
}

/* ===== CTA card ===== */
.symp-cta-card {
  background: linear-gradient(135deg,
      var(--primary-dark),
      var(--accent-cyan) 140%);
  border-radius: 16px;
  padding: 28px;
  color: var(--vpc-white);
  box-shadow: var(--vpc-shadow-md);
  position: relative;
  overflow: hidden;
}

.symp-cta-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.symp-cta-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.14rem;
  margin-bottom: 8px;
  position: relative;
}

.symp-cta-card__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  position: relative;
}

.symp-cta-card .symp-btn {
  position: relative;
}

/* ===== Contact card ===== */
.symp-contact-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.symp-contact-card__item:last-of-type {
  margin-bottom: 20px;
}

.symp-contact-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-light-cyan);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.symp-contact-card__text {
  font-size: 0.87rem;
  color: var(--text-gray);
  line-height: 1.55;
}

.symp-contact-card__text a {
  color: var(--text-gray);
}

.symp-contact-card__text a:hover {
  color: var(--accent-cyan);
}

/* ===== Related conditions ===== */
.symp-related__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 4px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--vpc-border);
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.symp-related__link:last-child {
  border-bottom: none;
}

.symp-related__link:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

.symp-related__link i {
  font-size: 0.8rem;
}

/* ===== FAQ accordion (custom JS-driven) ===== */
.symp-faq-item {
  border: 1px solid var(--vpc-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}

.symp-faq-item.is-open {
  border-color: var(--accent-cyan);
}

.symp-faq-item__header {
  margin: 0;
}

.symp-faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  border: none;
  background: var(--vpc-white);
  font-weight: 600;
  font-size: .92rem;
  color: var(--primary-dark);
  padding: 16px 18px;
  cursor: pointer;
  transition: background .2s ease;
}

.symp-faq-item__btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: -2px;
}

.symp-faq-item.is-open .symp-faq-item__btn {
  background: var(--vpc-bg-mist);
}

.symp-faq-item__btn::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: .9rem;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: transform .3s ease, color .2s ease;
}

.symp-faq-item.is-open .symp-faq-item__btn::after {
  content: "\f282";
  color: var(--accent-cyan);
  transform: rotate(180deg);
}

.symp-faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.symp-faq-item__body {
  color: var(--text-gray);
  font-size: .88rem;
  line-height: 1.7;
  padding: 0 18px 18px;
}

/* ===== Sticky sidebar on desktop ===== */
@media (min-width: 992px) {
  .symp-sidebar {
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .symp-section {
    padding: 26px 22px;
  }

  .symp-hero {
    padding: 48px 0 60px;
  }
}

@media (max-width: 767.98px) {
  .symp-hero__actions .symp-btn {
    width: 100%;
  }

  .symp-hero__actions {
    flex-direction: column;
  }

  .symp-banner__inner {
    justify-content: center;
    text-align: center;
  }

  .symp-banner__left {
    flex-direction: column;
    text-align: center;
  }

  .symp-banner__actions {
    width: 100%;
  }

  .symp-banner__actions .symp-btn {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .symp-hero__title {
    font-size: 1.7rem;
  }

  .symp-section {
    padding: 22px 18px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}