/* STEPPS Charity Website - Global Design System & Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* STEPPS Charity Signature Palette: Royal Purple & Warm Ochre Gold */
  --color-brand-purple: #581C87;
  /* Deep Royal Violet / Purple */
  --color-brand-purple-light: #7E22CE;
  --color-brand-purple-dark: #2E1065;
  /* Midnight Purple */

  --color-brand-gold: #DFA939;
  /* Signature STEPPS Warm Ochre Gold */
  --color-brand-gold-hover: #C8942A;
  --color-brand-gold-light: #FEF08A;

  --color-brand-primary: #DFA939;
  /* Signature Gold Primary Accent */
  --color-brand-primary-hover: #C8942A;
  --color-brand-dark: #2E1065;
  /* Deep Imperial Purple */
  --color-brand-navy: #3B0764;
  /* Midnight Violet */
  --color-brand-light: #FAF5FF;
  /* Soft Light Lavender Tint */
  --color-surface-card: #FFFFFF;

  /* Call-to-Action Colors */
  --color-cta-help: #E11D48;
  /* Rose / Crimson Urgent Crisis CTA */
  --color-cta-help-hover: #BE123C;
  --color-cta-help-glow: rgba(225, 29, 72, 0.3);

  --color-cta-donate: #DFA939;
  /* Signature STEPPS Gold Donation CTA */
  --color-cta-donate-hover: #C8942A;
  --color-cta-donate-glow: rgba(223, 169, 57, 0.4);

  --color-accent-purple: #7E22CE;
  --color-accent-amber: #DFA939;
  --color-accent-sky: #0284C7;

  /* Text Colors */
  --color-text-main: #334155;
  --color-text-heading: #2E1065;
  /* Deep Violet Heading */
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;

  /* Borders & Shadows */
  --color-border: #E9D5FF;
  /* Soft Lavender Border */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(88, 28, 135, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(88, 28, 135, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(88, 28, 135, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow-help: 0 0 18px var(--color-cta-help-glow);
  --shadow-glow-donate: 0 0 18px var(--color-cta-donate-glow);

  /* Fonts */
  --font-heading: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --header-height: 96px;
  --max-width: 1280px;
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-brand-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.25;
  font-weight: 700;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   GLOBAL HEADER & BANNER
   ========================================================================== */

/* Top Alert Bar */
.stepps-topbar {
  background: var(--color-brand-dark);
  color: #F8FAFC;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stepps-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.2);
  color: #FDA4AF;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(225, 29, 72, 0.3);
}

.topbar-phone {
  color: #FFFFFF;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-phone:hover {
  color: #5EEAD4;
}

/* Sticky Navbar Wrapper & Header on ALL Screen Sizes */
#stepps-header-container {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 10000 !important;
}

.stepps-header {
  position: relative !important;
  width: 100% !important;
  z-index: 10000 !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, box-shadow 0.35s ease;
  height: var(--header-height);
}

/* Desktop Scrolled Header: Keep logo visible but resize smoothly, hide top CTA buttons (in bottom-right pill dock) */
@media (min-width: 1251px) {
  .stepps-header.scrolled {
    height: 52px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .stepps-header.scrolled .stepps-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
  }

  .stepps-header.scrolled .stepps-logo-img {
    height: 36px !important;
    max-height: 38px !important;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .stepps-header.scrolled .stepps-logo-tagline {
    display: none !important;
  }

  .stepps-header.scrolled .header-actions {
    display: none !important;
  }

  .stepps-header.scrolled .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .stepps-header.scrolled .stepps-nav {
    display: flex !important;
    justify-content: center !important;
    flex: 1 !important;
  }

  .stepps-header.scrolled .nav-list {
    gap: 1.5rem !important;
  }

  .stepps-header.scrolled .nav-link {
    font-size: 0.875rem !important;
    padding: 0.3rem 0.5rem !important;
  }
}

/* Default Header Container layout at top of page */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.25rem;
  width: 100%;
}

/* Bottom-Right Floating Action Pill Dock */
.floating-action-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(46, 16, 101, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(223, 169, 57, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(223, 169, 57, 0.25);
  border-radius: 9999px;
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.92);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-action-dock.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dock-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 2px 4px;
}

.dock-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.dock-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
}

.dock-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-btn-help {
  background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
}

.dock-btn-help:hover {
  background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.55);
}

.dock-btn-donate {
  background: linear-gradient(135deg, #DFA939 0%, #B47818 100%);
  color: #2E1065;
  box-shadow: 0 4px 14px rgba(223, 169, 57, 0.4);
}

.dock-btn-donate:hover {
  background: linear-gradient(135deg, #F59E0B 0%, #DFA939 100%);
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(223, 169, 57, 0.55);
}

.dock-pulse-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22C55E;
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 0 8px #22C55E;
}

/* Brand logo image in navbar */
.stepps-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  flex-shrink: 0;
  height: 100%;
  width: fit-content;
}

.stepps-logo-tagline {
  width: 100%;
  max-width: 100%;
  font-size: 0.475rem;
  font-weight: 800;
  color: #B47818;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: -3px;
  display: block;
  text-align: justify;
  text-align-last: justify;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.stepps-header.scrolled .stepps-logo-tagline {
  display: none;
}

.stepps-logo-img {
  width: auto;
  height: 68px;
  max-height: 72px;
  padding: 5px 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
  object-fit: contain;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex-shrink: 0;
  display: block;
  background: transparent !important;
  background-color: transparent !important;
}

.stepps-header.scrolled .stepps-logo-img {
  height: 54px;
  max-height: 58px;
}

/* Navigation Menu */
.stepps-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin-right: 0;
  padding-right: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  border-radius: 8px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item.active>.nav-link {
  color: var(--color-brand-primary);
  background: rgba(13, 148, 136, 0.08);
}

.nav-link svg.chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-item:hover>.nav-link svg.chevron {
  transform: rotate(180deg);
}

/* Submenu Dropdown (Level 2 & Level 3 Navigation) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  list-style: none;
  z-index: 1100;
}

.nav-item:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.dropdown-link:hover,
.dropdown-item.active>.dropdown-link {
  background: var(--color-brand-light);
  color: var(--color-brand-primary);
}

.dropdown-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-brand-primary);
}

/* Level 3 Nested Submenu */
.nested-dropdown {
  left: 100%;
  top: 0;
  margin-left: 0.25rem;
}

.dropdown-item:hover>.nested-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0;
  flex-shrink: 0;
}

/* Compact CTA buttons specifically in the navbar */
.header-actions .btn {
  padding: 0.45rem 1rem;
  font-size: 0.825rem;
}

/* Small Grey Navbar Social Icons */
.navbar-social-desktop {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.25rem;
}

.navbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #94A3B8;
  background: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.navbar-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.navbar-social-link:hover {
  color: #475569;
  background: rgba(148, 163, 184, 0.18);
  transform: translateY(-1px);
}

.nav-mobile-socials {
  display: none;
}

@media (max-width: 768px) {
  .navbar-social-desktop {
    display: none !important;
  }

  .nav-mobile-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0 0.5rem 0;
    margin-top: 1.25rem;
    border-top: 1px solid #E2E8F0;
    width: 100%;
  }

  .nav-mobile-socials .navbar-social-link {
    width: 38px;
    height: 38px;
    background: #F1F5F9;
    color: #64748B;
  }

  .nav-mobile-socials .navbar-social-link svg {
    width: 18px;
    height: 18px;
  }

  .nav-mobile-socials .navbar-social-link:hover {
    background: #E2E8F0;
    color: #2E1065;
  }
}


/* General Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

/* CTA 1: Get Help Now */
.btn-get-help {
  background: var(--color-cta-help);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-get-help:hover {
  background: var(--color-cta-help-hover);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow-help);
  transform: translateY(-1px);
}

.btn-get-help .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* CTA 2: Make a Donation */
.btn-donate {
  background: linear-gradient(135deg, var(--color-brand-gold) 0%, #C8942A 100%);
  color: #0F172A;
  box-shadow: var(--shadow-sm);
}

.btn-donate:hover {
  background: linear-gradient(135deg, #C8942A 0%, #B07E1F 100%);
  color: #0F172A;
  box-shadow: var(--shadow-glow-donate);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--color-brand-dark);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-brand-light);
  border-color: var(--color-text-muted);
}

/* Outline / Ghost button — transparent with solid border */
.btn-outline {
  background: transparent;
  color: var(--color-brand-dark);
  border: 2px solid var(--color-brand-purple);
}

.btn-outline:hover {
  background: var(--color-brand-purple);
  color: #FFFFFF;
  border-color: var(--color-brand-purple);
}


/* Mobile Hamburger Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-brand-dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.stepps-footer {
  background: var(--color-brand-dark);
  color: #94A3B8;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--color-brand-primary);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  position: relative;
  z-index: 2;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: block;
  background: transparent !important;
  background-color: transparent !important;
  position: relative;
  z-index: 2;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 340px;
}

/* Social Media Icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;

}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-brand-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Navigation Columns */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  color: #94A3B8;
  font-size: 0.925rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link-item a:hover {
  color: #5EEAD4;
  transform: translateX(3px);
}

/* Level Indicator Badge in Footer */
.level-tag {
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  font-weight: 600;
}

/* Contact Info Column */
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.925rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  color: var(--color-brand-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-value {
  color: #F8FAFC;
  font-weight: 500;
}

.contact-value a {
  color: #F8FAFC;
}

.contact-value a:hover {
  color: #5EEAD4;
}

/* Newsletter Bar */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.newsletter-text h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.newsletter-text p {
  font-size: 0.875rem;
  color: #94A3B8;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  max-width: 450px;
}

.newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.6);
  color: #FFFFFF;
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-brand-primary);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
}

.legal-inline {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.legal-inline a {
  color: #64748B;
}

.legal-inline a:hover {
  color: #94A3B8;
}

/* ============================================================
   HORIZONTAL ACCORDION VOICES SECTION
   ============================================================ */
.voices-accordion-wrapper {
  width: 100%;
  margin-top: 1.5rem;
  overflow: hidden;
}

.voices-accordion-track {
  display: flex;
  flex-direction: row;
  gap: 1px;
  width: 100%;
  min-height: 420px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.25rem 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-brand-purple) transparent;
}

.voices-accordion-card {
  position: relative;
  flex: 0 0 108px;
  height: 420px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), flex 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s ease;
  display: flex;
  scroll-snap-align: start;
}

.voices-accordion-card:not(.active):hover {
  transform: translateY(-8px);
  border-color: var(--color-brand-gold);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(223, 169, 57, 0.25);
  z-index: 2;
}

.voices-accordion-card.active {
  flex: 1 1 540px;
  min-width: 320px;
  background: linear-gradient(135deg, #2E1065 0%, #3B0764 60%, #4C1D95 100%);
  color: #FFFFFF;
  border-color: var(--color-brand-gold);
  box-shadow: 0 20px 40px rgba(46, 16, 101, 0.25), 0 0 30px rgba(223, 169, 57, 0.2);
  cursor: default;
  z-index: 3;
}

/* Collapsed Bar State */
.accordion-collapsed-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 108px;
  height: 100%;
  padding: 1.25rem 0.35rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.voices-accordion-card.active .accordion-collapsed-bar {
  display: none;
}

.collapsed-avatar img,
.collapsed-avatar span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: #2E1065;
  color: #FEF08A;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.collapsed-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.9rem;
  font-weight: 800;
  color: #FEF08A;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  letter-spacing: 0.05em;
  margin-top: auto;
  text-transform: uppercase;
}

.collapsed-badge {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 700;
  color: #B47818;
  white-space: nowrap;
}

/* Expanded Content State */
.accordion-expanded-content {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.voices-accordion-card.active .accordion-expanded-content {
  display: flex;
  opacity: 1;
}

.expanded-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expanded-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(223, 169, 57, 0.25);
  color: #FEF08A;
  border: 1px solid rgba(223, 169, 57, 0.4);
}

.expanded-stars {
  color: var(--color-brand-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.expanded-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  flex: 1;
  overflow-y: auto;
}

.expanded-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  gap: 1rem;
}

.expanded-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.expanded-avatar img,
.expanded-avatar span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-brand-gold);
  background: #FFFFFF;
  color: #2E1065;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  display: block;
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 800;
}

.author-role {
  font-size: 0.825rem;
  color: #CBD5E1;
  display: block;
}

.expanded-nav-btns {
  display: flex;
  gap: 0.5rem;
}

.accordion-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #FEF08A;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.accordion-nav-btn:hover {
  background: var(--color-brand-gold);
  color: #2E1065;
  border-color: var(--color-brand-gold);
}

/* Mobile Responsiveness: Switch from Horizontal Accordion to Vertical Accordion Stack */
.mobile-chevron-icon {
  display: none;
}

@media (max-width: 768px) {
  .voices-accordion-track {
    flex-direction: column !important;
    gap: 0.75rem !important;
    min-height: auto !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    padding: 0.5rem 0 !important;
  }

  .voices-accordion-card {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 60px !important;
    flex-direction: column !important;
    border-radius: 18px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .voices-accordion-card:not(.active):hover {
    transform: translateY(-2px) !important;
  }

  /* Collapsed Mobile Bar (Full width horizontal row with avatar, name, and chevron arrow) */
  .accordion-collapsed-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 60px !important;
    padding: 0.65rem 1rem !important;
    flex-shrink: 0 !important;
  }

  .voices-accordion-card.active .accordion-collapsed-bar {
    display: none !important;
  }

  .collapsed-avatar img,
  .collapsed-avatar span {
    width: 38px !important;
    height: 38px !important;
  }

  .collapsed-label {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    margin: 0 0 0 0.75rem !important;
    flex: 1 !important;
    text-align: left !important;
  }

  .mobile-chevron-icon {
    display: flex !important;
    align-items: center;
    color: #FEF08A;
    margin-left: 0.5rem;
  }

  /* Expanded Mobile Content (Smooth Vertical Expansion) */
  .accordion-expanded-content {
    display: none !important;
    padding: 1.25rem 1rem !important;
    flex-direction: column !important;
  }

  .voices-accordion-card.active .accordion-expanded-content {
    display: flex !important;
    opacity: 1 !important;
  }

  .expanded-quote {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1rem !important;
  }

  .expanded-footer {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
  }

  .expanded-author {
    gap: 0.6rem !important;
  }

  .expanded-avatar img,
  .expanded-avatar span {
    width: 38px !important;
    height: 38px !important;
  }

  .author-name {
    font-size: 0.9rem !important;
  }

  .author-role {
    font-size: 0.75rem !important;
  }
}

/* ==========================================================================
   MODAL DIALOGS ('Get help now' & 'Make a donation')
   ========================================================================== */
.stepps-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.68) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.stepps-modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.stepps-modal-card {
  background: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(223, 169, 57, 0.15);
  overflow: hidden;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  position: relative !important;
  z-index: 100001 !important;
}

.stepps-modal-backdrop.active .stepps-modal-card {
  transform: scale(1) translateY(0) !important;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: var(--color-text-heading);
}

/* Crisis Help Modal Styling */
.modal-header-help {
  background: linear-gradient(135deg, #BE123C 0%, #E11D48 100%);
  color: #FFFFFF;
  padding: 2rem 2rem 1.5rem 2rem;
}

.modal-header-help h3 {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-header-help p {
  color: #FFE4E6;
  font-size: 0.95rem;
}

.modal-body-content {
  padding: 1.75rem 2rem 2rem 2rem;
}

.crisis-callout-box {
  background: #FFF1F2;
  border-left: 4px solid #E11D48;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.crisis-callout-title {
  font-weight: 700;
  color: #9F1239;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crisis-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #E11D48;
  letter-spacing: 0.02em;
}

.crisis-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.crisis-option-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.crisis-option-card:hover {
  border-color: var(--color-brand-primary);
  background: rgba(13, 148, 136, 0.04);
}

.option-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-heading);
}

.option-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Quick Safety Exit Button */
.quick-exit-bar {
  background: #F8FAFC;
  border-top: 1px solid var(--color-border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.btn-quick-exit {
  background: #334155;
  color: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Donation Modal Styling */
.modal-header-donate {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  color: #FFFFFF;
  padding: 2rem 2rem 1.5rem 2rem;
}

.modal-header-donate h3 {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.modal-header-donate p {
  color: #D1FAE5;
  font-size: 0.95rem;
}

.donation-frequency-toggle {
  display: flex;
  background: #F1F5F9;
  padding: 4px;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.freq-btn {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.freq-btn.active {
  background: #FFFFFF;
  color: var(--color-cta-donate);
  box-shadow: var(--shadow-sm);
}

.donation-amounts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.amount-btn {
  padding: 0.85rem 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text-heading);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--color-brand-purple-dark);
  color: var(--color-brand-purple-dark);
  background: rgba(46, 16, 101, 0.06);
}

.custom-amount-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.custom-amount-input:focus {
  border-color: var(--color-brand-purple-dark);
}

.impact-summary-box {
  background: #FAF5FF;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-brand-purple-dark);
  font-weight: 600;
}

/* JustGiving Embedded Modal Styling */
.stepps-justgiving-card {
  max-width: 580px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepps-checkout-card {
  max-width: 620px !important;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: 0 0.5rem;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step-node.active {
  opacity: 1;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.step-node.active .step-num {
  background: #DFA939;
  color: #2E1065;
  border-color: #FEF08A;
}

.step-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px 16px 8px;
  transition: all 0.3s ease;
}

.step-line.active {
  background: #DFA939;
}

.checkout-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.checkout-input:focus {
  border-color: #581C87;
  box-shadow: 0 0 0 3px rgba(88, 28, 135, 0.12);
}

.payment-method-selector .pay-tab-btn {
  padding: 0.75rem 0.5rem;
  background: #F8FAFC;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  color: #475569;
  transition: all 0.2s ease;
}

.payment-method-selector .pay-tab-btn:hover {
  border-color: #CBD5E1;
  background: #FFFFFF;
}

.payment-method-selector .pay-tab-btn.active {
  background: #FAF5FF;
  border-color: #581C87;
  color: #581C87;
}

/* ==========================================================================
   PAGE SPECIFIC COMPONENTS & LAYOUTS (Level 1, 2, 3)
   ========================================================================== */

/* Breadcrumb Navigation for Level 2 & Level 3 Pages */
.breadcrumb-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumb-item a {
  color: var(--color-text-muted);
}

.breadcrumb-item.active {
  color: var(--color-brand-primary);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--color-text-light);
}

/* Page Header / Hero Banner */
.page-hero {
  background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand-navy) 100%);
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: #CBD5E1;
  font-size: 1.2rem;
  max-width: 680px;
  margin-bottom: 2rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #5EEAD4;
}

.stat-label {
  font-size: 0.9rem;
  color: #94A3B8;
}

/* Content Sections */
.section {
  padding: 5rem 0;
}

.section-title-group {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-primary);
  background: rgba(13, 148, 136, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Service Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, 0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Crisis Quick Banner */
.emergency-banner-box {
  background: linear-gradient(135deg, var(--color-brand-dark) 0%, #1E1B4B 100%);
  border-radius: 20px;
  padding: 3rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
}

.banner-content h2 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.banner-content p {
  color: #CBD5E1;
  font-size: 1.1rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* ============================================================
   NAVBAR: TABLET & SMALL DESKTOP (max-width: 1250px)
   - Switch to hamburger trigger menu earlier to prevent CTA button crowding
============================================================ */
@media (max-width: 1250px) {

  /* Hide the desktop nav */
  .stepps-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: stretch;
    display: none;
    z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .stepps-nav.mobile-active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
    border-bottom: 1px solid #F1F5F9;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 1rem;
    width: 100%;
    display: none;
    margin-top: 0.25rem;
  }

  .nav-item.open > .dropdown-menu {
    display: block;
  }

  .mobile-toggle {
    display: block;
    flex-shrink: 0;
  }

  /* Keep action buttons prominent */
  .header-actions {
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-actions .btn {
    display: inline-flex !important;
    padding: 0.45rem 0.85rem;
    font-size: 0.825rem;
  }
}

/* ============================================================
   NAVBAR: MOBILE (max-width: 768px)
   - Compact header, mobile drawer nav
============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .stepps-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .stepps-topbar {
    display: none;
  }

  /* Logo image: bigger on mobile too */
  .stepps-logo-img {
    height: 58px;
    max-height: 60px;
  }

  /* Tagline behavior on mobile: hidden by default, visible in triggered menu */
  .stepps-logo-tagline {
    display: none;
  }

  .stepps-nav.active .stepps-logo-tagline,
  .mobile-nav-active .stepps-logo-tagline {
    display: block !important;
    margin-top: 0.25rem;
    font-size: 0.65rem;
  }

  /* Header actions: tight but visible */
  .header-actions {
    margin-left: auto;
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .header-actions .btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.775rem;
  }

  /* Hamburger toggle */
  .mobile-toggle {
    display: block;
    flex-shrink: 0;
    padding: 0.3rem;
    margin-left: 0.2rem;
  }

  /* Layout fixes */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .emergency-banner-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-newsletter {
    flex-direction: column;
  }
}

/* ============================================================
   NAVBAR: SMALL MOBILE (max-width: 480px)
   - Single icon buttons, max logo size
============================================================ */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .stepps-logo-img {
    height: 44px;
  }

  /* On tiny screens hide 'Get Help Now', keep only Donate */
  .btn-get-help {
    display: none;
  }

  .header-actions .btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   RESPONSIVE SUB-PAGE LAYOUT & MOBILE NAVIGATION
   ========================================================================== */

/* Main Sub-page Grid Container */
.subpage-layout-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Top Horizontal Scrollable Pills Navigation (Shown on Mobile < 992px) */
.subpage-top-pills {
  display: none;
  margin-bottom: 1.5rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
}

.subpage-top-pills-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.subpage-pills-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.subpage-pills-scroll::-webkit-scrollbar {
  display: none;
}

.subpage-pill-item {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: var(--color-brand-light);
  color: var(--color-text-main);
  white-space: nowrap;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  text-decoration: none;
  flex-shrink: 0;
}

.subpage-pill-item:hover,
.subpage-pill-item.active {
  background: var(--color-brand-primary);
  color: #FFFFFF;
  border-color: var(--color-brand-primary);
}

/* Sidebar Box Styling */
.subpage-sidebar-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

/* Media Query Adjustments for Tablet & Mobile (< 992px) */
@media (max-width: 992px) {
  .subpage-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .subpage-top-pills {
    display: block;
  }

  .subpage-sidebar-box {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: none;
  }

  .subpage-sidebar-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.subpage-sidebar-nav-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}


/* Carousel Track & Controls (Shared across Team & Endorsements) */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0 10px;
}

.carousel-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: auto;
  padding: 0.75rem 0.5rem 1.25rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2E1065;
  color: #FFFFFF;
  border: 2px solid #DFA939;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: #DFA939;
  color: #2E1065;
}

.carousel-btn.prev-btn { left: 4px; }
.carousel-btn.next-btn { right: 4px; }

/* Endorsed & Supported By Leading Dance Organizations */

.endorsement-logo-card {
  flex: 0 0 250px !important;
  width: 250px !important;
  min-width: 250px !important;
  max-width: 250px !important;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}

.endorsement-logo-card:hover {
  border-color: var(--color-brand-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.endorsement-logo-mark {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 6px;
  overflow: hidden;
}

.endorsement-logo-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
}


.endorsement-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.endorsement-logo-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-brand-purple-dark);
  line-height: 1.25;
}

.endorsement-logo-tag {
  font-size: 0.725rem;
  color: #B47818;
  font-weight: 700;
}

/* National Media Appearances Accordion Component */
.media-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.media-accordion-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.media-accordion-item:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(223, 169, 57, 0.5);
}

.media-accordion-header {
  width: 100%;
  padding: 1.1rem 1.35rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.media-accordion-badge {
  font-size: 0.725rem;
  font-weight: 800;
  color: #FEF08A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.media-accordion-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.media-accordion-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FEF08A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.media-accordion-item.open .media-accordion-chevron {
  transform: rotate(180deg);
  background: #DFA939;
  color: #2E1065;
}

.media-accordion-body {
  display: none;
  padding: 1.25rem;
  color: #CBD5E1;
  font-size: 0.925rem;
  line-height: 1.65;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.15);
}

.media-accordion-item.open .media-accordion-body {
  display: block;
}

.media-accordion-quote {
  font-style: italic;
  color: #FEF08A;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border-left: 3px solid #DFA939;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}  margin-top: 3px;
}

/* ==========================================================================
   CREATIVE TESTIMONIAL SPOTLIGHT & CATEGORY FILTER STYLES
   ========================================================================== */

.testimonial-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.testimonial-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  padding: 0.425rem 1rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.testimonial-tab-btn:hover,
.testimonial-tab-btn.active {
  background: var(--color-brand-purple);
  color: #FFFFFF;
  border-color: var(--color-brand-purple);
  box-shadow: 0 4px 15px rgba(46, 16, 101, 0.2);
}

#testimonial-spotlight-card {
  background: linear-gradient(135deg, #2E1065 0%, #3B0764 100%);
  border-radius: 18px;
  padding: 1.4rem 1.65rem;
  border: 2px solid var(--color-brand-gold);
  box-shadow: 0 14px 30px rgba(46, 16, 101, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-showcase-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.testimonial-selector-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.testimonial-selector-list::-webkit-scrollbar {
  width: 6px;
}

.testimonial-selector-list::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}

.spotlight-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-purple {
  background: rgba(223, 169, 57, 0.25);
  color: #FEF08A;
  border: 1px solid rgba(223, 169, 57, 0.4);
}

.badge-gold {
  background: rgba(223, 169, 57, 0.25);
  color: #FEF08A;
  border: 1px solid rgba(223, 169, 57, 0.4);
}

.badge-blue {
  background: rgba(56, 189, 248, 0.2);
  color: #7DD3FC;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.badge-teal {
  background: rgba(45, 212, 191, 0.2);
  color: #99F6E4;
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.badge-green {
  background: rgba(74, 222, 128, 0.2);
  color: #BBF7D0;
  border: 1px solid rgba(74, 222, 128, 0.4);
}

.badge-pink {
  background: rgba(244, 114, 182, 0.2);
  color: #FBCFE8;
  border: 1px solid rgba(244, 114, 182, 0.4);
}

.testimonial-selector-card:hover {
  border-color: var(--color-brand-purple) !important;
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
}

@media (max-width: 992px) {
  .testimonial-tabs-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .testimonial-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.375rem 0.85rem;
  }

  .testimonial-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .testimonial-selector-list {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .testimonial-selector-card {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  #testimonial-spotlight-card {
    padding: 1.2rem 1.15rem;
    border-radius: 16px;
  }

  .testimonial-selector-panel {
    display: none !important;
    /* Mobile uses integrated Touch Slider controls with Prev/Next buttons & 1 of 7 counter */
  }
}