/* Consolidated Portal Pilates Styles - DRY Implementation */

/* ===================================
   CSS VARIABLES - Single Source of Truth
   =================================== */
:root {
  --primary-pink: #fe6ddd;
  --primary-pink-dark: #fd5cc8;
  --bg-light: #f3f4f6;
  --text-gray: #6b7280;
  --success-green: #10b981;
  --error-red: #ef4444;
  --warning-yellow: #f59e0b;

  /* Additional variables from HTML */
  --hero-gradient-start: #f7a8b8;
  --hero-gradient-end: #cbb2ff;
  --navbar-height: 80px;
}

/* ===================================
   BASE STYLES
   =================================== */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* ===================================
   NAVIGATION STYLES
   =================================== */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
}

.navbar-brand {
  display: flex !important;
  align-items: center;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  z-index: 1031;
}

.navbar-brand img {
  transition: transform 0.3s ease;
  display: block !important;
  height: 40px;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

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

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-toggler {
  border: 2px solid var(--primary-pink);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1031;
}

.navbar-toggler:hover {
  background: rgba(254, 109, 221, 0.1);
  border-color: var(--primary-pink-dark);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(254, 109, 221, 0.25);
  outline: none;
}

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

.nav-link {
  color: #2d3748 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-pink) !important;
  background: rgba(254, 109, 221, 0.1);
}

.nav-link:active {
  color: var(--primary-pink-dark) !important;
}

/* Navbar CTA Button Container */
.navbar-cta {
  max-width: 200px;
  display: flex;
  align-items: center;
}

.navbar-cta healcode-widget[data-link-class*="btn-mindbody"] {
  max-width: 100%;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1 !important;
}

/* ===================================
   BUTTON STYLES - Consolidated
   =================================== */

/* Hero Button */
.btn-hero {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 6px rgba(254, 109, 221, 0.3);
  min-height: 44px;
  letter-spacing: 0.05em;
  line-height: 1;
  max-width: 400px;
  width: auto;
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--primary-pink-dark), #e757c0);
  box-shadow: 0 8px 16px rgba(254, 109, 221, 0.4);
  transform: scale(1.05);
  color: white;
}

.btn-hero:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(254, 109, 221, 0.2);
}

/* Mindbody Button */
.btn-mindbody {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.btn-mindbody:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(254, 109, 221, 0.3);
  color: white;
}

.btn-mindbody:active {
  transform: translateY(0);
}

.btn-outline-mindbody {
  background: transparent;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.btn-outline-mindbody:hover {
  background: var(--primary-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(254, 109, 221, 0.3);
}

/* ===================================
   HEALCODE WIDGET STYLING - Consolidated
   =================================== */

/* Base Healcode Widget Button Overrides */
healcode-widget[data-link-class*="btn-hero"] {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  ) !important;
  color: white !important;
  padding: 1.25rem 2.5rem !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  box-shadow: 0 4px 6px rgba(254, 109, 221, 0.3) !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
  min-height: 44px !important;
  max-width: 400px !important;
  width: auto !important;
}

healcode-widget[data-link-class*="btn-hero"]:hover {
  background: linear-gradient(
    135deg,
    var(--primary-pink-dark),
    #e757c0
  ) !important;
  box-shadow: 0 8px 16px rgba(254, 109, 221, 0.4) !important;
  transform: scale(1.05) !important;
}

healcode-widget[data-link-class*="btn-mindbody"] {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  ) !important;
  color: white !important;
  padding: 0.625rem 1.5rem !important;
  border: none !important;
  border-radius: 0.75rem !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
  line-height: 1 !important;
  text-align: center !important;
  width: 100% !important;
  min-height: 44px !important;
}

healcode-widget[data-link-class*="btn-mindbody"]:hover {
  background: linear-gradient(
    135deg,
    var(--primary-pink-dark),
    #e757c0
  ) !important;
  box-shadow: 0 8px 16px rgba(254, 109, 221, 0.4) !important;
  transform: translateY(-2px) !important;
}

healcode-widget[data-link-class*="btn-light"] {
  background: white !important;
  color: var(--primary-pink) !important;
  padding: 1rem 2.5rem !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  line-height: 1 !important;
  min-height: 44px !important;
  letter-spacing: 0.05em !important;
  text-align: center !important;
  max-width: 400px !important;
  width: auto !important;
}

healcode-widget[data-link-class*="btn-light"]:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary-pink-dark) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* Remove nested element styling to prevent double buttons */
healcode-widget[data-link-class*="btn"] > * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  line-height: 1 !important;
  height: 100% !important;
  width: 100% !important;
}

healcode-widget[data-link-class*="btn"] * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

/* Ensure text color is correct for each button type */
healcode-widget[data-link-class*="btn-hero"],
healcode-widget[data-link-class*="btn-hero"] *,
healcode-widget[data-link-class*="btn-hero"] a,
healcode-widget[data-link-class*="btn-hero"] button,
healcode-widget[data-link-class*="btn-hero"] span,
healcode-widget[data-link-class*="btn-mindbody"],
healcode-widget[data-link-class*="btn-mindbody"] *,
healcode-widget[data-link-class*="btn-mindbody"] a,
healcode-widget[data-link-class*="btn-mindbody"] button,
healcode-widget[data-link-class*="btn-mindbody"] span {
  color: white !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
}

healcode-widget[data-link-class*="btn-light"],
healcode-widget[data-link-class*="btn-light"] *,
healcode-widget[data-link-class*="btn-light"] a,
healcode-widget[data-link-class*="btn-light"] button,
healcode-widget[data-link-class*="btn-light"] span {
  color: var(--primary-pink) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
}

/* Ensure w-100 class works properly on healcode widgets */
healcode-widget[data-link-class*="w-100"] {
  display: block !important;
  width: 100% !important;
  max-width: 500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===================================
   HERO SECTION STYLES
   =================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--navbar-height);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  z-index: 0;
  will-change: transform;
  background: linear-gradient(
    135deg,
    var(--primary-pink) 0%,
    var(--primary-pink-dark) 100%
  );
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100vh;
  z-index: 1;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.hero-image::before,
.hero-image::after {
  display: none !important;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-video.opacity-0 {
  opacity: 0;
}

.hero-video.opacity-100 {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  will-change: opacity;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-logo {
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.hero-title-em {
  font-style: italic;
  display: inline-block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SECTION STYLES
   =================================== */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* Remove any gradients from all headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.rewards-title,
.pricing-title,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* Specific overrides for section titles in pricing and rewards sections */
#pricing .section-title,
#rewards .section-title,
.pricing-section .section-title,
.rewards-section .section-title,
#pricing h2.section-title,
#rewards h2.section-title {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #2d3748 !important;
  text-shadow: none !important;
  filter: none !important;
  position: relative !important;
  z-index: 10 !important;
  mix-blend-mode: normal !important;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* ===================================
   WIDGET STYLES - Consolidated
   =================================== */
.widget-container {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 2rem 0;
  position: relative;
}

.widget-container.full-width {
  margin: 0;
  border-radius: 0;
}

.widget-header {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.widget-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.widget-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0.5rem 0 0 0;
}

.widget-body {
  padding: 0;
  position: relative;
}

.widget-iframe {
  width: 100%;
  border: none;
  min-height: 600px;
  display: block;
}

.widget-iframe.schedule {
  min-height: 800px;
}

.widget-iframe.pricing {
  min-height: 700px;
}

/* Widget Loading State */
.widget-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: #f9fafb;
  position: relative;
}

.widget-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid rgba(254, 109, 221, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-pink);
  animation: spin 1s ease-in-out infinite;
}

.widget-loading::after {
  content: "Loading...";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-gray);
  font-weight: 500;
  margin-top: 2rem;
}

/* ===================================
   FORM STYLES - Consolidated
   =================================== */
.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(254, 109, 221, 0.1);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

/* ===================================
   MODAL STYLES - Consolidated
   =================================== */
.modal {
  backdrop-filter: blur(5px);
}

.modal-content {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

/* ===================================
   ANIMATIONS - Consolidated
   =================================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes widgetSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

.slide-up {
  animation: slideUp 0.3s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.widget-fade-in {
  animation: widgetFadeIn 0.5s ease-in;
}

.widget-slide-up {
  animation: widgetSlideUp 0.3s ease-out;
}

/* ===================================
    UTILITY CLASSES - Consolidated
    =================================== */
.text-mindbody {
  color: var(--primary-pink) !important;
}

.bg-mindbody {
  background-color: var(--primary-pink) !important;
}

.border-mindbody {
  border-color: var(--primary-pink) !important;
}

.shadow-mindbody {
  box-shadow: 0 10px 20px -5px rgba(254, 109, 221, 0.3) !important;
}

.widget-rounded {
  border-radius: 1rem !important;
}

.widget-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.widget-border-pink {
  border: 2px solid var(--primary-pink) !important;
}

.widget-bg-pink-light {
  background: rgba(254, 109, 221, 0.05) !important;
}

.widget-text-pink {
  color: var(--primary-pink) !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

/* ===================================
   RESPONSIVE DESIGN - Consolidated
   =================================== */

/* Desktop navbar collapse */
@media (min-width: 1200px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

/* Mobile navbar enhancements */
@media (max-width: 1199px) {
  .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    padding: 5rem 2rem 2rem !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s !important;
    z-index: 1029 !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1) !important;
    height: 100vh !important;
    display: block !important;
    visibility: hidden !important;
  }

  .navbar-collapse.show {
    transform: translateX(0) !important;
    visibility: visible !important;
    transition: transform 0.3s ease-in-out !important;
  }

  .navbar-collapse.collapsing {
    transform: translateX(0) !important;
    visibility: visible !important;
    height: 100vh !important;
    display: block !important;
    transition: transform 0.3s ease-in-out !important;
  }

  .navbar-collapse:not(.show):not(.collapsing) {
    display: block !important;
  }

  .navbar-nav {
    margin: 0 !important;
    padding: 0;
    transition: none !important;
  }

  .nav-item {
    margin-bottom: 0.5rem;
    transition: none !important;
  }

  .nav-link {
    padding: 1rem 1.5rem !important;
    font-size: 1.1rem;
    margin: 0 !important;
    border-radius: 12px;
    display: block;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .nav-link:hover {
    background: linear-gradient(
      135deg,
      rgba(254, 109, 221, 0.15),
      rgba(253, 92, 200, 0.2)
    ) !important;
    transform: translateX(8px) !important;
    box-shadow: 0 4px 12px rgba(254, 109, 221, 0.2) !important;
  }

  .nav-link:active {
    background: linear-gradient(
      135deg,
      rgba(254, 109, 221, 0.25),
      rgba(253, 92, 200, 0.3)
    ) !important;
    transform: translateX(5px) !important;
  }

  .navbar-collapse healcode-widget {
    margin-top: 2rem;
    display: block !important;
    width: 100% !important;
    transition: none !important;
  }

  .navbar-collapse healcode-widget[data-link-class*="btn-mindbody"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 1.25rem 2rem !important;
    font-size: 1.2rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    line-height: 1 !important;
  }

  .navbar-collapse healcode-widget[data-link-class*="btn-mindbody"]:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(254, 109, 221, 0.4) !important;
  }
}

/* Hero Section Responsive */
@media (max-width: 575px) {
  .hero-logo {
    max-width: 15rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    min-height: 100vh;
    padding-top: var(--navbar-height);
    padding-bottom: 60px;
  }

  .hero-background {
    height: 100%;
  }

  /* Gallery Filters - Tablet */
  .gallery-filters {
    gap: 10px;
  }

  .filter-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  /* Gallery Masonry - 2 columns on tablet */
  .gallery-masonry {
    column-count: 2;
    column-gap: 15px;
    padding: 0 15px;
  }

  .gallery-item {
    margin-bottom: 15px;
  }

  .pagination-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Footer Tablet */
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-links-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
  }

  .hero-logo {
    max-width: 22rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

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

  .section-subtitle {
    font-size: 1.05rem;
  }
}

/* Mobile Responsive - Critical Fixes */
@media (max-width: 767px) {
  body,
  html {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  section:has(.feature-badges),
  #founder,
  #welcome {
    overflow-x: visible !important;
  }

  section:has(.feature-badges) .container,
  #founder .container,
  #welcome .container {
    overflow-x: visible !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .hero-section {
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-background {
    height: 100vh;
  }

  .hero-video {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
  }

  .hero-image {
    min-height: 100vh;
    font-size: 0 !important;
    color: transparent !important;
  }

  .hero-image::before,
  .hero-image::after {
    content: none !important;
    display: none !important;
  }

  /* Lighter overlay on mobile for better video visibility */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.2) 100%
    );
  }

  .hero-logo {
    max-width: 18rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn-hero {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  /* Mobile Button Improvements */
  healcode-widget[data-link-class*="btn-hero"] {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  healcode-widget[data-link-class*="btn-mindbody"] {
    padding: 0.625rem 1.25rem !important;
    font-size: 0.9rem !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  .btn-mindbody,
  healcode-widget[data-link-class*="btn-mindbody"] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.625rem 1.25rem !important;
    font-size: 0.9rem !important;
    line-height: 1 !important;
  }

  .btn-outline-mindbody {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  /* Widget Responsive */
  .widget-container {
    margin: 1rem -1rem;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  .widget-header {
    padding: 1rem;
  }

  .widget-title {
    font-size: 1.25rem;
  }

  .widget-iframe {
    min-height: 500px;
  }

  .widget-iframe.schedule {
    min-height: 600px;
  }

  .widget-iframe.pricing {
    min-height: 550px;
  }

  .widget-loading {
    min-height: 300px;
  }

  /* Form Improvements */
  .form-control,
  .form-select {
    font-size: 16px;
    padding: 1rem;
    min-height: 48px;
  }

  .form-label {
    font-size: 1rem;
  }

  /* Modal Adjustments */
  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    border-radius: 1rem 1rem 0 0;
    margin-top: auto;
  }

  .modal-body {
    padding: 1.25rem;
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Touch Targets */
  .btn,
  .btn-hero,
  .nav-link,
  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler {
    padding: 0.5rem;
  }

  /* Navbar Mobile */
  .navbar {
    padding: 0.5rem 0 !important;
  }

  .navbar > .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .navbar-brand {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1031 !important;
    margin-right: auto !important;
    flex-shrink: 0 !important;
  }

  .navbar-brand img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 36px !important;
    width: auto !important;
    max-height: 36px !important;
  }

  .navbar-toggler {
    position: relative !important;
    z-index: 1031 !important;
    flex-shrink: 0 !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 374px) {
  .hero-logo {
    max-width: 16rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-hero {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }

  .btn-mindbody,
  .btn-outline-mindbody {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .widget-container {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

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

  .section-padding {
    padding: 2.5rem 0;
  }

  /* Tighter internal spacing on mobile */
  .text-center.mb-5 {
    margin-bottom: 1.5rem !important;
  }
}

/* iPad Landscape */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Gallery Masonry - 3 columns on small desktop */
  .gallery-masonry {
    column-count: 3;
    column-gap: 18px;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand img {
    height: 36px;
  }

  .nav-link {
    margin: 0 0.35rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.4rem;
  }

  .navbar-nav {
    margin-right: 0.5rem !important;
  }

  .btn-mindbody {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
  }

  .hero-logo {
    max-width: 26rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

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

  .section-subtitle {
    font-size: 1.1rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-logo {
    max-width: 26rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.45rem;
  }
}

/* ===================================
    COMPONENT STYLES - Missing from Consolidated
    =================================== */

/* Welcome Section */
.welcome-section {
  background: white;
  position: relative;
}

.welcome-content {
  position: relative;
  z-index: 2;
}

.welcome-image-wrapper {
  height: 100%;
  min-height: 400px;
}

.welcome-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Founder Section */
.founder-image-wrapper {
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: stretch;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

/* Rewards Section Image */
.rewards-image-wrapper {
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: stretch;
}

.rewards-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.welcome-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pro-tip {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 1.5rem 0 0 0;
}

.pro-tip h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pro-tip .disclaimer-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
}

.feature-badge {
  background: rgba(254, 109, 221, 0.1);
  color: var(--primary-pink-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  border: 2px solid var(--primary-pink);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

/* Class Types Section */
.class-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.class-card picture {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.class-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2);
}

.class-content {
  padding: 2rem;
}

.class-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.class-subtitle {
  color: var(--primary-pink);
  font-weight: 500;
  margin-bottom: 1rem;
}

.class-toggle {
  background: none;
  border: none;
  color: var(--primary-pink);
  font-weight: 600;
  padding: 0;
  margin: 0 0 0.75rem;
  text-decoration: underline;
  cursor: pointer;
}

.class-toggle:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 3px;
}

.class-description {
  color: var(--text-gray);
  line-height: 1.6;
}

.class-description p {
  margin-bottom: 0;
}

/* Schedule Section */
.schedule-section {
  background: white;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.schedule-day {
  background: rgba(254, 109, 221, 0.05);
  border: 2px solid var(--primary-pink);
  border-radius: 15px;
  padding: 2rem;
}

.schedule-day-header {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-pink-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.schedule-time {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(254, 109, 221, 0.2);
}

.schedule-time:last-child {
  border-bottom: none;
}

.time {
  font-weight: 500;
  color: #2d3748;
}

.class-name {
  color: var(--text-gray);
}

/* Team Section */
.team-section {
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 2/3;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  padding: 2rem 1.5rem 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-name {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary-pink);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  background: var(--bg-light);
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, white, transparent);
  pointer-events: none;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid var(--primary-pink);
  background: linear-gradient(to bottom, rgba(254, 109, 221, 0.05), white);
}

.limited-offer {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:before {
  content: "✓";
  color: var(--primary-pink);
  font-weight: bold;
  margin-right: 0.75rem;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

/* Rewards Section */
.rewards-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.rewards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, white, transparent);
  pointer-events: none;
}

.rewards-content {
  position: relative;
  z-index: 2;
}

.rewards-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.rewards-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.rewards-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.rewards-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(254, 109, 221, 0.2);
  border-color: var(--primary-pink);
}

.rewards-card.featured {
  border: 3px solid var(--primary-pink);
  background: linear-gradient(to bottom, rgba(254, 109, 221, 0.05), white);
}

.rewards-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.rewards-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  text-align: center;
}

.rewards-card-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  flex-grow: 1;
}

.rewards-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.rewards-features li {
  padding: 0.75rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.rewards-features li:last-child {
  border-bottom: none;
}

.rewards-features li:before {
  content: "✓";
  color: var(--primary-pink);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.rewards-highlight {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(254, 109, 221, 0.3);
}

.rewards-highlight h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rewards-highlight p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.reward-badge {
  background: rgba(254, 109, 221, 0.1);
  color: var(--primary-pink-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  border: 2px solid var(--primary-pink);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin: 0.5rem;
}

.rewards-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Gallery Section - Modern Masonry Layout */
.gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 20px;
}

.filter-btn {
  background: white;
  border: 2px solid #e5e7eb;
  color: #6b7280;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.filter-btn:hover {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 109, 221, 0.2);
}

.filter-btn.active {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  border-color: var(--primary-pink);
  color: white;
  box-shadow: 0 6px 20px rgba(254, 109, 221, 0.3);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 20px;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease,
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(254, 109, 221, 0.25),
    0 0 0 1px rgba(254, 109, 221, 0.1);
}

.gallery-item-hero {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-square {
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(254, 109, 221, 0.95) 0%,
    rgba(253, 92, 200, 0.85) 40%,
    rgba(253, 92, 200, 0) 100%
  );
  padding: 2.5rem 1.5rem 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

/* Gallery Pagination */
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  background: white;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.pagination-btn:hover:not(:disabled) {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 109, 221, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.pagination-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.pagination-btn:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.pagination-btn:first-child:hover:not(:disabled) svg {
  transform: translateX(-4px);
}

.pagination-info {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.pagination-info span {
  color: var(--primary-pink);
  font-weight: 700;
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10001;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxZoomIn 0.3s ease;
}

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

.lightbox-caption {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  border-color: var(--primary-pink);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(254, 109, 221, 0.4);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-nav:hover {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  border-color: var(--primary-pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(254, 109, 221, 0.4);
}

.lightbox-nav svg {
  transition: transform 0.3s ease;
}

.lightbox-prev:hover svg {
  transform: translateX(-4px);
}

.lightbox-next:hover svg {
  transform: translateX(4px);
}

/* Lightbox Mobile Styles */
@media (max-width: 767px) {
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .lightbox-close svg {
    width: 24px;
    height: 24px;
  }

  .lightbox-nav {
    width: 48px;
    height: 48px;
    bottom: 2rem;
    top: auto;
    transform: none;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-nav:hover {
    transform: scale(1.1);
  }

  .lightbox-nav svg {
    width: 28px;
    height: 28px;
  }

  .lightbox-content img {
    max-height: 70vh;
  }

  .lightbox-caption {
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .lightbox-counter {
    font-size: 0.9rem;
  }
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-info {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary-pink-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.contact-label svg {
  color: var(--primary-pink);
  flex-shrink: 0;
}

.contact-value {
  padding-left: 2.25rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* All links pink on-brand */
.contact-link,
.location-link {
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover,
.location-link:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}

a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-pink-dark);
}

/* Map Container */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 450px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* Navigation Dropdown */
.dropdown-menu {
  background: rgba(30, 30, 40, 0.98);
  border: none;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-top: 0.5rem;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  transform: translateX(4px);
}

.dropdown-item.active {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
}

.dropdown-toggle::after {
  margin-left: 0.5rem;
  vertical-align: 0.1em;
}

/* Instructors Page */
.instructors-hero {
  background: url("../images/optimized/landscape/studio_archways.jpg") center
    center / cover no-repeat;
  padding: 140px 0 80px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instructors-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

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

.instructors-hero h1 {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.instructors-hero .lead {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.3);
}

.instructors-section {
  background: var(--bg-light);
}

/* Founder Card - Special Design */
.founder-card {
  background: linear-gradient(
    135deg,
    var(--primary-pink) 0%,
    var(--primary-pink-dark) 100%
  );
  padding: 4rem;
  border-radius: 24px;
  margin-bottom: 4rem;
  box-shadow: 0 15px 50px rgba(254, 109, 221, 0.35);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.founder-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.founder-card:hover .founder-image img {
  transform: scale(1.03);
}

.founder-content {
  color: white;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.founder-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.founder-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.founder-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Divider between founder and instructors */
.instructors-divider {
  padding: 3rem 0;
  margin: 0 0 3rem 0;
  text-align: center;
}

.instructors-divider h3 {
  color: var(--primary-pink-dark);
  font-weight: 700;
  font-size: 1.8rem;
  white-space: nowrap;
  margin: 0 0 1.5rem 0;
  display: block;
}

.instructors-divider::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 600px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-pink) 50%,
    transparent 100%
  );
}

.instructor-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(254, 109, 221, 0.2);
}

.instructor-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.instructor-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}

.instructor-content {
  padding: 0 1.5rem;
}

.instructor-name {
  color: var(--primary-pink-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.instructor-title {
  color: var(--primary-pink);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.instructor-bio {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.instructor-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cert-badge {
  background: linear-gradient(
    135deg,
    rgba(254, 109, 221, 0.1),
    rgba(253, 92, 200, 0.15)
  );
  color: var(--primary-pink-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(254, 109, 221, 0.2);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  border-color: var(--primary-pink);
  transform: translateY(-2px);
}

/* Footer Section */
.footer-section {
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  padding: 4rem 0 2rem;
  color: white;
}

.footer-brand {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(1.1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  border-color: var(--primary-pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(254, 109, 221, 0.3);
  color: white;
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.footer-links-column {
  text-align: center;
}

.footer-links-title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-pink);
  transform: translateX(4px);
}

/* Footer Copyright */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* ===================================
    ADDITIONAL RESPONSIVE STYLES - Missing
    =================================== */

/* All screen sizes: Allow wrapping */
@media (min-width: 768px) {
  .feature-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    overflow: visible !important;
    justify-content: flex-start !important;
  }

  #founder .feature-badges {
    flex-wrap: wrap !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 1.5rem 0 !important;
  }

  .feature-badge {
    padding: 0.75rem 1.5rem !important;
  }
}

/* Class Description Toggle */
@media (max-width: 767.98px) {
  .class-description {
    display: none;
    margin-top: 0.75rem;
  }

  .class-description.show {
    display: block;
  }
}

/* Team Section Responsive */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-card {
    border-radius: 20px;
  }

  .team-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      transparent 100%
    );
  }
}

/* Welcome Section Responsive */
@media (max-width: 991px) {
  .welcome-image-wrapper {
    height: 300px;
    margin-top: 2rem;
  }

  .welcome-image {
    height: 100%;
  }

  .founder-image-wrapper {
    height: 300px;
    margin-bottom: 2rem;
  }

  .founder-image {
    height: 100%;
  }

  .rewards-image-wrapper {
    height: 300px;
    margin-bottom: 2rem;
  }

  .rewards-image {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .welcome-image-wrapper {
    height: 250px;
  }

  .founder-image-wrapper {
    height: 250px;
  }

  .rewards-image-wrapper {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .welcome-image-wrapper {
    height: 200px;
  }

  .founder-image-wrapper {
    height: 200px;
  }

  .rewards-image-wrapper {
    height: 200px;
  }
}

/* Founder Section Specific Height Matching */
@media (min-width: 992px) {
  #founder .row {
    min-height: 500px;
  }

  .founder-image-wrapper {
    min-height: 500px;
  }

  #rewards .row:first-of-type {
    min-height: 500px;
  }

  .rewards-image-wrapper {
    min-height: 500px;
  }
}

/* Pricing Section Responsive Improvements */
@media (max-width: 991px) {
  .pricing-card.featured {
    transform: none;
  }
}

/* All Screens Below 1200px: 2x2 Grid Layout */
@media (max-width: 1199px) and (min-width: 768px) {
  /* Class Types - 2x2 Grid (Tablet Only) */
  #class-types .row {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  #class-types .col-lg-4,
  #class-types .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 2rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .class-card {
    height: 100%;
  }

  .class-card picture {
    height: 350px;
  }

  /* Pricing Section - Force 2x2 Grid for ALL pricing items */
  #pricing .row {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  /* Pricing Class Packs - 2x2 Grid */
  #pricing .row .col-lg-3,
  #pricing .row .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 1.5rem !important;
    display: flex !important;
  }

  /* Memberships - 2x2 Grid for first two items */
  #pricing .row.justify-content-center .col-lg-4:nth-child(1),
  #pricing .row.justify-content-center .col-lg-4:nth-child(2) {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 1.5rem !important;
    display: flex !important;
  }

  /* Founders Membership - Full Width to Stand Out */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Make Founders card slightly wider but centered */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) .pricing-card {
    max-width: 600px !important;
    width: 100% !important;
  }

  /* For the 3-item membership row, left align first two */
  #pricing .row.justify-content-center {
    justify-content: flex-start !important;
  }

  /* Ensure equal height pricing cards in 2x2 grid */
  .pricing-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  /* Push buttons to bottom of cards */
  .pricing-card .pricing-features {
    flex-grow: 1;
    margin-bottom: 1rem;
  }

  /* Ensure buttons fill width and align properly */
  .pricing-card healcode-widget[data-link-class*="btn-mindbody"] {
    display: block !important;
    width: 100% !important;
    margin-top: auto;
  }

  /* Team Grid - 2x2 */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Rewards section responsive styles */
@media (max-width: 991px) {
  .rewards-card {
    margin-bottom: 1.5rem;
  }

  .rewards-title {
    font-size: 2rem;
  }

  .rewards-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .rewards-section {
    overflow-x: hidden !important;
  }

  .rewards-title {
    font-size: 1.75rem;
  }

  .rewards-subtitle {
    font-size: 1rem;
  }

  .rewards-card {
    padding: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .rewards-card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .rewards-card-title {
    font-size: 1.35rem;
  }

  .rewards-card-description {
    font-size: 0.95rem;
  }

  .rewards-features {
    margin-bottom: 1rem;
  }

  .rewards-features li {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }

  .rewards-highlight {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .rewards-highlight h4 {
    font-size: 1.25rem;
  }

  .rewards-highlight p {
    font-size: 1rem;
  }

  .reward-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin: 0.35rem;
  }

  .rewards-cta {
    margin-top: 2rem;
  }
}

@media (max-width: 374px) {
  .rewards-title {
    font-size: 1.5rem;
  }

  .rewards-card {
    padding: 1.5rem;
  }

  .rewards-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }

  .rewards-card-title {
    font-size: 1.2rem;
  }

  .rewards-highlight {
    padding: 1.25rem;
  }

  .rewards-highlight h4 {
    font-size: 1.1rem;
  }

  .reward-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* iPad Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .rewards-card {
    padding: 1.75rem;
  }

  .rewards-card-title {
    font-size: 1.4rem;
  }

  .rewards-highlight {
    padding: 1.75rem;
  }
}

/* Large Desktop (≥1200px) */
@media (min-width: 1200px) {
  .rewards-title {
    font-size: 3rem;
  }

  .rewards-card-icon {
    width: 90px;
    height: 90px;
    font-size: 3rem;
  }
}

/* Additional Mobile Responsive Fixes */
@media (max-width: 767px) {
  /* Pricing Section - Maintain 2x2 Grid on Mobile */
  #pricing .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  /* Class Packs - 2x2 Grid */
  #pricing .col-lg-3,
  #pricing .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    margin-bottom: 1.25rem !important;
  }

  /* Memberships - First two items in 2x2 grid */
  #pricing .row.justify-content-center .col-lg-4:nth-child(1),
  #pricing .row.justify-content-center .col-lg-4:nth-child(2) {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    margin-bottom: 1.25rem !important;
  }

  /* Founders Membership - Full Width on Mobile */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
    margin-bottom: 1.25rem !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Make Founders card centered and slightly constrained */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) .pricing-card {
    max-width: 500px !important;
    width: 100% !important;
  }

  /* Pricing cards mobile adjustments */
  .pricing-card {
    padding: 2rem 1.75rem !important;
    margin-bottom: 0 !important;
  }

  /* Ensure pricing features don't take up too much space */
  .pricing-features {
    margin-bottom: 1rem !important;
    font-size: 0.85rem !important;
  }

  .pricing-features li {
    padding: 0.5rem 0 !important;
    margin-bottom: 0 !important;
  }

  /* Optimized pricing price on mobile for 2x2 grid */
  .pricing-price {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
  }

  .pricing-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }

  .pricing-description {
    font-size: 0.85rem !important;
    margin-bottom: 0.75rem !important;
  }

  .pricing-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Compact pricing cards for 2x2 mobile grid */
  .pricing-card {
    padding: 1.25rem 1rem !important;
    margin-bottom: 0 !important;
  }

  /* Limited offer badge - smaller on mobile */
  .limited-offer {
    font-size: 0.75rem !important;
    padding: 0.375rem 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  /* Ensure buttons remain visible and clickable */
  .pricing-card healcode-widget[data-link-class*="btn-mindbody"] {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.75rem !important;
    margin-top: 0.5rem !important;
  }

  /* Founder Section - Mobile Typography */
  #founder h3 {
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
  }

  #founder .lead {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  #founder p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* Founder Section - Container Fixes - ULTRA AGGRESSIVE */
  #founder,
  #founder *,
  #founder .col-lg-6,
  #founder .row,
  #founder .container,
  #founder .ps-lg-5,
  #founder > div,
  #founder .align-items-center {
    overflow-x: visible !important;
    overflow-y: visible !important;
    max-width: none !important;
  }

  /* Ensure section itself doesn't clip */
  #founder {
    overflow: visible !important;
  }

  /* Welcome section badges too */
  #welcome .feature-badges {
    padding-right: 4rem !important;
  }

  /* Founder Section - Image */
  #founder img {
    margin-bottom: 2rem;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
  }

  #founder .ps-lg-5 {
    padding-left: 0 !important;
  }

  /* Feature Badges - Wrap to fit on mobile */
  .feature-badges {
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .feature-badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.8rem !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .feature-badge i {
    font-size: 0.75rem !important;
    margin-right: 0.4rem !important;
  }

  /* Founder section badges - Ensure proper wrapping */
  #founder .feature-badges {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  #founder .feature-badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  #founder .feature-badge i {
    font-size: 0.7rem !important;
    margin-right: 0.4rem !important;
  }

  .pricing-card.featured {
    transform: none;
  }

  /* Mobile-specific adjustments - Single Column */
  #class-types .col-lg-4,
  #class-types .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .class-card picture {
    height: 280px;
  }

  .class-card img {
    object-fit: cover;
    object-position: center;
  }

  .class-content {
    padding: 2rem 1.5rem !important;
  }

  .class-title {
    font-size: 1.5rem !important;
  }

  .class-description {
    font-size: 0.95rem !important;
  }

  /* Better Card Spacing */
  .pricing-content {
    padding: 1.5rem;
  }

  /* Widget Container Adjustments */
  .widget-container {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }

  /* Contact Section Mobile */
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-label {
    font-size: 1rem;
  }

  .contact-value {
    padding-left: 0;
    font-size: 1rem;
  }

  .map-container {
    border-radius: 15px;
    min-height: 350px;
  }

  .map-container iframe {
    min-height: 350px;
  }

  /* Footer Mobile Optimization */
  .footer-section {
    padding: 3rem 0 1.5rem;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-tagline {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .footer-tagline br {
    display: none;
  }

  .footer-social {
    gap: 1rem;
  }

  .footer-social-link {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 2.5rem auto;
    padding: 0;
  }

  .footer-links-column {
    text-align: center;
  }

  .footer-links-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links-list li {
    margin-bottom: 1rem;
  }

  .footer-link {
    font-size: 1rem;
    padding: 0.5rem;
    display: inline-block;
  }

  .footer-copyright {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  .footer-copyright p {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  /* Instructors Page Mobile */
  .instructors-hero {
    padding: 100px 0 60px;
  }

  .instructors-hero h1 {
    font-size: 2.5rem;
  }

  .founder-card {
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .founder-content {
    padding: 0;
    margin-top: 2rem;
  }

  .founder-name {
    font-size: 2rem;
  }

  .founder-title {
    font-size: 1rem;
  }

  .founder-bio {
    font-size: 1rem;
  }

  .instructors-divider h3 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .instructor-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .instructor-content {
    padding: 0;
    margin-top: 1.5rem;
  }

  .instructor-name {
    font-size: 1.75rem;
  }

  .instructor-title {
    font-size: 1rem;
  }

  .instructor-bio {
    font-size: 1rem;
  }

  .instructor-certifications {
    justify-content: center;
  }

  .cert-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  /* Gallery Section Mobile */
  .gallery-filters {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .filter-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .gallery-masonry {
    column-count: 1;
    padding: 0 15px;
  }

  .gallery-item {
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .gallery-overlay {
    opacity: 0.95;
    background: linear-gradient(
      to top,
      rgba(254, 109, 221, 0.98) 0%,
      rgba(253, 92, 200, 0.9) 50%,
      rgba(253, 92, 200, 0) 100%
    );
  }

  .gallery-title {
    font-size: 0.95rem;
  }

  .gallery-pagination {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pagination-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .pagination-info {
    width: 100%;
    order: -1;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 374px) {
  /* Extra Small Devices - Single Column */
  #class-types .col-lg-4,
  #class-types .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .class-card picture {
    height: 250px !important;
  }

  .class-content {
    padding: 1.5rem 1rem !important;
  }

  .class-title {
    font-size: 1.3rem !important;
  }

  .class-subtitle {
    font-size: 0.85rem;
  }

  .class-content {
    padding: 1rem;
  }

  /* Extra tight pricing for small screens - maintain 2x2 for class packs */
  #pricing .col-lg-3,
  #pricing .col-md-6 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Memberships - maintain same spacing for first two */
  #pricing .row.justify-content-center .col-lg-4:nth-child(1),
  #pricing .row.justify-content-center .col-lg-4:nth-child(2) {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Founders membership - full width with padding */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  /* Constrain Founders card width on small screens */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) .pricing-card {
    max-width: 450px !important;
  }

  .pricing-card {
    padding: 1rem 0.75rem !important;
  }

  .pricing-price {
    font-size: 1.75rem !important;
  }

  .pricing-title {
    font-size: 1.1rem !important;
  }

  .pricing-features {
    font-size: 0.8rem !important;
  }

  .pricing-features li {
    padding: 0.4rem 0 !important;
  }

  .limited-offer {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
  }

  /* Extra small badge adjustments - smaller but still wrapping */
  .feature-badges {
    gap: 0.4rem !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
    flex-wrap: wrap !important;
  }

  .feature-badge {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.7rem !important;
  }

  .feature-badge i {
    font-size: 0.65rem !important;
    margin-right: 0.3rem !important;
  }

  #founder .feature-badge {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.7rem !important;
  }

  #founder .feature-badge i {
    font-size: 0.65rem !important;
    margin-right: 0.3rem !important;
  }

  #founder .feature-badges {
    gap: 0.4rem !important;
    margin-top: 1rem !important;
    flex-wrap: wrap !important;
  }

  /* Extra small founder section */
  #founder h3 {
    font-size: 1rem !important;
  }

  #founder .lead {
    font-size: 0.95rem !important;
  }

  #founder p {
    font-size: 0.9rem !important;
  }
}

/* Medium Mobile Devices (iPhone 12, 13, 14 Pro) */
@media (min-width: 375px) and (max-width: 430px) {
  /* Single Column Layout */
  #class-types .col-lg-4,
  #class-types .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
  }

  .class-card picture {
    height: 300px;
  }

  .class-content {
    padding: 2rem 1.5rem !important;
  }

  .class-title {
    font-size: 1.4rem;
  }

  .class-subtitle {
    font-size: 0.98rem;
  }

  /* Founder section on medium mobile */
  #founder h3 {
    font-size: 1.15rem !important;
  }

  #founder .lead {
    font-size: 1.05rem !important;
  }

  #founder p {
    font-size: 0.95rem !important;
  }
}

/* Large Mobile / Phablet (iPhone Pro Max, etc) */
@media (min-width: 431px) and (max-width: 767px) {
  /* Single Column Layout */
  #class-types .col-lg-4,
  #class-types .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .class-card picture {
    height: 320px;
  }

  .class-content {
    padding: 2rem 1.5rem !important;
  }
}

/* Extra tight navbar breakpoint (992px - 1100px) */
@media (min-width: 992px) and (max-width: 1100px) {
  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-brand img {
    height: 32px;
  }

  .nav-link {
    margin: 0 0.25rem;
    font-size: 0.85rem;
    padding: 0.4rem 0.3rem;
  }

  .navbar-nav {
    margin-right: 0.25rem !important;
  }

  .btn-mindbody {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
  }
}

/* Additional height-based responsive */
@media (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-video {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
  }

  .hero-logo {
    max-width: 16rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Large Desktop (≥1200px): 4-Column Grid */
@media (min-width: 1200px) {
  /* Ensure balanced layout for class types and pricing packs */
  #class-types .row {
    display: flex;
    flex-wrap: wrap;
  }

  #class-types .col-lg-4,
  #class-types .col-md-6 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  #pricing .row .col-lg-3,
  #pricing .row .col-md-6 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  /* Reset any centering for multi-column layouts */
  #pricing .row .col-lg-3:nth-child(4),
  #pricing .row .col-lg-4:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }

  /* Class Packs: 3-column grid */
  #pricing .row:not(.justify-content-center) .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  /* Memberships: Convert to 4-column grid by making cards smaller */
  #pricing .row.justify-content-center .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  /* Hide or adjust 4th spot for memberships (only 3 items) */
  #pricing .row.justify-content-center .col-lg-4:nth-child(3) {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .pricing-card {
    padding: 2rem;
  }

  /* Team grid can stay at 3 columns */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================
    MISSING STYLES FROM HTML ANALYSIS
    =================================== */

/* Mindbody Widget Container */
.mindbody-widget {
  width: 100%;
  min-height: 600px;
  position: relative;
  background: #f9fafb;
  border-radius: 1rem;
  overflow: hidden;
}

/* Limited Offer Badge - Already exists but ensuring it's complete */
.limited-offer {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Reward Badge - Already exists but ensuring it's complete */
.reward-badge {
  background: rgba(254, 109, 221, 0.1);
  color: var(--primary-pink-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  border: 2px solid var(--primary-pink);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin: 0.5rem;
}

/* Enhanced Class Description Toggle */
.class-description.show {
  display: block !important;
}

/* Enhanced Class Toggle Button */
.class-toggle {
  background: none;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0 0.75rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.class-toggle:hover {
  background: var(--primary-pink);
  color: white;
  transform: translateY(-2px);
}

.class-toggle:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 3px;
}

/* Founder Section Specific Styles */
#founder {
  background: white;
  overflow-x: visible !important;
}

#founder .container {
  overflow-x: visible !important;
}

#founder .row {
  overflow-x: visible !important;
}

#founder .ps-lg-5 {
  overflow-x: visible !important;
}

/* Intro Offer Banner */
.intro-offer-banner {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(254, 109, 221, 0.3);
  text-align: center;
  color: white;
}

.intro-offer-banner h3 {
  color: white !important;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-offer-banner .price {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.intro-offer-banner .subtitle {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Enhanced Featured Pricing Card */
.pricing-card.featured {
  border: 3px solid var(--primary-pink);
  background: linear-gradient(to bottom, rgba(254, 109, 221, 0.05), white);
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(254, 109, 221, 0.2);
}

/* Enhanced Pro Tip */
.pro-tip {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 10px 25px rgba(254, 109, 221, 0.3);
}

.pro-tip h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pro-tip .disclaimer-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Enhanced Rewards Highlight */
.rewards-highlight {
  background: linear-gradient(
    135deg,
    var(--primary-pink),
    var(--primary-pink-dark)
  );
  color: white;
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(254, 109, 221, 0.3);
}

.rewards-highlight h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rewards-highlight p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===================================
    BOOTSTRAP OVERRIDES
    =================================== */

/* Enhanced Modal Styling */
.modal {
  backdrop-filter: blur(5px);
}

.modal-content {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--primary-pink);
}

.modal-header {
  border-bottom: 1px solid var(--primary-pink);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(254, 109, 221, 0.05), white);
}

.modal-title {
  color: var(--primary-pink-dark);
  font-weight: 700;
}

/* Enhanced Close Button */
.btn-close {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%)
    hue-rotate(346deg) brightness(104%) contrast(97%);
  transition: all 0.3s ease;
}

.btn-close:hover {
  filter: brightness(0) saturate(100%) invert(25%) sepia(89%) saturate(2035%)
    hue-rotate(327deg) brightness(101%) contrast(88%);
  transform: scale(1.1);
}

/* Enhanced Navbar Transitions */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Image Handling */
.img-fluid {
  transition: transform 0.3s ease;
}

.img-fluid:hover {
  transform: scale(1.02);
}

/* Enhanced Button Focus States */
.btn:focus,
.btn-hero:focus,
.btn-mindbody:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(254, 109, 221, 0.2);
}

/* ===================================
    ACCESSIBILITY ENHANCEMENTS
    =================================== */

/* Enhanced Focus Indicators */
.nav-link:focus,
.class-toggle:focus,
.feature-badge:focus,
.reward-badge:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 3px;
  outline-style: solid;
}

/* Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-pink);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 6px;
}

/* Screen Reader Only Text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
    PERFORMANCE OPTIMIZATIONS
    =================================== */

/* CSS Containment for Better Performance */
.hero-section,
.pricing-card,
.class-card,
.rewards-card {
  contain: layout style paint;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================
    ADDITIONAL INLINE STYLE REPLACEMENTS
    =================================== */

/* Founder Section Lead Text */
#founder .lead {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Section Headers */
.pricing-section h3 {
  color: var(--primary-pink-dark);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Pricing Description with Special Color */
.pricing-description.pricing-highlight {
  color: var(--primary-pink);
  font-weight: 600;
}

/* Pricing Subtitle */
.pricing-subtitle {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

/* Rewards Section Headers */
.rewards-section h3 {
  color: var(--primary-pink-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Policies Section */
#policies {
  background: white;
}

/* Contact Info Headers */
.contact-info h3 {
  color: var(--primary-pink-dark);
  margin-bottom: 1.5rem;
}

/* Rewards CTA Text */
.rewards-cta .lead {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary-pink);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink-dark);
}

