@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600&display=swap");

/* ==========================================================================
   OVI Wellness — MAIN STYLESHEET
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS & BASE
   ========================================================================== */
:root {
  --primary-color: #e6c381;
  --secondary-color: #051411;
  --bg-white: #efe6d8;
  --bg-light: #e4d9c6;
  --text-dark: #1b1b1b;
}

.bg-white {
  background-color: var(--bg-white) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
b,
strong,
.fw-bold {
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Utility class used by footer headings */
.font-family-bebas {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
}

/* ==========================================================================
   3. BOOTSTRAP OVERRIDES & UTILITIES
   ========================================================================== */
hr {
  border: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(230, 195, 129, 0.15) 0%,
    rgba(5, 20, 17, 0.25) 50%,
    rgba(230, 195, 129, 0.15) 100%
  ) !important;
  opacity: 1 !important;
  margin: 2.5rem 0;
}
.text-primary {
  color: var(--primary-color) !important;
}
.bg-light {
  background-color: var(--bg-light) !important;
}
.bg-primary {
  background-color: var(--secondary-color) !important;
}
.max-w-700 {
  max-width: 700px;
}
/* Used in peptides.html hero container */
.z-index-1 {
  z-index: 1;
}

/* Inline icon width used by footer contact rows */
.w-15px {
  width: 15px;
}

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(30, 45, 23, 0.08) !important;
  border-color: rgba(230, 195, 129, 0.4) !important;
}

/* ==========================================================================
   4. CAROUSEL / INDICATOR SHARED STYLES
   ========================================================================== */
.carousel-indicators {
  gap: 4px;
}

.carousel-indicators button,
.carousel-indicators [data-bs-target] {
  background-color: rgba(30, 45, 23, 0.25);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0;
  transition:
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease,
    border-radius 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--primary-color) !important;
  width: 28px !important;
  border-radius: 20px !important;
}

/* Override Bootstrap carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 20px;
  background-size: 40%;
}

/* Custom carousel nav button */
.custom-carousel-controls {
  width: 100%;
}

.custom-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #0e180b);
  border: 1px solid rgba(230, 195, 129, 0.3);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 5;
  padding: 0;
}

.custom-carousel-btn i {
  margin-top: 1px;
}

.custom-carousel-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 195, 129, 0.4);
  border-color: var(--primary-color);
}

.custom-carousel-btn:active {
  transform: scale(0.95);
}

.custom-carousel-controls .carousel-indicators {
  bottom: auto;
  display: flex;
  align-items: center;
}

/* Light indicator variant inside dark sections */
.premium-services .carousel-indicators button,
.premium-services .carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */
.navbar.fixed-top {
  background: rgba(5, 20, 17, 0.9) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 0 !important;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    border-bottom 0.3s ease;
  border-bottom: 1px solid rgba(230, 195, 129, 0.35) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.navbar.fixed-top.scrolled-nav {
  background: rgba(5, 20, 17, 0.95) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 12px 35px rgba(0, 0, 0, 0.35) !important;
  border-bottom: 1px solid var(--primary-color) !important;
}

.navbar.fixed-top .navbar-container {
  transition:
    height 0.3s ease,
    padding 0.3s ease;
  padding: 0 1rem;
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar.fixed-top .top-marquee-bar {
  margin-top: 0;
  transition: margin-top 0.3s ease;
}

.navbar.fixed-top.scrolled-nav .top-marquee-bar {
  margin-top: -36px;
}

.navbar-brand {
  gap: 6px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.brand-text {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  font-family: "Urbanist", "Outfit", sans-serif;
}

.brand-title {
  color: var(--bg-white);
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  line-height: 0.95;
  margin-bottom: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-subtitle {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 0;
}

.navbar .nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0.65rem;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap !important;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:focus,
.dropdown-toggle:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* ==========================================================================
   6. CTA BUTTON
   ========================================================================== */
.cta-btn,
.cta-btn:visited {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s ease;
  border: 2px solid var(--primary-color) !important;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn:hover,
.cta-btn:visited:hover {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  text-decoration: none;
}

.cta-btn:focus,
.cta-btn:active,
.cta-btn:focus-visible,
.cta-btn:visited:focus,
.cta-btn:visited:active {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.navbar .cta-btn,
.navbar .cta-btn:visited {
  color: var(--secondary-color) !important;
  font-size: 0.85rem !important;
  padding: 0.5rem 1.15rem !important;
  letter-spacing: 1px !important;
  white-space: nowrap;
}

.navbar .cta-btn:hover,
.navbar .cta-btn:visited:hover {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar .cta-btn:focus,
.navbar .cta-btn:active,
.navbar .cta-btn:focus-visible,
.navbar .cta-btn:visited:focus,
.navbar .cta-btn:visited:active {
  background-color: #cda863 !important;
  color: var(--secondary-color) !important;
  border-color: #cda863 !important;
}

/* Sleek Glassmorphism Language Dropdown Button */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(230, 195, 129, 0.3);
  border-radius: 50px;
  padding: 4px 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  outline: none !important;
  user-select: none;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  height: 34px;
}

.lang-toggle-btn::after {
  display: none !important;
}

.lang-toggle-btn:hover,
.lang-toggle-btn[aria-expanded="true"] {
  background: rgba(230, 195, 129, 0.18);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(230, 195, 129, 0.25);
}

.lang-flag-trigger {
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lang-current {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  color: var(--primary-color);
}

.lang-chevron {
  font-size: 0.62rem;
  opacity: 0.75;
  transition: transform 0.25s ease;
  color: rgba(255, 255, 255, 0.8);
}

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

/* Glassmorphism Language Dropdown Menu */
.lang-dropdown-menu {
  background: rgba(6, 10, 6, 0.96) !important;
  border: 1px solid rgba(230, 195, 129, 0.35) !important;
  border-radius: 12px !important;
  padding: 6px !important;
  min-width: 140px !important;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.75),
    0 0 20px rgba(230, 195, 129, 0.15) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 8px !important;
  text-align: left !important;
  z-index: 1070;
}

.lang-dropdown-menu .dropdown-item {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 9px 14px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  cursor: pointer;
}

.lang-dropdown-menu .dropdown-item:hover,
.lang-dropdown-menu .dropdown-item:focus {
  background: rgba(230, 195, 129, 0.15) !important;
  color: var(--primary-color) !important;
}

.lang-dropdown-menu .dropdown-item.active {
  background: rgba(230, 195, 129, 0.2) !important;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
}

.lang-dropdown-menu .check-icon {
  font-size: 0.75rem;
  color: var(--primary-color);
}

/* Mobile Language Drill-Down Panel Buttons */
.active-lang-panel-btn {
  background: rgba(230, 195, 129, 0.15) !important;
  border: 1px solid var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(230, 195, 129, 0.2) !important;
}

.inactive-lang-panel-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.25s ease !important;
}

.inactive-lang-panel-btn:hover,
.inactive-lang-panel-btn:focus {
  background: rgba(230, 195, 129, 0.1) !important;
  border-color: rgba(230, 195, 129, 0.4) !important;
  color: #ffffff !important;
}

.hero .cta-btn,
.hero .cta-btn:visited,
#empty-bg-button,
#empty-bg-button:visited {
  border-radius: 50px !important;
  background-color: rgba(230, 195, 129, 0.12) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  backdrop-filter: blur(8px);
  padding: 0.85rem 2.25rem;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero .cta-btn:hover,
.hero .cta-btn:focus,
.hero .cta-btn:active,
.hero .cta-btn:visited:hover,
.hero .cta-btn:visited:focus,
.hero .cta-btn:visited:active,
#empty-bg-button:hover,
#empty-bg-button:focus,
#empty-bg-button:active,
#empty-bg-button:visited:hover {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 195, 129, 0.35) !important;
}

/* Footer CTA button state locks */
.footer .cta-btn,
.footer .cta-btn:visited {
  font-size: 1.3rem;
  padding: 1.2rem 3.5rem;
  box-shadow: 0 10px 30px rgba(230, 195, 129, 0.2);
  border-width: 3px;
  margin-top: 1rem;
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
}

.footer .cta-btn:hover,
.footer .cta-btn:focus,
.footer .cta-btn:active,
.footer .cta-btn:focus-visible,
.footer .cta-btn:visited:hover,
.footer .cta-btn:visited:focus,
.footer .cta-btn:visited:active {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 15px 40px rgba(230, 195, 129, 0.3) !important;
  transform: translateY(-3px) scale(1.02);
  text-decoration: none !important;
}

/* Get Directions button state locks */
#get-directions-btn,
#get-directions-btn:visited {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
}

#get-directions-btn:hover,
#get-directions-btn:focus,
#get-directions-btn:active,
#get-directions-btn:focus-visible,
#get-directions-btn:visited:hover,
#get-directions-btn:visited:focus,
#get-directions-btn:visited:active {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Peptide page hero CTA — transparent outline variant */
#empty-bg-button,
#empty-bg-button:visited {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

#empty-bg-button:hover,
#empty-bg-button:focus,
#empty-bg-button:active,
#empty-bg-button:focus-visible,
#empty-bg-button:visited:hover,
#empty-bg-button:visited:focus,
#empty-bg-button:visited:active {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero {
  background: radial-gradient(
    circle at center,
    #1c3838 0%,
    var(--secondary-color) 100%
  );
  position: relative;
  min-height: 125vh;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 45, 23, 0.08);
}

.hero-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 12px;
  color: var(--bg-white);
  line-height: 1.05;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--bg-white);
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero .hero-actions {
  margin-top: 1.5rem;
}

.hero-actions {
  position: relative;
  z-index: 3;
}

/* Top Scrolling Announcement/Marquee Bar */
.top-marquee-bar {
  background: #343939;
  border-bottom: 1px solid rgba(30, 45, 23, 0.08);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1040;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  animation: marquee-scroll 75s linear infinite;
}

.marquee-content span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color) !important;
  display: inline-flex;
  align-items: center;
}

.marquee-content span i {
  color: var(--primary-color) !important;
  margin-right: 8px;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* ==========================================================================
   8. BLOB SERVICE MENU (Hero)
   ========================================================================== */
.blob-menu-container {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  z-index: 2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-blob {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  background: rgba(230, 195, 129, 0.15);
  border: 2px solid rgba(230, 195, 129, 0.6);
  box-shadow: 0 0 25px rgba(230, 195, 129, 0.2);
  backdrop-filter: blur(6px);
  color: var(--bg-white);
  text-decoration: none;
  animation: morphBlob 8s infinite alternate ease-in-out;
  cursor: pointer;
  /* Smooth out the initialization and fallback animations */
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.5s ease,
    color 0.3s ease;
}

.service-blob:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.1) translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(230, 195, 129, 0.4);
  animation-play-state: paused;
  font-weight: 800;
}

.service-blob.paused-animation {
  animation-play-state: paused;
}

.service-blob .icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  /* Ensure the icon scales beautifully on hover */
  transition:
    color 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-blob:hover .icon {
  color: var(--secondary-color);
  transform: scale(1.15);
}

.blob-title {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  padding: 0 15px;
  letter-spacing: 1px;
  line-height: 1.2;
}

@keyframes morphBlob {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  34% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
  }
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

/* ==========================================================================
   9. HORMONE BANNER
   ========================================================================== */
.hormone-banner {
  background: linear-gradient(
    135deg,
    #0e180b 0%,
    var(--secondary-color) 50%,
    #0e180b 100%
  );
  border-bottom: 4px solid var(--primary-color);
  border-top: 4px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
}

.hormone-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(230, 195, 129, 0.15),
    transparent
  );
  animation: shine 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shine {
  100% {
    left: 200%;
  }
}

/* ==========================================================================
   10. CORE THERAPIES SECTION
   ========================================================================== */
.section-light {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
}

/* Premium image box */
.premium-box {
  border: 4px solid var(--primary-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s ease;
}

.premium-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  pointer-events: none;
}

.premium-image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 480px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}

.premium-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premium-image-box img.top-focus {
  object-position: top center;
}

.premium-image-box img.center-focus {
  object-position: center;
}

/* Tab navigation pill wrapper */
.therapy-tabs-wrapper {
  display: inline-flex;
  background: #f5eee3 !important;
  border: 1px solid rgba(230, 195, 129, 0.4);
  box-shadow: 0 8px 25px rgba(30, 45, 23, 0.06);
  border-radius: 50px;
  padding: 6px;
  max-width: 100%;
}

.nav-pills {
  flex-wrap: nowrap;
}

.nav-pills .premium-tab {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary-color);
  background-color: transparent !important;
  border: none !important;
  border-radius: 50px;
  padding: 12px 30px;
  margin: 0 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-pills .premium-tab:hover {
  color: #cda863;
  background-color: transparent !important;
  border: none !important;
}

.nav-pills .premium-tab.active,
.nav-pills .premium-tab.active:hover {
  background-color: var(--primary-color) !important;
  border: none !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 6px 20px rgba(230, 195, 129, 0.4);
}

/* Tab panel — stacked grid layout prevents height jumping */
.tab-content {
  display: grid !important;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.tab-pane {
  display: block !important;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s;
  pointer-events: none;
}

.tab-pane.active.show {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  z-index: 2;
}

#therapy-tabs-content h2 {
  color: var(--secondary-color) !important;
  font-weight: 700;
  text-align: center;
}

#therapy-tabs-content .lead {
  color: var(--secondary-color) !important;
  font-weight: 500;
}

#therapy-tabs-content .row {
  min-height: 420px;
  height: 100%;
}

/* Feature list grid inside therapy tabs (2-column compact layout for desktop & mobile) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.35;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 20px;
  margin-bottom: 0;
  background: #f5eee3 !important;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(5, 20, 17, 0.07);
  border: 1.5px solid rgba(230, 195, 129, 0.65);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

@media (hover: hover) {
  .feature-list li:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(230, 195, 129, 0.25);
  }
}

/* ==========================================================================
   11. ADDITIONAL SERVICES / PEPTIDE PORTFOLIO (Dark Section)
   ========================================================================== */
.premium-services {
  background: radial-gradient(
    circle at top right,
    #0e180b 0%,
    var(--secondary-color) 100%
  );
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(230, 195, 129, 0.2);
}

.premium-services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.premium-services .section-title::after {
  background-color: var(--primary-color);
}

.service-grid-card {
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(230, 195, 129, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  border-radius: 20px;
  padding: 30px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-grid-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(230, 195, 129, 0.12),
    transparent 70%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

@media (hover: hover) {
  .service-grid-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color) !important;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.45),
      0 0 25px rgba(230, 195, 129, 0.2) !important;
  }

  .service-grid-card:hover::before {
    opacity: 1;
  }

  .service-grid-card:hover .card-icon {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 10px 25px rgba(230, 195, 129, 0.4);
  }

  /* Disable translateY translation inside scroll tracks to prevent vertical clipping */
  .native-scroll-item .service-grid-card:hover,
  .native-scroll-item .stack-card:hover {
    transform: none !important;
  }
}

.service-grid-card .card-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 195, 129, 0.15) !important;
  border: 1.5px solid var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-color) !important;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(230, 195, 129, 0.2);
}

.service-grid-card .card-title {
  font-size: 1.4rem;
  color: #ffffff !important;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-weight: 700;
}

.service-grid-card .card-text {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.protocol-light-card {
  background: #ffffff !important;
  border-radius: 20px;
  padding: 35px 28px;
  border: 1.5px solid rgba(230, 195, 129, 0.45) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.protocol-light-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color) !important;
  box-shadow: 0 14px 30px rgba(31, 64, 109, 0.12) !important;
}

.protocol-light-card .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 195, 129, 0.15) !important;
  border: 1.5px solid var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-color) !important;
  margin-bottom: 20px;
}

.protocol-light-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color) !important;
  margin-bottom: 10px;
}

.protocol-light-card .card-text {
  font-size: 0.92rem;
  color: #555 !important;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 35px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--bg-white);
}

.service-link:hover i {
  transform: translateX(8px);
  color: var(--primary-color);
}

/* ==========================================================================
   12. TEAM SECTION
   ========================================================================== */
.team-group-img-wrapper {
  height: 500px;
}

.team-group-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(230, 195, 129, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

.team-list-container {
  padding-left: 2.5rem;
}

.team-cta-container {
  padding-left: 2.5rem;
  margin-top: 2rem;
}

.team-lead-text {
  color: #555;
}

.team-list-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(30, 45, 23, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.team-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.team-list-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: height 0.4s ease;
  border-radius: 2px;
}

.team-list-item:hover {
  transform: translateX(10px);
}

.team-list-item:hover::before {
  height: calc(100% - 2rem);
}

.team-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.team-bio {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   13. TESTIMONIALS
   ========================================================================== */
#testimonialDesktop .carousel-inner {
  margin-left: -15px;
  margin-right: -15px;
  width: auto;
}

#testimonialDesktop .carousel-item {
  padding: 0 15px;
}

.testimonial-verified-badge {
  color: #4caf50;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* ==========================================================================
   14. TRUST SECTION
   ========================================================================== */
.trust-section {
  background-color: var(--secondary-color) !important;
}

.trust-section::before {
  display: none !important;
}

.trust-section h2 {
  font-size: 2.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.trust-section .border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.trust-section .footer-text-soft {
  color: rgba(255, 255, 255, 0.82) !important;
  transition: color 0.2s ease;
}

.trust-section .footer-text-soft:hover,
.trust-section .footer-text-soft:focus,
.trust-section .footer-text-soft:active {
  color: #ffffff !important;
}

/* ==========================================================================
   15. FAQs
   ========================================================================== */
.faqs {
  background-color: var(--bg-light);
}

.accordion .accordion-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 45, 23, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.accordion .accordion-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(230, 195, 129, 0.4);
}

.accordion-button {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px 25px;
  background: var(--bg-white);
  color: var(--secondary-color);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-white);
  color: #cda863;
  font-weight: 700;
  box-shadow: none;
}

.accordion-button::after {
  transition: transform 0.3s ease-in-out;
}

.accordion-body {
  font-size: 1rem;
  color: #555;
  padding: 0 25px 25px 25px;
  line-height: 1.7;
  border-top: none;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, #0e180b 100%);
  border-top: 6px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  color: var(--bg-white);
}

.footer::before {
  content: "";
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(230, 195, 129, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   17. MOBILE STICKY CTA (FAB)
   ========================================================================== */
#mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    visibility 0.4s;
}

#mobile-sticky-cta .btn {
  pointer-events: auto;
}

#mobile-sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#mobile-sticky-cta.menu-open {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(40px) !important;
}

/* ==========================================================================
   18. NATIVE MOBILE SWIPE TRACK (Infinite Scroll)
   ========================================================================== */
.native-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: stretch;
}

.native-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.native-scroll-item {
  scroll-snap-align: center;
  flex: 0 0 76%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.85;
  transform: scale(0.96);
}

.native-scroll-item > * {
  flex: 1 1 auto;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .native-scroll-item {
    flex: 0 0 44%;
  }
}

.native-scroll-item.active {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   19. NAVBAR DROPDOWN — DESKTOP SMOOTH DROPDOWN & MOBILE SLIDE FOLDER
   ========================================================================== */
@media (min-width: 992px) {
  .custom-desktop-dropdown .dropdown-toggle::after {
    display: none !important;
  }

  .custom-desktop-dropdown .dropdown-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
  }

  .custom-desktop-dropdown .nav-link.show .dropdown-icon {
    transform: rotate(180deg);
  }

  .custom-desktop-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.3s;
    pointer-events: none;
    background-color: rgba(6, 10, 6, 0.97) !important;
    border: 1px solid rgba(230, 195, 129, 0.35) !important;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 250px;
    margin-top: 8px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55) !important;
  }

  .custom-desktop-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .custom-desktop-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 12px 20px;
    transition: color 0.2s ease;
    letter-spacing: 1px;
    font-size: 0.85rem;
    background-color: transparent !important;
  }

  .custom-desktop-menu .dropdown-item:hover,
  .custom-desktop-menu .dropdown-item:focus {
    background-color: transparent !important;
    color: var(--primary-color) !important;
  }
}

@media (max-width: 991.98px) {
  .mobile-sub-panel {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    background: #051411;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    overflow-y: auto;
  }

  .mobile-sub-panel.active {
    transform: translateX(-100%);
  }

  .mobile-drill-open:hover,
  .mobile-drill-open:active,
  .mobile-sub-panel a:hover,
  .mobile-sub-panel a:active {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--primary-color) !important;
  }
}

/* ==========================================================================
   20. BEFORE / AFTER SLIDER (Peptides page)
   ========================================================================== */
.ba-card {
  border-color: rgba(30, 45, 23, 0.15) !important;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.ba-card img {
  min-height: 200px;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-card .badge {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  font-size: 0.65rem;
}

.ba-slider {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  z-index: 5;
  cursor: ew-resize;
  opacity: 0;
}

.ba-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 45px;
  height: 100vh;
  background: transparent;
  cursor: ew-resize;
}

.ba-slider::-moz-range-thumb {
  width: 45px;
  height: 100vh;
  background: transparent;
  cursor: ew-resize;
  border: none;
}

/* ==========================================================================
   21. ATHLETIC STACKS (Peptides page)
   ========================================================================== */
#athletic-stacks .bg-white {
  border-left-color: var(--secondary-color) !important;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.04) !important;
}

#athletic-stacks .bg-white h4 {
  font-size: 1.15rem;
}

#athletic-stacks .bg-white i {
  color: var(--primary-color) !important;
}

#athletic-stacks .btn-outline-primary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

#athletic-stacks .btn-outline-primary:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

@media (min-width: 992px) {
  #athletic-stacks .bg-white {
    transition:
      transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.3s ease;
  }
  #athletic-stacks .bg-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 45, 23, 0.1) !important;
    z-index: 2;
  }

  #athletic-stacks .bg-white h4 {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   22. CLINICAL PROCESS TIMELINE (Peptides page)
   ========================================================================== */
.process-visual-container {
  height: 520px;
}

.process-timeline .step-indicator {
  width: 45px;
  flex-shrink: 0;
}

.process-timeline .step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 1.1rem;
  z-index: 2;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px rgba(230, 195, 129, 0.4) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline .step-line {
  width: 2px;
  background-color: rgba(30, 45, 23, 0.1);
  margin-top: 5px;
  margin-bottom: -5px;
  min-height: 20px;
}

.process-timeline .step-card {
  border-color: rgba(30, 45, 23, 0.06) !important;
  transition: all 0.4s ease;
}

/* Override Bootstrap carousel indicators for timeline use */
.custom-timeline-indicators [data-bs-target] {
  width: 100% !important;
  height: auto !important;
  text-indent: 0 !important;
  background-color: transparent !important;
  opacity: 1 !important;
  margin: 0 !important;
  border: none !important;
}

.process-step.active .step-number {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 0 18px 6px rgba(230, 195, 129, 0.7) !important;
  border-color: var(--primary-color) !important;
  transform: scale(1.15);
}

.process-step.active .step-card {
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

@media (min-width: 992px) {
  .process-timeline .process-step:hover .step-card {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(30, 45, 23, 0.1) !important;
  }

  .process-timeline .process-step.active .step-card {
    transform: scale(1.02);
  }
}

/* ==========================================================================
   23. PROTOCOL FINDER QUIZ (Peptides page)
   ========================================================================== */
.btn-symptom {
  background-color: var(--bg-white);
  border-color: rgba(30, 45, 23, 0.1) !important;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-symptom .symptom-icon-wrap {
  background-color: var(--bg-light);
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-symptom:hover {
  transform: translateX(5px);
  border-color: rgba(230, 195, 129, 0.4) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.btn-symptom.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color) !important;
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(30, 45, 23, 0.2);
}

.btn-symptom.active .text-dark {
  color: var(--bg-white) !important;
}

.btn-symptom.active .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn-symptom.active .symptom-icon-wrap {
  background-color: var(--primary-color);
}

/* Result card — animated on protocol switch via JS .fade-update class */
.result-card {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out,
    border-color 0.3s ease;
}

.result-card.fade-update {
  opacity: 0;
  transform: translateY(10px);
}

/* ==========================================================================
   24. CONSOLIDATED MEDIA QUERIES
   ========================================================================== */

/* --- Tablet & up --- */
@media (min-width: 768px) {
  .ba-card .badge {
    font-size: 0.85rem;
    padding: 0.5em 0.8em;
  }
}

/* --- < 992px (mobile + tablet) --- */
@media (max-width: 991.98px) {
  .offcanvas {
    background-color: var(--secondary-color) !important;
    background: #051411 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    z-index: 1055 !important;
    border: none !important;
  }

  .offcanvas-header {
    background-color: var(--secondary-color) !important;
    background: #051411 !important;
    border-bottom: 1px solid rgba(230, 195, 129, 0.3) !important;
    padding: 0.85rem 1.25rem;
  }

  .offcanvas-header .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6c381'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
    opacity: 1;
  }

  .offcanvas-body {
    background-color: var(--secondary-color) !important;
    background: #051411 !important;
    color: #ffffff !important;
    padding-top: 1.5rem !important;
  }

  #mobile-navbar-links {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 250px !important;
  }

  .mobile-nav-main {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .offcanvas-body a,
  .mobile-nav-main a,
  .mobile-drill-open,
  .mobile-sub-panel a {
    color: #ffffff !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar-nav {
    gap: 1.5rem;
  }
  .navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 1.4rem;
  }

  .navbar-toggler {
    background: transparent !important;
    border: none !important;
    padding: 6px 10px;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230, 195, 129, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }

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

  #core-therapies {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  #core-therapies .mb-5 {
    margin-bottom: 1.25rem !important;
  }

  #therapy-tabs-content .row {
    min-height: auto !important;
    height: auto !important;
  }

  #therapy-tabs-content .premium-image-box {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 10;
    height: auto !important;
    min-height: 0 !important;
    max-height: 340px !important;
    border-radius: 16px;
  }

  #therapy-tabs-content h2 {
    font-size: 1.3rem;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 0.6rem !important;
  }

  #therapy-tabs-content .lead {
    font-size: 0.98rem !important;
    text-align: center;
    margin-bottom: 0.6rem !important;
    line-height: 1.35;
    color: var(--secondary-color) !important;
    font-weight: 500;
  }

  #therapy-tabs-content p.text-muted {
    font-size: 0.88rem !important;
    text-align: center;
    margin-bottom: 1.25rem !important;
    line-height: 1.4;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  #therapy-tabs-content .feature-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-bottom: 0 !important;
  }

  #therapy-tabs-content .feature-list li {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 16px 12px;
    border-radius: 14px;
    background: #f5eee3 !important;
    border: 1.5px solid rgba(230, 195, 129, 0.65);
    box-shadow: 0 4px 14px rgba(5, 20, 17, 0.06);
  }

  #therapy-tabs-content .cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }

  .team-list-container {
    padding-left: 15px;
    margin-top: 2.5rem;
  }

  .team-cta-container {
    padding-left: 15px;
    margin-top: 1.5rem;
  }

  .team-group-img-wrapper {
    height: 350px;
  }

  .team-list-item::before {
    left: -15px;
  }

  .team-list-item:hover {
    transform: translateX(5px);
  }

  .process-visual-container {
    height: 300px;
  }

  /* Mobile FAB — pin to bottom-right as a circular floating button */
  #mobile-sticky-cta {
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    right: 20px !important;
    left: auto !important;
    width: auto !important;
    padding: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }

  #mobile-sticky-cta .btn.cta-btn {
    width: 65px !important;
    height: 65px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    margin-bottom: max(10px, env(safe-area-inset-bottom)) !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 0 transparent) !important;
  }

  #mobile-sticky-cta .btn.cta-btn i {
    font-size: 1.6rem !important;
    margin: 0 !important;
  }
}

/* --- < 768px (mobile only) --- */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh !important;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 10.5vw, 3.2rem);
  }
  .hero p {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 15px;
  }

  .navbar.fixed-top .navbar-container {
    height: 60px;
    padding: 0 0.5rem;
  }

  .logo-img {
    height: 46px;
  }
  .brand-title {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }
  .brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }

  .cta-btn,
  .navbar .cta-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .service-blob {
    width: 145px;
    height: 145px;
  }
  .service-blob .icon {
    font-size: 2rem;
  }
  .blob-title {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .premium-image-box {
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 320px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hormone-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .footer h2 {
    font-size: 2rem;
  }

  /* Mobile & iPad service card layout */
  .service-grid-card {
    padding: 24px !important;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(230, 195, 129, 0.35) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .service-grid-card .card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin-bottom: 16px;
    border-radius: 14px;
    border: 1.5px solid var(--primary-color);
    background: rgba(230, 195, 129, 0.15) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(230, 195, 129, 0.2);
  }

  .service-grid-card .card-title {
    font-size: 1.15rem;
    color: #ffffff !important;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 700;
  }

  .service-grid-card .card-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.55;
    margin-bottom: 0;
  }

  .service-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color) !important;
    bottom: 24px;
    left: 26px;
  }

  /* Mobile tab grid layout — 3 separate standalone boxes */
  .therapy-tabs-wrapper {
    display: flex !important;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0;
    width: 100%;
    overflow: visible !important;
  }

  #therapy-tabs.nav-pills {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap !important;
  }

  .nav-pills .nav-item {
    width: 100%;
    min-width: 0;
  }

  .nav-pills .premium-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 4px;
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    border-radius: 14px !important;
    background-color: #f5eee3 !important;
    color: var(--secondary-color);
    border: 1px solid rgba(230, 195, 129, 0.45) !important;
    box-shadow: 0 4px 12px rgba(5, 20, 17, 0.05) !important;
    box-sizing: border-box;
    position: relative;
  }

  .nav-pills .premium-tab::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 3px;
    color: var(--primary-color);
  }

  #hormone-optimization-tab::before {
    content: "\f48e";
  }
  #glp-1therapies-tab::before {
    content: "\f496";
  }
  #peptides-tab::before {
    content: "\f492";
  }

  .nav-pills .premium-tab.active,
  .nav-pills .premium-tab.active:hover {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 18px rgba(230, 195, 129, 0.45) !important;
    z-index: 2;
  }

  .nav-pills .premium-tab.active::before {
    color: var(--secondary-color) !important;
  }

  @media (max-width: 400px) {
    .nav-pills .premium-tab {
      font-size: 0.6rem !important;
      padding: 8px 2px !important;
    }
    .nav-pills .premium-tab::before {
      font-size: 1.05rem !important;
      margin-bottom: 2px !important;
    }
  }

  /* Mobile testimonial swipe */
  #testimonialMobile {
    touch-action: pan-y pinch-zoom;
  }

  #testimonialMobile .carousel-inner {
    cursor: grab;
  }

  #testimonialMobile .carousel-inner:active {
    cursor: grabbing;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(30, 45, 23, 0.2);
    border-radius: 50%;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .carousel-control-prev {
    left: 1px !important;
  }
  .carousel-control-next {
    right: 1px !important;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    transform: scale(1.2) !important;
  }

  .trust-section h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .trust-section .lead {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 10px;
  }
}

/* ==========================================================================
   25. 3-STEP PROTOCOL QUIZ
   ========================================================================== */
.quiz-section {
  background: linear-gradient(135deg, #0e180b 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.quiz-badge {
  display: inline-block;
  background: rgba(230, 195, 129, 0.15);
  color: var(--primary-color);
  border: 1px solid rgba(230, 195, 129, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.quiz-progress-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.quiz-progress-side {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-progress-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.quiz-step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.quiz-step-dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 0 22px rgba(230, 195, 129, 0.5);
  transform: scale(1.1);
}

.quiz-step-dot.completed {
  background: rgba(230, 195, 129, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.quiz-step-dot.completed::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
}

.quiz-step-dot.completed span {
  display: none;
}

.quiz-step-line {
  height: 2px;
  width: 80px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.5s ease;
  flex-shrink: 0;
}

.quiz-step-line.active {
  background: var(--primary-color);
}

.quiz-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  min-height: 380px;
}

.quiz-step-panel {
  display: none;
}

.quiz-step-panel.active {
  display: block;
  animation: quizFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quiz-step-panel.fade-out {
  display: block;
  animation: quizFadeOut 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes quizFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quizFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.quiz-question {
  color: var(--bg-white);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.quiz-sub {
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.quiz-back-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-back-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 195, 129, 0.4);
  color: var(--primary-color);
  transform: translateX(-3px);
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quiz-options.opts-2 {
  grid-template-columns: repeat(2, 1fr);
}

.quiz-options.opts-3 {
  grid-template-columns: repeat(2, 1fr);
}

.quiz-options.opts-3 .quiz-option:nth-child(3) {
  grid-column: span 2;
}

.quiz-options.opts-4 {
  grid-template-columns: repeat(2, 1fr);
}

.quiz-options.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.quiz-option {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--bg-white);
  width: 100%;
}

.quiz-option:hover {
  border-color: rgba(230, 195, 129, 0.5);
  background: rgba(230, 195, 129, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quiz-option.selected {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 195, 129, 0.4);
}

.quiz-option-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.25s ease;
  margin-bottom: 2px;
}

.quiz-option.selected .quiz-option-icon {
  color: var(--secondary-color);
}

.quiz-option-title {
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.quiz-option-desc {
  font-size: 0.8rem;
  opacity: 0.65;
  line-height: 1.45;
}

/* Quiz Result */
.quiz-result-inner {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--primary-color);
  animation: quizSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-result-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(230, 195, 129, 0.07),
    transparent 55%
  );
  pointer-events: none;
}

.quiz-protocol-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.quiz-protocol-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.quiz-protocol-peptides {
  font-size: 0.92rem;
  font-weight: 700;
  color: #294a79;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.quiz-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 45, 23, 0.07);
  color: var(--secondary-color);
  border: 1px solid rgba(30, 45, 23, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.quiz-result-desc {
  color: #555;
  line-height: 1.78;
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
}

.quiz-result-goal {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0;
}

.quiz-social-proof {
  background: rgba(30, 45, 23, 0.04);
  border-left: 3px solid var(--primary-color);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 2rem;
}

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

.quiz-restart {
  background: transparent;
  border: none;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.quiz-restart:hover {
  color: var(--secondary-color);
}

@media (max-width: 576px) {
  .quiz-back-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .quiz-options,
  .quiz-options.cols-3,
  .quiz-options.opts-2,
  .quiz-options.opts-3,
  .quiz-options.opts-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .quiz-options.cols-3 .quiz-option:last-child:nth-child(odd),
  .quiz-options.opts-3 .quiz-option:nth-child(3) {
    grid-column: span 2;
  }
  .quiz-option {
    padding: 16px 12px;
    gap: 6px;
    border-radius: 12px;
  }
  .quiz-option-icon {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .quiz-option-title {
    font-size: 0.82rem;
    line-height: 1.2;
  }
  .quiz-option-desc {
    font-size: 0.7rem;
    line-height: 1.35;
  }
  .quiz-step-line {
    width: 40px;
  }
  .quiz-result-inner {
    padding: 28px 22px;
  }
}

/* ==========================================================================
   26. PERFORMANCE COMPARISON TABLE
   ========================================================================== */
.perf-table-wrapper {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 45, 23, 0.07);
  border: 1px solid rgba(30, 45, 23, 0.08);
}

.perf-table {
  width: 100%;
  border-collapse: collapse;
}

.perf-table th {
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.perf-table th:first-child {
  text-align: left;
  color: var(--secondary-color);
  width: 38%;
}

.perf-table .col-without {
  text-align: center;
  color: #bbb;
  width: 31%;
}

.perf-table .col-with {
  text-align: center;
  color: var(--secondary-color);
  background: rgba(230, 195, 129, 0.07);
  width: 31%;
}

.perf-table td {
  padding: 13px 20px;
  border-top: 1px solid rgba(30, 45, 23, 0.05);
}

.perf-table td:first-child {
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.perf-table .cell-without {
  text-align: center;
  color: #bbb;
  font-size: 0.88rem;
  font-style: italic;
}

.perf-table .cell-with {
  text-align: center;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.88rem;
  background: rgba(230, 195, 129, 0.04);
}

.perf-table .cell-with .text-primary {
  margin-right: 5px;
}

.perf-mobile-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.perf-stat-pill {
  background: rgba(30, 45, 23, 0.07);
  border: 1px solid rgba(30, 45, 23, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.perf-stat-pill i {
  color: var(--primary-color);
}

/* Stack cards */
.stack-card {
  position: relative;
  background: var(--bg-white);
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(30, 45, 23, 0.08);
  border-left: 4px solid var(--primary-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 45, 23, 0.1);
}

.stack-popular-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  #stacks-mobile-track {
    padding-top: 16px;
  }
}

/* ==========================================================================
   27. MYTH-BUSTING GRID
   ========================================================================== */
.myth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

.myth-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(30, 45, 23, 0.06);
}

.myth-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 8px;
}

.myth-text {
  font-size: 0.88rem;
  color: #999;
  font-style: italic;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 45, 23, 0.07);
}

.reality-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.reality-text {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.62;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .myth-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 20px 20px;
    margin-left: -20px;
    margin-right: -20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .myth-grid::-webkit-scrollbar {
    display: none;
  }
  .myth-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition:
      opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.95);
  }
  .myth-card.active {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   28. ELIGIBILITY CHECKLIST
   ========================================================================== */
.eligibility-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(230, 195, 129, 0.1);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.eligibility-checklist-card {
  background-color: #f5eee3 !important;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(230, 195, 129, 0.45) !important;
}

.eligibility-card-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(30, 45, 23, 0.06);
}

.eligibility-card-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.eligibility-icon-wrapper {
  width: 36px;
  height: 36px;
  background-color: rgba(230, 195, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
}

.eligibility-row-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.eligibility-row-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .eligibility-summary-panel {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .eligibility-checklist-card {
    padding: 24px 18px;
  }

  .eligibility-card-row {
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .eligibility-icon-wrapper {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   29. WHY PATIENTS CHOOSE US (index.html)
   ========================================================================== */
.differentiator-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid rgba(30, 45, 23, 0.07);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  height: 100%;
}

.differentiator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30, 45, 23, 0.09);
  border-color: rgba(230, 195, 129, 0.35);
}

.differentiator-icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 195, 129, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.differentiator-card:hover .differentiator-icon {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: scale(1.08);
}

.differentiator-card h4 {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.differentiator-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.68;
  margin-bottom: 0;
}

/* Compress science stat cards on mobile */
#science .p-4 {
  padding: 1.25rem !important;
}
#science .display-5 {
  font-size: 2.2rem !important;
}

/* ==========================================================================
   30. SYMPTOM IDENTIFIER SECTION
   ========================================================================== */
.symptom-section {
  background: var(--bg-white);
  position: relative;
}

.symptom-eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto 1.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(230, 195, 129, 0.1);
  border: 1px solid rgba(230, 195, 129, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.symptom-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(30, 45, 23, 0.08);
  border-radius: 12px;
  padding: 18px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(30, 45, 23, 0.03);
  text-align: center;
  width: 100%;
  user-select: none;
}

.symptom-chip span {
  transition: color 0.3s ease;
}

.symptom-chip i {
  font-size: 1.15rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.symptom-chip:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 10px 25px rgba(30, 45, 23, 0.08);
  border-color: rgba(230, 195, 129, 0.45) !important;
}

.symptom-chip.active {
  background: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 10px 25px rgba(30, 45, 23, 0.18) !important;
}

.symptom-chip.active span {
  color: #ffffff !important;
}

.symptom-chip.active i {
  color: var(--primary-color) !important;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
  }

  .symptom-chip {
    padding: 14px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
  }
}

/* ==========================================================================
   29. TEAM / PROVIDER PAGE
   ========================================================================== */
.provider-card {
  box-shadow: 0 4px 20px rgba(30, 45, 23, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.provider-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  pointer-events: none;
}

.provider-philosophy {
  position: relative;
  background: rgba(230, 195, 129, 0.05);
  border-radius: 0 8px 8px 0;
}

.clinical-disclosures .disclosure-card {
  transition: background 0.3s ease;
}

.clinical-disclosures .disclosure-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.btn-team-profile {
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  background-color: transparent !important;
  transition: all 0.2s ease-in-out;
}

.btn-team-profile:hover,
.btn-team-profile:focus,
.btn-team-profile:active {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
  border-color: var(--secondary-color) !important;
  box-shadow: none !important;
}

/* Prevent layout shift and background scrolling when modal opens */
html {
  scrollbar-gutter: stable;
}

body.modal-open {
  overflow: hidden !important;
}

html:has(body.modal-open) {
  overflow: hidden !important;
  height: 100vh !important;
}

body.modal-open,
.modal-open .navbar,
.modal-open .fixed-top,
.modal-open .sticky-top {
  padding-right: 0px !important;
}

@media (max-width: 991.98px) {
  #mobile-team-view {
    padding-bottom: 10px !important;
  }
  #mobile-team-intro-text {
    font-size: 3rem !important;
  }
}

/* Ensure provider detail modals are wider on tablet viewports (iPad mini/air) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .modal-dialog.modal-lg {
    max-width: 90% !important;
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1055;
}

@media (min-width: 768px) {
  .modal-close-btn {
    top: 24px;
    right: 24px;
  }
}

.pfp-1x1 {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.compliance-panel {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.compliance-panel:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 25px rgba(30, 45, 23, 0.05) !important;
}

.gs-reveal {
  opacity: 0;
}

/* ==========================================================================
   CLINICAL ADVANTAGE SECTION PREMIUM STYLING
   ========================================================================== */
.section-title.text-start::after {
  left: 0;
  transform: none;
}

.advantage-img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 991.98px) {
  .advantage-img {
    height: 340px;
  }
}

.image-hover-scale {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.image-hover-scale:hover {
  transform: scale(1.035);
}

.advantage-bullet-card {
  border-color: rgba(30, 45, 23, 0.07) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(30, 45, 23, 0.01);
}

.advantage-bullet-card:hover {
  border-color: rgba(230, 195, 129, 0.45) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 45, 23, 0.05);
}

.advantage-bullet-card:hover .bullet-icon-wrapper {
  background-color: rgba(230, 195, 129, 0.15) !important;
  border-color: rgba(230, 195, 129, 0.3) !important;
  transform: scale(1.05);
}

.bullet-icon-wrapper {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   TREATMENTS/CLINICAL PROGRAMS PREMIUM CARD STYLING
   ========================================================================== */
.treatment-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(30, 45, 23, 0.08) !important;
  box-shadow: 0 4px 20px rgba(30, 45, 23, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Subtle blue top border highlight on hover */
.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    rgba(30, 45, 23, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(30, 45, 23, 0.08) !important;
  border-color: rgba(30, 45, 23, 0.2) !important;
}

.treatment-card:hover::before {
  opacity: 1;
}

/* Activate button blue state and arrow animation on card hover */
.treatment-card:hover .btn-treatment-card {
  background-color: var(--secondary-color);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(30, 45, 23, 0.15);
}

.treatment-card:hover .btn-treatment-card .transition-arrow {
  transform: translateX(4px);
}

.treatment-icon-wrapper {
  width: 52px;
  height: 52px;
  background-color: rgba(230, 195, 129, 0.08);
  border: 1px solid rgba(230, 195, 129, 0.2);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover .treatment-icon-wrapper {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #ffffff;
  transform: scale(1.06) rotate(3deg);
}

.treatment-title {
  color: var(--secondary-color);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 8px;
}

.treatment-desc {
  font-size: 0.92rem;
  color: #555555 !important;
  line-height: 1.6;
}

/* Custom premium button for treatment cards */
.btn-treatment-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  width: 100%;
  border: 1.5px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-treatment-card:hover {
  background-color: var(--secondary-color);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(30, 45, 23, 0.15);
}

.transition-arrow {
  transition: transform 0.3s ease;
}

.btn-treatment-card:hover .transition-arrow {
  transform: translateX(4px);
}

@media (min-width: 1500px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1440px !important;
  }
}

/* ==========================================================================
   32. INTERACTIVE SYMPTOM SUMMARY COLLAPSIBLE DRAWER
   ========================================================================== */
#symptom-summary-container {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  margin-top: 0;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#symptom-summary-container.visible {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 3.5rem;
}

/* ==========================================================================
   LEGAL / COMPLIANCE VERTICAL TABS
   ========================================================================== */
.compliance-nav-pills .nav-link {
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0;
  border-left: 3px solid transparent;
  padding: 10px 20px;
  text-align: left;
  transition: all 0.2s ease-in-out;
}

.compliance-nav-pills .nav-link.active,
.compliance-nav-pills .show > .nav-link {
  color: var(--primary-color);
  background-color: rgba(230, 195, 129, 0.1); /* --primary-color with opacity */
  border-left: 3px solid var(--primary-color);
}

.compliance-nav-pills .nav-link:hover:not(.active) {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   33. INTRODUCTORY OFFER CALLOUT BAR
   ========================================================================== */
.intro-offer-bar {
  background: linear-gradient(90deg, #0e180b 0%, var(--secondary-color) 100%);
  border-bottom: 1px solid rgba(230, 195, 129, 0.25);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  z-index: 100;
  position: relative;
}

.intro-offer-bar .badge {
  letter-spacing: 1px;
  background-color: rgba(230, 195, 129, 0.1) !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.intro-offer-bar .btn-claim {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 700;
  transition: all 0.3s ease;
}

.intro-offer-bar .btn-claim:hover {
  background-color: #f3dca3;
  transform: translateY(-1px);
}

/* ==========================================================================
   34. MULTI-STEP CONSULTATION MODAL
   ========================================================================== */
#consultationModal .modal-content {
  background: linear-gradient(180deg, var(--secondary-color) 0%, #0e180b 100%);
  border: 1px solid rgba(230, 195, 129, 0.2);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#consultationModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

#consultationModal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* Progress Step Dots */
.form-step-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--primary-color);
}

.step-dot.completed {
  background-color: #28a745;
}

/* Modal step content blocks */
.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
  animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Interest Selection Grid */
.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 576px) {
  .interest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .interest-card {
    padding: 10px 6px;
  }
  .interest-card i {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .interest-card span {
    font-size: 0.68rem;
    line-height: 1.25;
  }
}

.interest-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.interest-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.interest-card span {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.interest-card:hover {
  background: rgba(230, 195, 129, 0.05);
  border-color: rgba(230, 195, 129, 0.4);
}

.interest-card:hover i {
  transform: scale(1.1);
  opacity: 1;
}

.interest-card.selected {
  background: rgba(230, 195, 129, 0.12);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(230, 195, 129, 0.2);
}

/* Success Card */
.success-card {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(40, 167, 69, 0.1);
  border: 2px solid #28a745;
  color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  animation: scaleInSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
}

@keyframes scaleInSuccess {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.btn-modal-action {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

/* ==========================================================================
   35. INTEGRATED HERO PROMOTIONAL BADGE
   ========================================================================== */
.hero-promo-badge {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px 6px 6px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-promo-badge:hover {
  background: rgba(230, 195, 129, 0.06);
  border-color: rgba(230, 195, 129, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 195, 129, 0.15);
}

.hero-promo-badge .promo-tag {
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(230, 195, 129, 0.2);
  display: inline-block;
}

.hero-promo-badge .promo-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.hero-promo-badge:hover .promo-text {
  color: #fff;
}

@media (max-width: 576px) {
  .hero-promo-badge {
    padding: 5px 12px 5px 5px;
    max-width: 92%;
    border-radius: 30px;
  }
  .hero-promo-badge .promo-tag {
    margin-right: 8px;
    padding: 3px 8px;
    font-size: 0.6rem;
  }
  .hero-promo-badge .promo-text {
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: left;
  }
}

.hero-modalities-badge {
  border-radius: 50px !important;
  background-color: rgba(230, 195, 129, 0.12) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.85rem 2.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-modalities-badge:hover,
.hero-modalities-badge:focus,
.hero-modalities-badge:active {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 195, 129, 0.35) !important;
}

.modalities-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  transition: color 0.3s ease;
}

.modalities-arrow {
  font-size: 0.85rem;
  color: inherit;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.hero-modalities-badge:hover .modalities-arrow {
  transform: translateY(3px);
  color: var(--secondary-color) !important;
}

.hero-modalities-badge:hover .modalities-text {
  color: var(--secondary-color) !important;
}

@media (max-width: 576px) {
  .hero-modalities-badge {
    padding: 0.65rem 1.5rem;
  }
  .modalities-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}

/* Custom Social Links Styles in Navbar & Mobile Drawer */
.social-nav-links a {
  color: var(--secondary-color) !important;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-nav-links a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
  transform: translateY(-2px);
}

.mobile-social-links a {
  color: var(--secondary-color) !important;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mobile-social-links a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

/* ===== LIVING PROOF VIDEO SHOWCASE ===== */
.video-proof-section {
  background-color: #0b1a2e; /* Deep blue theme matching index.html */
}

.video-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.25rem;
  scrollbar-width: none; /* Firefox */
}

.video-scroll-track::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.video-proof-card {
  flex: 0 0 350px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

@media (max-width: 576px) {
  .video-proof-card {
    flex: 0 0 290px;
    max-width: 290px;
  }
}

.video-proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 195, 129, 0.4);
  box-shadow: 0 10px 25px rgba(230, 195, 129, 0.05);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background-color: #000;
  overflow: hidden;
}

.video-thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-proof-card:hover .video-thumbnail-img {
  transform: scale(1.05);
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background-color: rgba(230, 195, 129, 0.9); /* var(--primary-color) */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.video-play-btn i.fa-play {
  margin-left: 2px; /* visually center only the play icon */
}

.video-proof-card:hover .video-play-btn {
  background-color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(230, 195, 129, 0.4);
}

/* Info section */
.video-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-category-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-category-badge i {
  font-size: 0.75rem;
}

.video-card-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-transform: none !important;
  transition: color 0.2s ease;
}

.video-proof-card:hover .video-card-title {
  color: var(--primary-color);
}

.video-card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* Video Proof Carousel Dots */
.video-proof-section .carousel-indicators button {
  background-color: rgba(255, 255, 255, 0.25);
}

.video-proof-section .carousel-indicators .active {
  background-color: var(--primary-color) !important;
}

/* Hover Utilities */
.hover-white {
  transition: color 0.2s ease;
}
.hover-white:hover {
  color: #ffffff !important;
}

.hover-gold,
.hover-primary {
  transition: color 0.2s ease;
}
.hover-gold:hover,
.hover-primary:hover {
  color: var(--primary-color) !important;
}

/* Footer Link & Text Styling */
.footer-text-soft,
.footer a:not(.cta-btn) {
  color: rgba(255, 255, 255, 0.82) !important;
  transition: color 0.2s ease;
}
.footer a:not(.cta-btn):hover,
.footer a:not(.cta-btn):focus,
.footer a:not(.cta-btn):active {
  color: #ffffff !important;
}

/* ==========================================================================
   35. MEMBERSHIP TIERS & IV EXPLANATION BANNER
   ========================================================================== */
.membership-card {
  background-color: #f5eee3 !important;
  border-color: rgba(30, 45, 23, 0.08) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  overflow: visible !important;
}

.membership-card.featured-membership {
  background: linear-gradient(
    135deg,
    #1c3838 0%,
    var(--secondary-color) 100%
  ) !important;
}

.membership-card.vip-executive-card,
.mobile-plan-accordion .vip-executive-card {
  background: linear-gradient(180deg, #fbf7f0 0%, #f5eee3 100%) !important;
  border: 1.5px solid rgba(230, 195, 129, 0.65) !important;
  border-top: 4px solid var(--primary-color) !important;
  box-shadow: 0 12px 30px rgba(30, 45, 23, 0.08) !important;
}

.vip-executive-card .accordion-button {
  background-color: transparent !important;
}

.vip-executive-card .btn-outline-secondary {
  border: 1.5px solid var(--primary-color) !important;
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.vip-executive-card .btn-outline-secondary:hover {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 22px rgba(230, 195, 129, 0.5) !important;
  transform: translateY(-2px);
}

.membership-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 40px rgba(30, 45, 23, 0.12) !important;
}

.membership-card.featured-membership {
  box-shadow: 0 16px 40px rgba(28, 56, 56, 0.25) !important;
}

.membership-card.featured-membership:hover {
  box-shadow: 0 24px 50px rgba(28, 56, 56, 0.4) !important;
  border-color: rgba(230, 195, 129, 0.8) !important;
}

/* Captivating Plan Checkmark Badges */
.plan-check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.membership-card:hover .plan-check-badge,
.accordion-item:hover .plan-check-badge {
  transform: scale(1.15);
}

.check-badge-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d4af37 100%) !important;
  color: var(--secondary-color) !important;
  box-shadow: 0 3px 10px rgba(230, 195, 129, 0.4) !important;
}

.check-badge-standard {
  background: rgba(30, 45, 23, 0.1) !important;
  color: var(--secondary-color) !important;
}

.check-badge-vip {
  background: linear-gradient(135deg, rgba(230, 195, 129, 0.3) 0%, rgba(196, 159, 87, 0.2) 100%) !important;
  color: #725215 !important;
  border: 1px solid rgba(230, 195, 129, 0.5) !important;
}

/* Mobile Plan Accordion (< 992px) */
.mobile-plan-accordion .accordion-item:not(.featured-membership) {
  background-color: #f5eee3 !important;
}

.mobile-plan-accordion .accordion-button:not(.bg-transparent) {
  background-color: #f5eee3 !important;
}

.mobile-plan-accordion .accordion-button {
  box-shadow: none !important;
}

.mobile-plan-accordion .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Best Value Badge Styling across Desktop, iPad, and Mobile */
.badge-best-value {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  font-weight: 800 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(230, 195, 129, 0.45) !important;
  display: inline-block;
}

/* VIP Executive Luxury Badge */
.badge-vip-executive {
  background-color: rgba(230, 195, 129, 0.18) !important;
  color: var(--secondary-color) !important;
  border: 1px solid rgba(230, 195, 129, 0.6) !important;
  font-weight: 800 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  display: inline-block;
}

.mobile-plan-accordion .accordion-button::after {
  background-size: 1rem;
  filter: opacity(0.7);
}

#headingOptimal .accordion-button::after {
  filter: brightness(0) invert(1) !important;
  opacity: 0.95 !important;
}

/* Why-Us Section Card Backgrounds */
#why-us .bg-white,
#why-us .card,
#why-us .card-body {
  background-color: #f5eee3 !important;
}

#why-us .btn-outline-dark {
  background-color: #f5eee3 !important;
  color: var(--secondary-color) !important;
  border: 1.5px solid var(--secondary-color) !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

#why-us .btn-outline-dark:hover {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 6px 18px rgba(5, 20, 17, 0.25) !important;
  transform: translateY(-2px);
}

.mobile-plan-accordion .accordion-button:not(.collapsed)::after {
  filter: opacity(1);
}

.iv-explanation-banner {
  background: linear-gradient(
    135deg,
    rgba(28, 56, 56, 0.94) 0%,
    rgba(5, 20, 17, 0.96) 100%
  ) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(230, 195, 129, 0.35) !important;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.iv-explanation-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(230, 195, 129, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* ===== SOCIAL MEDIA CONNECTION PILLS ===== */
.social-connect-pills {
  margin-top: 0.5rem;
}

.social-pill-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-pill-btn i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.social-pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-pill-btn:hover i {
  transform: scale(1.15);
}

/* Platform specific hover states */
.social-pill-instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: transparent;
  color: #ffffff !important;
}

.social-pill-facebook:hover {
  background: #1877f2;
  border-color: transparent;
  color: #ffffff !important;
}

.social-pill-tiktok:hover {
  background: #000000;
  border-color: #ff0050;
  box-shadow:
    0 0 15px rgba(255, 0, 80, 0.3),
    0 0 15px rgba(0, 242, 234, 0.3);
  color: #ffffff !important;
}
