/* === SUPPORT MAIN === */
.support-main {
  padding-top: 100px;
}

/* === SCROLL ANIMATIONS === */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.animate-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.animate-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.animate-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.animate-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.animate-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }
.animate-stagger.is-visible > *:nth-child(7) { transition-delay: 0.7s; }
.animate-stagger.is-visible > *:nth-child(8) { transition-delay: 0.8s; }
.animate-stagger.is-visible > *:nth-child(9) { transition-delay: 0.9s; }
.animate-stagger.is-visible > *:nth-child(10) { transition-delay: 1.0s; }

.animate-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* === HERO SECTION === */
.support-hero {
  background: linear-gradient(135deg, #EFF5FC 0%, #efe9e1 50%, #D6E8F8 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(214, 189, 159, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(32, 104, 168, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(184, 155, 94, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: hero-gradient-pulse 8s ease-in-out infinite alternate;
}

.support-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 600px 300px at 20% 80%, rgba(214, 189, 159, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 80% 20%, rgba(32, 104, 168, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes hero-gradient-pulse {
  0% { opacity: 0.8; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.05) rotate(2deg); }
}

.support-hero__decorative {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.support-hero__decorative--1 {
  top: 15%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-element 6s ease-in-out infinite;
}

.support-hero__decorative--2 {
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, rgba(32, 104, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-element 8s ease-in-out infinite reverse;
}

.support-hero__decorative--3 {
  top: 40%;
  right: 8%;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, rgba(184, 155, 94, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-element 5s ease-in-out infinite 1s;
}

@keyframes float-element {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.support-hero__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.support-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.15) 0%, rgba(214, 189, 159, 0.1) 100%);
  border: 1px solid rgba(184, 155, 94, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #143E6B;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: support-hero-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.support-hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  animation: support-hero-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.support-hero__subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: support-hero-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes support-hero-fadein {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.support-hero__search {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: support-hero-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.support-hero__search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #888;
  transition: color 0.3s ease;
}

.support-hero__input:focus ~ .search-icon,
.support-hero__search:focus-within .search-icon {
  color: #2068A8;
}

.support-hero__input {
  width: 100%;
  padding: 18px 20px 18px 54px;
  border: 2px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.support-hero__input:hover {
  border-color: #ccc;
}

.support-hero__input:focus {
  outline: none;
  border-color: #5BA4E6;
  box-shadow: 0 0 0 4px rgba(32, 104, 168, 0.15), 0 8px 30px rgba(214, 189, 159, 0.25);
  background-color: #fffef8;
  transform: scale(1.01);
}

.support-hero__input::placeholder {
  color: #999;
  transition: color 0.3s ease;
}

.support-hero__input:focus::placeholder {
  color: #bbb;
}

/* === CRISIS SECTION === */
.crisis-section {
  background: #fff;
  padding: 60px 20px;
}

.crisis-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border: 2px solid #e57373;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.crisis-banner__icon {
  width: 60px;
  height: 60px;
  background: #e57373;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crisis-banner__icon ion-icon {
  font-size: 28px;
  color: #fff;
}

.crisis-banner__content {
  flex: 1;
  min-width: 200px;
}

.crisis-banner__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 6px;
}

.crisis-banner__text {
  color: #555;
  font-size: 1rem;
}

.crisis-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.crisis-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.crisis-btn ion-icon {
  transition: transform 0.3s ease;
}

.crisis-btn:hover ion-icon {
  transform: scale(1.1);
}

.crisis-btn--primary {
  background: linear-gradient(135deg, #c62828 0%, #d32f2f 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.25);
  animation: crisis-pulse 2s ease-in-out infinite;
}

@keyframes crisis-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.25);
  }
  50% {
    box-shadow: 0 4px 25px rgba(198, 40, 40, 0.5), 0 0 40px rgba(198, 40, 40, 0.3);
  }
}

.crisis-btn--secondary {
  background: #fff;
  color: #c62828;
  border: 2px solid #c62828;
}

.crisis-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.4);
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
}

.crisis-btn--secondary:hover {
  transform: translateY(-3px);
  background: #fff5f5;
  box-shadow: 0 8px 25px rgba(198, 40, 40, 0.2);
}

.crisis-btn:active {
  transform: translateY(-1px);
}

.crisis-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.crisis-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: support-card-enter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.crisis-card:nth-child(1) { animation-delay: 0.1s; }
.crisis-card:nth-child(2) { animation-delay: 0.2s; }
.crisis-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes support-card-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crisis-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(214, 189, 159, 0.1);
  border-color: #2068A8;
}

.crisis-card:hover .crisis-card__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.crisis-card:hover .crisis-card__icon ion-icon {
  color: #2068A8;
}

.crisis-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.crisis-card__icon ion-icon {
  font-size: 28px;
  color: #666;
  transition: color 0.3s ease;
}

.crisis-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.crisis-card__text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.crisis-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2068A8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.crisis-card__link::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.crisis-card__link:hover {
  color: #1B5A94;
  gap: 10px;
}

.crisis-card__link:hover::after {
  transform: translateX(4px);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #2d2d2d 0%, #555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === SECTION DIVIDER === */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: transparent;
}

.section-divider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f8f6f3' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,75 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  animation: wave-motion 6s ease-in-out infinite alternate;
}

@keyframes wave-motion {
  0% { transform: translateX(0); }
  100% { transform: translateX(-20px); }
}

.section-divider--reverse::before {
  transform: scaleY(-1);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23fff' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,75 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

/* === QUICK LINKS === */
.quicklinks-section {
  background: #EFF5FC;
  padding: 80px 20px;
}

.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.quicklink-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  border: 1px solid #D6E8F8;
  opacity: 0;
  transform: translateY(30px);
  animation: support-card-enter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.quicklink-card:nth-child(1) { animation-delay: 0.05s; }
.quicklink-card:nth-child(2) { animation-delay: 0.1s; }
.quicklink-card:nth-child(3) { animation-delay: 0.15s; }
.quicklink-card:nth-child(4) { animation-delay: 0.2s; }
.quicklink-card:nth-child(5) { animation-delay: 0.25s; }
.quicklink-card:nth-child(6) { animation-delay: 0.3s; }

.quicklink-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #2068A8;
}

.quicklink-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.quicklink-card:hover .quicklink-card__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(214, 189, 159, 0.4);
}

.quicklink-card__icon ion-icon {
  font-size: 28px;
  color: #fff;
  transition: transform 0.3s ease;
}

.quicklink-card:hover .quicklink-card__icon ion-icon {
  transform: scale(1.1);
}

.quicklink-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.quicklink-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* === HELPLINES === */
.helplines-section {
  background: #fff;
  padding: 80px 20px;
}

/* === HELPLINES CONTROLS === */
.helplines-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.helplines-view-toggle {
  display: flex;
  gap: 4px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 10px;
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.view-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.view-toggle-btn.active {
  background: #fff;
  color: var(--user-accent, #5BA4E6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-toggle-btn ion-icon {
  font-size: 1.25rem;
}

/* === LIST VIEW === */
.helplines-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.helplines-grid.list-view .helpline-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px 24px;
  gap: 20px;
}

.helplines-grid.list-view .helpline-card__icon-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.helplines-grid.list-view .helpline-card__icon-wrapper ion-icon {
  font-size: 1.5rem;
}

.helplines-grid.list-view .helpline-card__content {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 20px;
}

.helplines-grid.list-view .helpline-card__header {
  flex: 1;
  min-width: 160px;
}

.helplines-grid.list-view .helpline-card__title {
  font-size: 1rem;
  margin-bottom: 2px;
}

.helplines-grid.list-view .helpline-card__badge {
  padding: 2px 8px;
  font-size: 0.65rem;
}

.helplines-grid.list-view .helpline-card__description {
  display: none;
}

.helplines-grid.list-view .helpline-card__details {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.helplines-grid.list-view .helpline-contact {
  padding: 8px 16px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .helplines-grid.list-view .helpline-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 12px;
  }

  .helplines-grid.list-view .helpline-card__icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .helplines-grid.list-view .helpline-card__content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .helplines-grid.list-view .helpline-card__header {
    min-width: unset;
  }

  .helplines-grid.list-view .helpline-card__title {
    font-size: 1.05rem;
  }

  .helplines-grid.list-view .helpline-card__description {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
  }

  .helplines-grid.list-view .helpline-card__details {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .helplines-grid.list-view .helpline-contact {
    padding: 10px 16px;
    font-size: 0.9rem;
    justify-content: center;
  }
}

body.dark-mode .helplines-view-toggle {
  background: #2a2a2a;
}

body.dark-mode .view-toggle-btn {
  color: #999;
}

body.dark-mode .view-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ccc;
}

body.dark-mode .view-toggle-btn.active {
  background: #333;
  color: var(--user-accent, #6DB3F2);
}

@media (max-width: 768px) {
  .helplines-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .helplines-view-toggle {
    align-self: flex-end;
  }
  
  
  .helplines-grid.mobile-grouped {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .mobile-category-group {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }
  
  .mobile-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
  }
  
  .mobile-category-header:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%);
  }
  
  .mobile-category-header__left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .mobile-category-header__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .mobile-category-header__icon--crisis { background: linear-gradient(135deg, #dc3545, #c82333); }
  .mobile-category-header__icon--lgbtq { background: linear-gradient(135deg, #6DB3F2, #7f5ac8); }
  .mobile-category-header__icon--youth { background: linear-gradient(135deg, #f0a500, #d9940a); }
  .mobile-category-header__icon--veterans { background: linear-gradient(135deg, #5a6e82, #4a5d6e); }
  .mobile-category-header__icon--specialized { background: linear-gradient(135deg, #20c997, #17a085); }
  .mobile-category-header__icon--general { background: linear-gradient(135deg, #4a90d9, #357abd); }
  
  .mobile-category-header__title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }
  
  .mobile-category-header__count {
    font-size: 0.8rem;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
  }
  
  .mobile-category-header__chevron {
    font-size: 1.25rem;
    color: #666;
    transition: transform 0.3s ease;
  }
  
  .mobile-category-group.expanded .mobile-category-header__chevron {
    transform: rotate(180deg);
  }
  
  .mobile-category-content {
    display: none;
    padding: 12px;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
  }
  
  .mobile-category-group.expanded .mobile-category-content {
    display: block;
  }
  
  .mobile-category-content .helpline-card {
    margin-bottom: 12px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
  }
  
  .mobile-category-content .helpline-card:last-child {
    margin-bottom: 0;
  }
  
  
  body.dark-mode .mobile-category-group {
    background: #1a1a1a;
    border-color: #333;
  }
  
  body.dark-mode .mobile-category-header {
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  }
  
  body.dark-mode .mobile-category-header:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #222 100%);
  }
  
  body.dark-mode .mobile-category-header__title {
    color: #e0e0e0;
  }
  
  body.dark-mode .mobile-category-header__count {
    background: #333;
    color: #aaa;
  }
  
  body.dark-mode .mobile-category-content {
    background: #151515;
    border-top-color: #333;
  }
}

@media (prefers-reduced-motion: reduce) {
  .helplines-grid {
    transition: none;
  }
  
  .view-toggle-btn {
    transition: none;
  }
  
  .mobile-category-header {
    transition: none;
  }
  
  .mobile-category-header__chevron {
    transition: none;
  }
  
  .mobile-category-group.expanded .mobile-category-header__chevron {
    transform: rotate(180deg);
  }
}

.helplines-expect {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border: 1px solid #d0e5f7;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 32px;
  animation: support-card-enter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.helplines-expect__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4a90d9 0%, #357abd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.helplines-expect__icon ion-icon {
  font-size: 24px;
  color: #fff;
}

.helplines-expect__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d5a87;
  margin-bottom: 8px;
}

.helplines-expect__content p {
  font-size: 0.95rem;
  color: #4a7ba7;
  line-height: 1.6;
  margin: 0;
}

.helplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  transition: opacity 0.15s ease;
}

.helpline-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: support-card-enter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.helpline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2068A8, #1B5A94);
  transition: height 0.3s ease;
}

.helpline-card--crisis::before {
  background: linear-gradient(90deg, #e53935, #c62828);
}

.helpline-card--lgbtq::before,
.helpline-card--trans::before {
  background: linear-gradient(90deg, #9c27b0, #7b1fa2, #e91e63);
}

.helpline-card--youth::before {
  background: linear-gradient(90deg, #ff9800, #f57c00);
}

.helpline-card--veterans::before {
  background: linear-gradient(90deg, #1565c0, #0d47a1);
}

.helpline-card--specialized::before {
  background: linear-gradient(90deg, #00897b, #00695c);
}

.helpline-card--general::before {
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.helpline-card:nth-child(1) { animation-delay: 0.05s; }
.helpline-card:nth-child(2) { animation-delay: 0.1s; }
.helpline-card:nth-child(3) { animation-delay: 0.15s; }
.helpline-card:nth-child(4) { animation-delay: 0.2s; }
.helpline-card:nth-child(5) { animation-delay: 0.25s; }
.helpline-card:nth-child(6) { animation-delay: 0.3s; }
.helpline-card:nth-child(7) { animation-delay: 0.35s; }
.helpline-card:nth-child(8) { animation-delay: 0.4s; }
.helpline-card:nth-child(9) { animation-delay: 0.45s; }
.helpline-card:nth-child(10) { animation-delay: 0.5s; }
.helpline-card:nth-child(11) { animation-delay: 0.55s; }
.helpline-card:nth-child(12) { animation-delay: 0.6s; }

.helpline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.helpline-card:hover::before {
  height: 6px;
}

.helpline-card--crisis:hover {
  box-shadow: 0 20px 50px rgba(229, 57, 53, 0.15);
}

.helpline-card--lgbtq:hover,
.helpline-card--trans:hover {
  box-shadow: 0 20px 50px rgba(156, 39, 176, 0.15);
}

.helpline-card--youth:hover {
  box-shadow: 0 20px 50px rgba(255, 152, 0, 0.15);
}

.helpline-card--veterans:hover {
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.15);
}

.helpline-card--specialized:hover {
  box-shadow: 0 20px 50px rgba(0, 137, 123, 0.15);
}

.helpline-card--general:hover {
  box-shadow: 0 20px 50px rgba(33, 150, 243, 0.15);
}

.helpline-card__icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #EFF5FC 0%, #f0ebe4 100%);
}

.helpline-card--crisis .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.helpline-card--crisis .helpline-card__icon-wrapper ion-icon {
  color: #e53935;
}

.helpline-card--lgbtq .helpline-card__icon-wrapper,
.helpline-card--trans .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.helpline-card--lgbtq .helpline-card__icon-wrapper ion-icon,
.helpline-card--trans .helpline-card__icon-wrapper ion-icon {
  color: #9c27b0;
}

.helpline-card--youth .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.helpline-card--youth .helpline-card__icon-wrapper ion-icon {
  color: #ff9800;
}

.helpline-card--veterans .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.helpline-card--veterans .helpline-card__icon-wrapper ion-icon {
  color: #1565c0;
}

.helpline-card--specialized .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.helpline-card--specialized .helpline-card__icon-wrapper ion-icon {
  color: #00897b;
}

.helpline-card--general .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.helpline-card--general .helpline-card__icon-wrapper ion-icon {
  color: #2196f3;
}

.helpline-card__icon-wrapper ion-icon {
  font-size: 24px;
  color: #2068A8;
}

.helpline-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.helpline-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
}

.helpline-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.helpline-card__badge ion-icon {
  font-size: 12px;
}

.helpline-card__badge--24-7 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
}

.helpline-card__badge--hours {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.helpline-card__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.helpline-card__wait {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #43a047;
  margin-bottom: 16px;
}

.helpline-card__wait ion-icon {
  font-size: 14px;
  color: #43a047;
}

.helpline-card__contacts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.helpline-card__tty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #888;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.helpline-card__tty ion-icon {
  font-size: 16px;
  color: #888;
}

.helpline-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #EFF5FC 0%, #f0ebe4 100%);
  border-radius: 10px;
  color: #2d2d2d;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.helpline-contact--call {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.helpline-contact--call ion-icon {
  color: #43a047;
}

.helpline-contact--text {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.helpline-contact--text ion-icon {
  color: #1976d2;
}

.helpline-contact--chat {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.helpline-contact--chat ion-icon {
  color: #8e24aa;
}

.helpline-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.helpline-contact--call:hover {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  color: #fff;
}

.helpline-contact--call:hover ion-icon {
  color: #fff;
}

.helpline-contact--text:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
}

.helpline-contact--text:hover ion-icon {
  color: #fff;
}

.helpline-contact--chat:hover {
  background: linear-gradient(135deg, #8e24aa 0%, #7b1fa2 100%);
  color: #fff;
}

.helpline-contact--chat:hover ion-icon {
  color: #fff;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(46, 125, 50, 0); }
}

.helpline-card__badge--24-7 {
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.helpline-card__icon-wrapper {
  animation: icon-float 3s ease-in-out infinite;
}

.helpline-card__icon-wrapper:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
}

.helpline-contact {
  position: relative;
  overflow: hidden;
}

.helpline-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.helpline-contact:active::after {
  width: 200px;
  height: 200px;
}

.helpline-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
  pointer-events: none;
}

.helpline-card:hover::after {
  left: 100%;
}

@keyframes gradient-glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.helpline-card--crisis:hover::before {
  background: linear-gradient(90deg, #e53935, #ff5252, #e53935);
  background-size: 200% 100%;
  animation: gradient-glow 2s ease infinite;
}

.helpline-card--lgbtq:hover::before,
.helpline-card--trans:hover::before {
  background: linear-gradient(90deg, #9c27b0, #e91e63, #9c27b0);
  background-size: 200% 100%;
  animation: gradient-glow 2s ease infinite;
}

.helpline-card--youth:hover::before {
  background: linear-gradient(90deg, #ff9800, #ffb74d, #ff9800);
  background-size: 200% 100%;
  animation: gradient-glow 2s ease infinite;
}

.helpline-card--veterans:hover::before {
  background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0);
  background-size: 200% 100%;
  animation: gradient-glow 2s ease infinite;
}

.helpline-card--specialized:hover::before {
  background: linear-gradient(90deg, #00897b, #4db6ac, #00897b);
  background-size: 200% 100%;
  animation: gradient-glow 2s ease infinite;
}

.helpline-card--general:hover::before {
  background: linear-gradient(90deg, #2196f3, #64b5f6, #2196f3);
  background-size: 200% 100%;
  animation: gradient-glow 2s ease infinite;
}

.helplines-wave-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-bottom: -2px;
}

.helplines-wave-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.helplines-wave-separator .wave-1 {
  fill: rgba(214, 189, 159, 0.1);
  animation: wave-float 8s ease-in-out infinite;
}

.helplines-wave-separator .wave-2 {
  fill: rgba(214, 189, 159, 0.15);
  animation: wave-float 6s ease-in-out infinite reverse;
}

.helplines-wave-separator .wave-3 {
  fill: #f8f9fa;
  animation: wave-float 10s ease-in-out infinite;
}

@keyframes wave-float {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

.helplines-section {
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, rgba(214, 189, 159, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(100, 181, 246, 0.06) 0%, transparent 50%),
    #f8f9fa;
}

.helplines-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.helplines-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.helplines-decoration--1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
  animation: decoration-float 7s ease-in-out infinite;
}

.helplines-decoration--2 {
  top: 30%;
  right: 8%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.08) 0%, transparent 70%);
  animation: decoration-float 9s ease-in-out infinite reverse;
}

.helplines-decoration--3 {
  bottom: 20%;
  left: 10%;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  animation: decoration-float 8s ease-in-out infinite;
  transform: rotate(45deg);
}

.helplines-decoration--4 {
  bottom: 40%;
  right: 5%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, transparent 70%);
  animation: decoration-float 6s ease-in-out infinite reverse;
}

@keyframes decoration-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-15px) rotate(5deg); opacity: 1; }
}

.helplines-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  padding: 0;
}

.helplines-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.helplines-filter-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.helplines-filter-pill.active,
.helplines-filter-pill[data-filter="all"].active {
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill[data-filter="crisis"] {
  border-color: #ffcdd2;
}
.helplines-filter-pill[data-filter="crisis"].active,
.helplines-filter-pill[data-filter="crisis"]:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill[data-filter="lgbtq"] {
  border-color: #e1bee7;
}
.helplines-filter-pill[data-filter="lgbtq"].active,
.helplines-filter-pill[data-filter="lgbtq"]:hover {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill[data-filter="youth"] {
  border-color: #ffe0b2;
}
.helplines-filter-pill[data-filter="youth"].active,
.helplines-filter-pill[data-filter="youth"]:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill[data-filter="veterans"] {
  border-color: #bbdefb;
}
.helplines-filter-pill[data-filter="veterans"].active,
.helplines-filter-pill[data-filter="veterans"]:hover {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill[data-filter="specialized"] {
  border-color: #b2dfdb;
}
.helplines-filter-pill[data-filter="specialized"].active,
.helplines-filter-pill[data-filter="specialized"]:hover {
  background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill[data-filter="general"] {
  border-color: #bbdefb;
}
.helplines-filter-pill[data-filter="general"].active,
.helplines-filter-pill[data-filter="general"]:hover {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  border-color: transparent;
  color: #fff;
}

.helplines-filter-pill ion-icon {
  font-size: 16px;
}

.helpline-card.filter-hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.helpline-card.filter-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.helpline-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
}

.helpline-copy-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.helpline-copy-btn ion-icon {
  font-size: 16px;
  color: #666;
}

.helpline-copy-btn.copied {
  background: #43a047;
}

.helpline-copy-btn.copied ion-icon {
  color: #fff;
}

.helpline-card__availability {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e0e0e0;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.availability-badge--call {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
}

.availability-badge--text {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565c0;
}

.availability-badge--chat {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

.availability-badge--tty {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #e65100;
}

.availability-badge ion-icon {
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .helpline-card__badge--24-7,
  .helpline-card__icon-wrapper,
  .helplines-wave-separator .wave-1,
  .helplines-wave-separator .wave-2,
  .helplines-wave-separator .wave-3,
  .helplines-decoration--1,
  .helplines-decoration--2,
  .helplines-decoration--3,
  .helplines-decoration--4 {
    animation: none;
  }
  
  .helpline-card::after {
    display: none;
  }
  
  .helpline-card--crisis:hover::before,
  .helpline-card--lgbtq:hover::before,
  .helpline-card--trans:hover::before,
  .helpline-card--youth:hover::before,
  .helpline-card--veterans:hover::before,
  .helpline-card--specialized:hover::before,
  .helpline-card--general:hover::before {
    animation: none;
  }
  
  .helpline-contact::after {
    display: none;
  }
  
  .helplines-filter-pill,
  .helpline-copy-btn,
  .helpline-contact {
    transition: none;
  }
}

.helpline-contact ion-icon {
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.helpline-contact:hover ion-icon {
  transform: scale(1.15);
}

.resources-section {
  background: #EFF5FC;
  padding: 80px 20px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.resource-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #D6E8F8;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.resource-card__icon {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.resource-card__icon ion-icon {
  font-size: 24px;
  color: #2068A8;
}

.resource-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.resource-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.resource-card__link {
  color: #2068A8;
  font-weight: 600;
  font-size: 0.9rem;
}

.selfhelp-section {
  background: #fff;
  padding: 80px 20px;
}

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

.selfhelp-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 28px;
}

.selfhelp-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.selfhelp-card__header ion-icon {
  font-size: 24px;
  color: #2068A8;
}

.selfhelp-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
}

.selfhelp-card__text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.selfhelp-card__steps,
.selfhelp-card__list {
  padding-left: 20px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
}

.selfhelp-card__steps li,
.selfhelp-card__list li {
  margin-bottom: 6px;
}

.appointment-section {
  background: linear-gradient(135deg, #EFF5FC 0%, #D6E8F8 100%);
  padding: 80px 20px;
}

.appointment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.appointment-info__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 16px;
}

.appointment-info__text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

.appointment-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.appointment-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.95rem;
}

.appointment-feature ion-icon {
  font-size: 1.3rem;
  color: #2068A8;
}

.appointment-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2068A8;
  box-shadow: 0 0 0 3px rgba(214, 189, 159, 0.15);
  background: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 189, 159, 0.4);
}

.form-submit ion-icon {
  font-size: 1.2rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 16px;
}

.faq-section {
  background: transparent;
  padding: 0;
  margin: 0;
}

.faq-section .container {
  max-width: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: 500px;
  width: 100%;
}

.faq-intro {
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-intro__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.faq-intro__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.faq-list {
  background: #f5f5f5;
  padding: 40px 50px;
  display: block;
}

.faq-list::-webkit-scrollbar {
  width: 8px;
}

.faq-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.faq-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.faq-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: "";
}

.faq-item {
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: background 0.2s ease;
}

.faq-item:first-child {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  background: rgba(214, 189, 159, 0.08);
}

.faq-item[open] {
  background: rgba(214, 189, 159, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 500;
  color: #333 !important;
  background: transparent;
  transition: color 0.2s ease;
  line-height: 1.5;
  list-style: none;
  font-family: 'Poppins', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

.faq-question span {
  flex: 1;
  font-size: 16px !important;
  color: inherit;
  letter-spacing: normal;
  text-transform: none;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

.faq-question:hover {
  color: #1a1a1a;
  background: transparent;
}

.faq-item[open] .faq-question {
  color: #1a1a1a;
  background: transparent;
}

.faq-icon {
  font-size: 1.2rem;
  color: #888;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: #2068A8;
}

.faq-question:hover .faq-icon {
  color: #2068A8;
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  background: transparent;
  padding: 0 16px;
  opacity: 0;
}

.faq-item[open] .faq-answer {
  max-height: 1000px;
  padding: 0 16px 24px 16px;
  opacity: 1;
}

.faq-answer-inner {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              opacity 0.3s ease 0.1s;
  opacity: 1;
}

.faq-item:not([open]) .faq-answer p {
  transform: translateY(-10px);
  opacity: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section-new {
  background: linear-gradient(180deg, #EFF5FC 0%, #fff 50%, #EFF5FC 100%);
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.faq-section-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2068A8, #5BA4E6, #2068A8);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(214, 189, 159, 0.35);
  animation: faq-icon-float 4s ease-in-out infinite;
}

@keyframes faq-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.faq-header__icon ion-icon {
  font-size: 40px;
  color: #fff;
}

.faq-header__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2d2d2d 0%, #555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-header__subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-search-wrapper {
  max-width: 600px;
  margin: 0 auto 32px;
}

.faq-search {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search__icon {
  position: absolute;
  left: 20px;
  font-size: 1.3rem;
  color: #888;
  transition: color 0.3s ease;
  pointer-events: none;
}

.faq-search__input {
  width: 100%;
  padding: 18px 50px 18px 54px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-search__input:hover {
  border-color: #2068A8;
}

.faq-search__input:focus {
  outline: none;
  border-color: #2068A8;
  box-shadow: 0 0 0 4px rgba(214, 189, 159, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-search__input:focus + .faq-search__icon,
.faq-search:focus-within .faq-search__icon {
  color: #2068A8;
}

.faq-search__clear {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-search__clear:hover {
  color: #c62828;
  transform: scale(1.1);
}

.faq-search__clear ion-icon {
  font-size: 1.3rem;
}

.faq-search__results {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 12px;
  min-height: 20px;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.faq-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #D6E8F8;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-category-pill ion-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-category-pill:hover {
  border-color: #2068A8;
  background: rgba(214, 189, 159, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 189, 159, 0.2);
}

.faq-category-pill:hover ion-icon {
  transform: scale(1.15);
}

.faq-category-pill.active {
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(214, 189, 159, 0.4);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-group {
  margin-bottom: 40px;
}

.faq-category-group.hidden {
  display: none;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(214, 189, 159, 0.3);
}

.faq-category-header__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.2) 0%, rgba(196, 166, 122, 0.15) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-category-header__icon ion-icon {
  font-size: 22px;
  color: #1B5A94;
}

.faq-category-header__title {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
}

.faq-category-header__count {
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.faq-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: #fff;
  border-radius: 16px;
  border: 2px solid #D6E8F8;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-card:hover {
  border-color: #2068A8;
  box-shadow: 0 8px 30px rgba(214, 189, 159, 0.2);
  transform: translateY(-4px);
}

.faq-card[open] {
  border-color: #2068A8;
  box-shadow: 0 12px 40px rgba(214, 189, 159, 0.25);
}

.faq-card.hidden {
  display: none;
}

.faq-card__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s ease;
}

.faq-card__question::-webkit-details-marker {
  display: none;
}

.faq-card__question::marker {
  display: none;
  content: "";
}

.faq-card:hover .faq-card__question {
  background: rgba(214, 189, 159, 0.05);
}

.faq-card[open] .faq-card__question {
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.12) 0%, rgba(196, 166, 122, 0.08) 100%);
  border-bottom: 1px solid rgba(214, 189, 159, 0.2);
}

.faq-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover .faq-card__number {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(214, 189, 159, 0.4);
}

.faq-card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(214, 189, 159, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-card__icon-wrapper ion-icon {
  font-size: 18px;
  color: #1B5A94;
  transition: transform 0.3s ease;
}

.faq-card:hover .faq-card__icon-wrapper {
  background: rgba(214, 189, 159, 0.25);
}

.faq-card:hover .faq-card__icon-wrapper ion-icon {
  transform: rotate(15deg);
}

.faq-card__text {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.5;
}

.faq-card__chevron {
  font-size: 1.3rem;
  color: #888;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq-card:hover .faq-card__chevron {
  color: #2068A8;
}

.faq-card[open] .faq-card__chevron {
  transform: rotate(180deg);
  color: #1B5A94;
}

.faq-card__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
  opacity: 0;
  background: #fff;
}

.faq-card[open] .faq-card__answer {
  max-height: 500px;
  opacity: 1;
}

.faq-card__answer-content {
  padding: 20px 24px 16px;
  padding-left: 76px;
}

.faq-card__answer-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.faq-card__feedback {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px 20px;
  padding-left: 76px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.faq-card__feedback-label {
  font-size: 0.85rem;
  color: #888;
  margin-right: 8px;
}

.faq-feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-feedback-btn ion-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-feedback-btn--yes:hover {
  background: #e8f5e9;
  border-color: #4caf50;
  color: #2e7d32;
}

.faq-feedback-btn--yes:hover ion-icon {
  transform: scale(1.2);
}

.faq-feedback-btn--no:hover {
  background: #ffebee;
  border-color: #ef5350;
  color: #c62828;
}

.faq-feedback-btn--no:hover ion-icon {
  transform: scale(1.2);
}

.faq-feedback-btn.selected {
  transform: scale(0.95);
}

.faq-feedback-btn--yes.selected {
  background: #4caf50;
  border-color: #4caf50;
  color: #fff;
}

.faq-feedback-btn--no.selected {
  background: #ef5350;
  border-color: #ef5350;
  color: #fff;
}

.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}

.faq-no-results ion-icon {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 16px;
}

.faq-no-results p {
  font-size: 1.1rem;
}

.faq-highlight {
  background: linear-gradient(135deg, rgba(32, 104, 168, 0.4) 0%, rgba(214, 189, 159, 0.4) 100%);
  color: inherit;
  padding: 2px 4px;
  border-radius: 4px;
}

[data-theme="dark"] .faq-highlight {
  background: linear-gradient(135deg, rgba(32, 104, 168, 0.3) 0%, rgba(214, 189, 159, 0.3) 100%);
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(214, 189, 159, 0.35);
}

.faq-cta__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-cta__icon {
  font-size: 48px;
  color: #fff;
  flex-shrink: 0;
}

.faq-cta__text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.faq-cta__text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #1B5A94;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.faq-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #fffef8;
}

.faq-cta__btn ion-icon {
  font-size: 1.2rem;
}

.faq-items-wrapper .faq-card {
  opacity: 0;
  transform: translateY(20px);
  animation: faq-card-enter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.faq-items-wrapper .faq-card:nth-child(1) { animation-delay: 0.1s; }
.faq-items-wrapper .faq-card:nth-child(2) { animation-delay: 0.15s; }
.faq-items-wrapper .faq-card:nth-child(3) { animation-delay: 0.2s; }
.faq-items-wrapper .faq-card:nth-child(4) { animation-delay: 0.25s; }
.faq-items-wrapper .faq-card:nth-child(5) { animation-delay: 0.3s; }
.faq-items-wrapper .faq-card:nth-child(6) { animation-delay: 0.35s; }

@keyframes faq-card-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-split {
  background: linear-gradient(180deg, #EFF5FC 0%, #fff 50%, #EFF5FC 100%);
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}

.faq-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2068A8, #5BA4E6, #2068A8);
}

.faq-split__header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-split__header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(214, 189, 159, 0.35);
  animation: faq-icon-float 4s ease-in-out infinite;
}

.faq-split__header-icon ion-icon {
  font-size: 40px;
  color: #fff;
}

.faq-split__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2d2d2d 0%, #555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-split__subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-split__search {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
}

.faq-split__search-icon {
  position: absolute;
  left: 20px;
  font-size: 1.3rem;
  color: #888;
  pointer-events: none;
  transition: color 0.3s ease;
}

.faq-split__search-input {
  width: 100%;
  padding: 18px 50px 18px 54px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-split__search-input:focus {
  outline: none;
  border-color: #2068A8;
  box-shadow: 0 0 0 4px rgba(214, 189, 159, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-split__search:focus-within .faq-split__search-icon {
  color: #2068A8;
}

.faq-split__search-clear {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-split__search-clear:hover {
  color: #c62828;
  transform: scale(1.1);
}

.faq-split__container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

.faq-split__left {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #D6E8F8;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.faq-split__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.1) 0%, rgba(196, 166, 122, 0.05) 100%);
  border-bottom: 2px solid #D6E8F8;
}

.faq-split__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 2px solid #D6E8F8;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-split__tab ion-icon {
  font-size: 0.95rem;
}

.faq-split__tab:hover {
  border-color: #2068A8;
  background: rgba(214, 189, 159, 0.1);
}

.faq-split__tab.active {
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(214, 189, 159, 0.35);
}

.faq-split__questions {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  max-height: 520px;
}

.faq-split__questions::-webkit-scrollbar {
  width: 6px;
}

.faq-split__questions::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 3px;
}

.faq-split__questions::-webkit-scrollbar-thumb {
  background: #2068A8;
  border-radius: 3px;
}

.faq-split__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin: 4px 0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.faq-split__question:hover {
  background: rgba(214, 189, 159, 0.08);
  border-color: rgba(214, 189, 159, 0.3);
}

.faq-split__question.active {
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.15) 0%, rgba(196, 166, 122, 0.1) 100%);
  border-color: #2068A8;
  box-shadow: 0 4px 15px rgba(214, 189, 159, 0.2);
}

.faq-split__question.hidden {
  display: none;
}

.faq-split__question-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}

.faq-split__question.active .faq-split__question-num {
  box-shadow: 0 4px 12px rgba(214, 189, 159, 0.4);
  transform: scale(1.05);
}

.faq-split__question-content {
  flex: 1;
  min-width: 0;
}

.faq-split__question-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 4px;
}

.faq-split__question-cat ion-icon {
  font-size: 0.85rem;
  color: #1B5A94;
}

.faq-split__question-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-split__question-arrow {
  font-size: 1.2rem;
  color: #ccc;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-split__question:hover .faq-split__question-arrow,
.faq-split__question.active .faq-split__question-arrow {
  color: #2068A8;
  transform: translateX(3px);
}

.faq-split__no-results {
  text-align: center;
  padding: 40px 20px;
  color: #888;
}

.faq-split__no-results ion-icon {
  font-size: 40px;
  color: #ddd;
  margin-bottom: 12px;
}

.faq-split__no-results p {
  font-size: 0.95rem;
  margin: 0;
}

.faq-split__right {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-split__answer-panel {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #D6E8F8;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  animation: faq-answer-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes faq-answer-slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-split__answer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.faq-split__answer-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.15) 0%, rgba(196, 166, 122, 0.1) 100%);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1B5A94;
}

.faq-split__answer-cat ion-icon {
  font-size: 1rem;
}

.faq-split__answer-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
}

.faq-split__answer-question {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.4;
  margin: 0 0 24px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #D6E8F8;
}

.faq-split__answer-content {
  margin-bottom: 24px;
}

.faq-split__answer-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

.faq-split__answer-tips {
  background: linear-gradient(135deg, rgba(32, 104, 168, 0.08) 0%, rgba(214, 189, 159, 0.08) 100%);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  border-left: 4px solid #5BA4E6;
}

.faq-split__answer-tips h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1B5A94;
  margin: 0 0 10px 0;
}

.faq-split__answer-tips h4 ion-icon {
  font-size: 1.2rem;
  color: #5BA4E6;
}

.faq-split__answer-tips p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.faq-split__answer-feedback {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px dashed #e0e0e0;
  margin-bottom: 16px;
}

.faq-split__feedback-label {
  font-size: 0.9rem;
  color: #888;
}

.faq-split__feedback-btns {
  display: flex;
  gap: 10px;
}

.faq-split__feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-split__feedback-btn ion-icon {
  font-size: 1rem;
}

.faq-split__feedback-btn[data-feedback="yes"]:hover {
  background: #e8f5e9;
  border-color: #4caf50;
  color: #2e7d32;
}

.faq-split__feedback-btn[data-feedback="no"]:hover {
  background: #ffebee;
  border-color: #ef5350;
  color: #c62828;
}

.faq-split__feedback-btn.selected[data-feedback="yes"] {
  background: #4caf50;
  border-color: #4caf50;
  color: #fff;
}

.faq-split__feedback-btn.selected[data-feedback="no"] {
  background: #ef5350;
  border-color: #ef5350;
  color: #fff;
}

.faq-split__answer-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-split__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.1) 0%, rgba(196, 166, 122, 0.05) 100%);
  border: 2px solid #D6E8F8;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-split__nav-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 189, 159, 0.3);
}

.faq-split__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.faq-split__nav-btn ion-icon {
  font-size: 1.1rem;
}

.faq-split__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  border: 2px dashed #e0e0e0;
  padding: 60px 40px;
  text-align: center;
  color: #888;
}

.faq-split__empty ion-icon {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}

.faq-split__empty p {
  font-size: 1rem;
  margin: 0;
}

.faq-split__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(214, 189, 159, 0.35);
}

.faq-split__cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-split__cta-icon {
  font-size: 48px;
  color: #fff;
  flex-shrink: 0;
}

.faq-split__cta-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.faq-split__cta-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.faq-split__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #1B5A94;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.faq-split__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #fffef8;
}

.faq-split__highlight {
  background: linear-gradient(135deg, rgba(32, 104, 168, 0.4) 0%, rgba(214, 189, 159, 0.4) 100%);
  color: inherit;
  padding: 2px 4px;
  border-radius: 4px;
}

[data-theme="dark"] .faq-split {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
}

[data-theme="dark"] .faq-split::before {
  background: linear-gradient(90deg, rgba(214, 189, 159, 0.6), rgba(32, 104, 168, 0.6), rgba(214, 189, 159, 0.6));
}

[data-theme="dark"] .faq-split__title {
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="dark"] .faq-split__subtitle {
  color: #aaa;
}

[data-theme="dark"] .faq-split__search-input {
  background: #1e2a47;
  border-color: #2d3a5a;
  color: #fff;
}

[data-theme="dark"] .faq-split__search-input:focus {
  border-color: #2068A8;
}

[data-theme="dark"] .faq-split__left {
  background: #1e2a47;
  border-color: #2d3a5a;
}

[data-theme="dark"] .faq-split__tabs {
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.08) 0%, rgba(196, 166, 122, 0.04) 100%);
  border-color: #2d3a5a;
}

[data-theme="dark"] .faq-split__tab {
  background: #16213e;
  border-color: #2d3a5a;
  color: #aaa;
}

[data-theme="dark"] .faq-split__tab:hover {
  background: rgba(214, 189, 159, 0.15);
}

[data-theme="dark"] .faq-split__question:hover {
  background: rgba(214, 189, 159, 0.1);
}

[data-theme="dark"] .faq-split__question.active {
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.15) 0%, rgba(196, 166, 122, 0.1) 100%);
  border-color: rgba(214, 189, 159, 0.4);
}

[data-theme="dark"] .faq-split__question-cat {
  color: #888;
}

[data-theme="dark"] .faq-split__question-text {
  color: #e0e0e0;
}

.faq-split__answer-data,
.faq-split__tip-data {
  display: none !important;
}

[data-theme="dark"] .faq-split__questions::-webkit-scrollbar-track {
  background: #16213e;
}

[data-theme="dark"] .faq-split__answer-panel {
  background: #1e2a47;
  border-color: #2d3a5a;
}

[data-theme="dark"] .faq-split__answer-question {
  color: #fff;
  border-color: #2d3a5a;
}

[data-theme="dark"] .faq-split__answer-content p {
  color: #bbb;
}

[data-theme="dark"] .faq-split__answer-tips {
  background: linear-gradient(135deg, rgba(32, 104, 168, 0.1) 0%, rgba(214, 189, 159, 0.08) 100%);
}

[data-theme="dark"] .faq-split__answer-tips p {
  color: #aaa;
}

[data-theme="dark"] .faq-split__answer-feedback {
  border-color: #2d3a5a;
}

[data-theme="dark"] .faq-split__feedback-btn {
  background: #16213e;
  border-color: #2d3a5a;
  color: #aaa;
}

[data-theme="dark"] .faq-split__nav-btn {
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.1) 0%, rgba(196, 166, 122, 0.05) 100%);
  border-color: #2d3a5a;
  color: #aaa;
}

[data-theme="dark"] .faq-split__empty {
  background: #1e2a47;
  border-color: #2d3a5a;
}

[data-theme="dark"] .faq-split__highlight {
  background: linear-gradient(135deg, rgba(32, 104, 168, 0.3) 0%, rgba(214, 189, 159, 0.3) 100%);
}

@media (max-width: 968px) {
  .faq-split__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-split__right {
    position: static;
  }

  .faq-split__questions {
    max-height: 400px;
  }

  .faq-split__answer-panel {
    animation: none;
  }
}

@media (max-width: 768px) {
  .faq-split {
    padding: 60px 16px 80px;
  }

  .faq-split__title {
    font-size: 1.8rem;
  }

  .faq-split__subtitle {
    font-size: 1rem;
  }

  .faq-split__tabs {
    justify-content: center;
  }

  .faq-split__tab span {
    display: none;
  }

  .faq-split__tab {
    padding: 10px 12px;
  }

  .faq-split__question {
    padding: 14px 12px;
  }

  .faq-split__question-cat {
    display: none;
  }

  .faq-split__question-text {
    white-space: normal;
  }

  .faq-split__answer-panel {
    padding: 24px 20px;
  }

  .faq-split__answer-question {
    font-size: 1.25rem;
  }

  .faq-split__answer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-split__answer-feedback {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .faq-split__cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .faq-split__cta-content {
    flex-direction: column;
    text-align: center;
  }

  .faq-split__nav-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

[data-theme="dark"] .faq-section-new {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
}

[data-theme="dark"] .faq-section-new::before {
  background: linear-gradient(90deg, rgba(214, 189, 159, 0.6), rgba(32, 104, 168, 0.6), rgba(214, 189, 159, 0.6));
}

[data-theme="dark"] .faq-header__title {
  background: linear-gradient(135deg, #fff 0%, #d0d0d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .faq-header__subtitle {
  color: #aaa;
}

[data-theme="dark"] .faq-search__input {
  background: #252542;
  border-color: #3a3a5c;
  color: #fff;
}

[data-theme="dark"] .faq-search__input::placeholder {
  color: #888;
}

[data-theme="dark"] .faq-search__input:hover {
  border-color: #2068A8;
}

[data-theme="dark"] .faq-search__input:focus {
  border-color: #2068A8;
  box-shadow: 0 0 0 4px rgba(214, 189, 159, 0.15), 0 8px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .faq-category-pill {
  background: #252542;
  border-color: #3a3a5c;
  color: #ccc;
}

[data-theme="dark"] .faq-category-pill:hover {
  border-color: #2068A8;
  background: rgba(214, 189, 159, 0.15);
}

[data-theme="dark"] .faq-category-header {
  border-bottom-color: rgba(214, 189, 159, 0.2);
}

[data-theme="dark"] .faq-category-header__icon {
  background: rgba(214, 189, 159, 0.15);
}

[data-theme="dark"] .faq-category-header__title {
  color: #fff;
}

[data-theme="dark"] .faq-card {
  background: #252542;
  border-color: #3a3a5c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .faq-card:hover {
  border-color: #2068A8;
  box-shadow: 0 8px 30px rgba(214, 189, 159, 0.15);
}

[data-theme="dark"] .faq-card[open] {
  border-color: #2068A8;
}

[data-theme="dark"] .faq-card:hover .faq-card__question,
[data-theme="dark"] .faq-card[open] .faq-card__question {
  background: rgba(214, 189, 159, 0.08);
}

[data-theme="dark"] .faq-card__text {
  color: #fff;
}

[data-theme="dark"] .faq-card__chevron {
  color: #888;
}

[data-theme="dark"] .faq-card__answer {
  background: #252542;
}

[data-theme="dark"] .faq-card__answer-content p {
  color: #bbb;
}

[data-theme="dark"] .faq-card__feedback {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .faq-card__feedback-label {
  color: #888;
}

[data-theme="dark"] .faq-feedback-btn {
  background: #1a1a2e;
  border-color: #3a3a5c;
  color: #ccc;
}

[data-theme="dark"] .faq-feedback-btn--yes:hover {
  background: rgba(76, 175, 80, 0.2);
  border-color: #4caf50;
  color: #81c784;
}

[data-theme="dark"] .faq-feedback-btn--no:hover {
  background: rgba(239, 83, 80, 0.2);
  border-color: #ef5350;
  color: #ef9a9a;
}

[data-theme="dark"] .faq-no-results {
  color: #888;
}

[data-theme="dark"] .faq-no-results ion-icon {
  color: #444;
}

[data-theme="dark"] .faq-cta {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .faq-section-new {
    padding: 60px 16px 80px;
  }

  .faq-header__title {
    font-size: 1.8rem;
  }

  .faq-header__subtitle {
    font-size: 1rem;
  }

  .faq-header__icon {
    width: 64px;
    height: 64px;
  }

  .faq-header__icon ion-icon {
    font-size: 32px;
  }

  .faq-categories {
    gap: 8px;
  }

  .faq-category-pill {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .faq-category-pill span {
    display: none;
  }

  .faq-category-pill ion-icon {
    margin: 0;
  }

  .faq-category-header {
    gap: 12px;
  }

  .faq-category-header__icon {
    width: 36px;
    height: 36px;
  }

  .faq-category-header__icon ion-icon {
    font-size: 18px;
  }

  .faq-category-header__title {
    font-size: 1.1rem;
  }

  .faq-card__question {
    padding: 16px;
    gap: 12px;
  }

  .faq-card__number {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .faq-card__icon-wrapper {
    display: none;
  }

  .faq-card__text {
    font-size: 0.9rem;
  }

  .faq-card__answer-content {
    padding: 16px;
    padding-left: 60px;
  }

  .faq-card__feedback {
    padding: 12px 16px;
    padding-left: 60px;
    flex-wrap: wrap;
  }

  .faq-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .faq-cta__content {
    flex-direction: column;
  }

  .faq-cta__icon {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .faq-card__answer-content,
  .faq-card__feedback {
    padding-left: 16px;
  }

  .faq-feedback-btn span {
    display: none;
  }

  .faq-feedback-btn {
    padding: 10px 14px;
  }
}

[data-theme="dark"] .support-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #252542 100%);
}

[data-theme="dark"] .support-hero::before {
  background: radial-gradient(circle at 30% 70%, rgba(214, 189, 159, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(32, 104, 168, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(184, 155, 94, 0.04) 0%, transparent 60%);
}

[data-theme="dark"] .support-hero::after {
  background: 
    radial-gradient(ellipse 600px 300px at 20% 80%, rgba(214, 189, 159, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 80% 20%, rgba(32, 104, 168, 0.04) 0%, transparent 70%);
}

[data-theme="dark"] .support-hero__decorative--1 {
  background: linear-gradient(135deg, rgba(214, 189, 159, 0.1) 0%, transparent 70%);
}

[data-theme="dark"] .support-hero__decorative--2 {
  background: linear-gradient(45deg, rgba(32, 104, 168, 0.08) 0%, transparent 70%);
}

[data-theme="dark"] .support-hero__decorative--3 {
  background: linear-gradient(180deg, rgba(184, 155, 94, 0.08) 0%, transparent 70%);
}

[data-theme="dark"] .support-hero__badge {
  background: linear-gradient(135deg, rgba(184, 155, 94, 0.2) 0%, rgba(214, 189, 159, 0.1) 100%);
  border-color: rgba(184, 155, 94, 0.35);
  color: #2068A8;
}

[data-theme="dark"] .support-hero__title {
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

[data-theme="dark"] .support-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .support-hero__input {
  background: #2a2a4a;
  border-color: #3a3a5a;
  color: #fff;
}

[data-theme="dark"] .support-hero__input:hover {
  border-color: #4a4a6a;
}

[data-theme="dark"] .support-hero__input:focus {
  border-color: #5BA4E6;
  background-color: #2d2d4d;
  box-shadow: 0 0 0 4px rgba(32, 104, 168, 0.2), 0 8px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .support-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .crisis-card,
[data-theme="dark"] .quicklink-card,
[data-theme="dark"] .helpline-card {
  background: #252542;
  border-color: #3a3a5a;
}

[data-theme="dark"] .crisis-card:hover,
[data-theme="dark"] .quicklink-card:hover,
[data-theme="dark"] .helpline-card:hover {
  border-color: #2068A8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .helplines-expect {
  background: linear-gradient(135deg, #252542 0%, #2a2a4a 100%);
  border-color: #3a3a5a;
}

[data-theme="dark"] .helplines-expect__icon {
  background: linear-gradient(135deg, #4a90d9 0%, #357abd 100%);
}

[data-theme="dark"] .helplines-expect__content h3 {
  color: #a0c4e8;
}

[data-theme="dark"] .helplines-expect__content p {
  color: #8ab4d6;
}

[data-theme="dark"] .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #3a3a5a 0%, #454570 100%);
}

[data-theme="dark"] .helpline-card--crisis .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #4a2828 0%, #5a3030 100%);
}

[data-theme="dark"] .helpline-card--lgbtq .helpline-card__icon-wrapper,
[data-theme="dark"] .helpline-card--trans .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #3a2845 0%, #4a3055 100%);
}

[data-theme="dark"] .helpline-card--youth .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #4a3520 0%, #5a4028 100%);
}

[data-theme="dark"] .helpline-card--veterans .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #1a3050 0%, #253a5a 100%);
}

[data-theme="dark"] .helpline-card--specialized .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #1a3a38 0%, #254545 100%);
}

[data-theme="dark"] .helpline-card--general .helpline-card__icon-wrapper {
  background: linear-gradient(135deg, #1a3050 0%, #253a5a 100%);
}

[data-theme="dark"] .helpline-card__badge {
  background: linear-gradient(135deg, #2a4a30 0%, #355540 100%);
  color: #8bc48f;
}

[data-theme="dark"] .helpline-card__badge--hours {
  background: linear-gradient(135deg, #4a3a20 0%, #5a4525 100%);
  color: #e8b060;
}

[data-theme="dark"] .helpline-card__wait {
  color: #8bc48f;
}

[data-theme="dark"] .helpline-card__wait ion-icon {
  color: #8bc48f;
}

[data-theme="dark"] .helpline-card__tty {
  border-top-color: #3a3a5a;
  color: #888;
}

[data-theme="dark"] .helpline-contact {
  background: linear-gradient(135deg, #2a2a4a 0%, #353558 100%);
  color: #fff;
}

[data-theme="dark"] .helpline-contact--call {
  background: linear-gradient(135deg, #2a4a30 0%, #355540 100%);
}

[data-theme="dark"] .helpline-contact--call ion-icon {
  color: #8bc48f;
}

[data-theme="dark"] .helpline-contact--text {
  background: linear-gradient(135deg, #1a3050 0%, #253a5a 100%);
}

[data-theme="dark"] .helpline-contact--text ion-icon {
  color: #64b5f6;
}

[data-theme="dark"] .helpline-contact--chat {
  background: linear-gradient(135deg, #3a2845 0%, #4a3055 100%);
}

[data-theme="dark"] .helpline-contact--chat ion-icon {
  color: #ce93d8;
}

[data-theme="dark"] .helpline-contact--call:hover {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

[data-theme="dark"] .helpline-contact--text:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

[data-theme="dark"] .helpline-contact--chat:hover {
  background: linear-gradient(135deg, #8e24aa 0%, #7b1fa2 100%);
}

[data-theme="dark"] .helpline-contact:hover {
  color: #fff;
}

[data-theme="dark"] .helpline-contact:hover ion-icon {
  color: #fff;
}

[data-theme="dark"] .helplines-section {
  background: 
    radial-gradient(circle at 20% 30%, rgba(109, 179, 242, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(100, 181, 246, 0.06) 0%, transparent 50%),
    #1a1a2e;
}

[data-theme="dark"] .helplines-section::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

[data-theme="dark"] .helplines-wave-separator .wave-1 {
  fill: rgba(109, 179, 242, 0.08);
}

[data-theme="dark"] .helplines-wave-separator .wave-2 {
  fill: rgba(109, 179, 242, 0.12);
}

[data-theme="dark"] .helplines-wave-separator .wave-3 {
  fill: #1a1a2e;
}

[data-theme="dark"] .helplines-decoration--1 {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .helplines-decoration--2 {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.12) 0%, transparent 70%);
}

[data-theme="dark"] .helplines-decoration--3 {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .helplines-decoration--4 {
  background: linear-gradient(135deg, rgba(0, 137, 123, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .helplines-filter-pill {
  background: #252542;
  border-color: #3a3a5c;
  color: #b0b0c0;
}

[data-theme="dark"] .helplines-filter-pill:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .helplines-filter-pill[data-filter="crisis"] {
  border-color: #5a3030;
}

[data-theme="dark"] .helplines-filter-pill[data-filter="lgbtq"] {
  border-color: #4a3055;
}

[data-theme="dark"] .helplines-filter-pill[data-filter="youth"] {
  border-color: #5a4028;
}

[data-theme="dark"] .helplines-filter-pill[data-filter="veterans"] {
  border-color: #253a5a;
}

[data-theme="dark"] .helplines-filter-pill[data-filter="specialized"] {
  border-color: #254545;
}

[data-theme="dark"] .helplines-filter-pill[data-filter="general"] {
  border-color: #253a5a;
}

[data-theme="dark"] .helpline-copy-btn {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .helpline-copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .helpline-copy-btn ion-icon {
  color: #b0b0c0;
}

[data-theme="dark"] .helpline-card__availability {
  border-top-color: #3a3a5c;
}

[data-theme="dark"] .availability-badge--call {
  background: linear-gradient(135deg, #2a4a30 0%, #355540 100%);
  color: #8bc48f;
}

[data-theme="dark"] .availability-badge--text {
  background: linear-gradient(135deg, #1a3050 0%, #253a5a 100%);
  color: #64b5f6;
}

[data-theme="dark"] .availability-badge--chat {
  background: linear-gradient(135deg, #3a2845 0%, #4a3055 100%);
  color: #ce93d8;
}

[data-theme="dark"] .availability-badge--tty {
  background: linear-gradient(135deg, #4a3520 0%, #5a4028 100%);
  color: #ffb74d;
}

[data-theme="dark"] .crisis-section,
[data-theme="dark"] .helplines-section,
[data-theme="dark"] .selfhelp-section,
[data-theme="dark"] .faq-section {
  background: #1a1a2e;
}

[data-theme="dark"] .quicklinks-section,
[data-theme="dark"] .resources-section {
  background: #252542;
}

[data-theme="dark"] .appointment-section {
  background: linear-gradient(135deg, #252542 0%, #1a1a2e 100%);
}

[data-theme="dark"] .crisis-banner {
  background: linear-gradient(135deg, rgba(229, 115, 115, 0.15) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-color: #e57373;
}

[data-theme="dark"] .crisis-banner__title {
  color: #ef9a9a;
}

[data-theme="dark"] .crisis-banner__text {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .crisis-card,
[data-theme="dark"] .helpline-card,
[data-theme="dark"] .selfhelp-card,
[data-theme="dark"] .faq-item {
  background: #252542;
  border-color: #3a3a5a;
}

[data-theme="dark"] .resource-card {
  background: #1a1a2e;
  border-color: #3a3a5a;
}

[data-theme="dark"] .crisis-card__icon {
  background: #3a3a5a;
}

[data-theme="dark"] .crisis-card__icon ion-icon,
[data-theme="dark"] .quicklink-card__icon ion-icon,
[data-theme="dark"] .helpline-card ion-icon,
[data-theme="dark"] .resource-card ion-icon,
[data-theme="dark"] .selfhelp-card__header ion-icon {
  color: #2068A8;
}

[data-theme="dark"] .crisis-card__title,
[data-theme="dark"] .quicklink-card__title,
[data-theme="dark"] .helpline-card__title,
[data-theme="dark"] .resource-card__title,
[data-theme="dark"] .selfhelp-card__title,
[data-theme="dark"] .section-title,
[data-theme="dark"] .appointment-info__title {
  color: #fff;
}

[data-theme="dark"] .crisis-card__text,
[data-theme="dark"] .quicklink-card__text,
[data-theme="dark"] .helpline-card__text,
[data-theme="dark"] .resource-card__text,
[data-theme="dark"] .selfhelp-card__text,
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .appointment-info__text,
[data-theme="dark"] .appointment-feature {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .selfhelp-card__steps,
[data-theme="dark"] .selfhelp-card__list {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .appointment-form {
  background: #252542;
}

[data-theme="dark"] .form-label {
  color: #fff;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: #1a1a2e;
  border-color: #3a3a5a;
  color: #fff;
}

[data-theme="dark"] .faq-item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .faq-item:first-child {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .faq-item:hover {
  background: rgba(214, 189, 159, 0.08);
}

[data-theme="dark"] .faq-item[open] {
  background: rgba(214, 189, 159, 0.05);
}

[data-theme="dark"] .faq-question {
  background: transparent;
  color: #fff !important;
  font-size: 1rem !important;
  font-family: 'Poppins', sans-serif !important;
}

[data-theme="dark"] .faq-question span {
  color: #fff !important;
  font-size: 1rem !important;
  opacity: 1 !important;
  visibility: visible !important;
}

[data-theme="dark"] .faq-question:hover,
[data-theme="dark"] .faq-item[open] .faq-question {
  background: transparent;
  color: #fff !important;
}

[data-theme="dark"] .faq-answer {
  background: transparent;
}

[data-theme="dark"] .faq-answer p {
  color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="dark"] .faq-intro {
  background: linear-gradient(135deg, #3a3a5a 0%, #2a2a4a 100%);
}

[data-theme="dark"] .faq-list {
  background: #252542;
}

[data-theme="dark"] .faq-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .faq-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .faq-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

[data-high-contrast="true"] .support-hero,
[data-high-contrast="true"] .crisis-section,
[data-high-contrast="true"] .quicklinks-section,
[data-high-contrast="true"] .helplines-section,
[data-high-contrast="true"] .resources-section,
[data-high-contrast="true"] .selfhelp-section,
[data-high-contrast="true"] .appointment-section,
[data-high-contrast="true"] .faq-section {
  background: #000;
}

[data-high-contrast="true"] .support-hero__title,
[data-high-contrast="true"] .section-title,
[data-high-contrast="true"] .appointment-info__title,
[data-high-contrast="true"] .crisis-banner__title {
  color: #ffff00;
}

[data-high-contrast="true"] .support-hero__subtitle,
[data-high-contrast="true"] .section-subtitle,
[data-high-contrast="true"] .crisis-banner__text,
[data-high-contrast="true"] .appointment-info__text {
  color: #fff;
}

[data-high-contrast="true"] .crisis-card,
[data-high-contrast="true"] .quicklink-card,
[data-high-contrast="true"] .helpline-card,
[data-high-contrast="true"] .resource-card,
[data-high-contrast="true"] .selfhelp-card,
[data-high-contrast="true"] .appointment-form {
  background: #000;
  border: 2px solid #fff;
}

[data-high-contrast="true"] .faq-item {
  border: none;
  border-bottom: 1px solid #fff;
}

[data-high-contrast="true"] .faq-item:first-child {
  border-top: 1px solid #fff;
}

[data-high-contrast="true"] .crisis-card__title,
[data-high-contrast="true"] .quicklink-card__title,
[data-high-contrast="true"] .helpline-card__title,
[data-high-contrast="true"] .resource-card__title,
[data-high-contrast="true"] .selfhelp-card__title {
  color: #ffff00;
}

[data-high-contrast="true"] .crisis-card__text,
[data-high-contrast="true"] .quicklink-card__text,
[data-high-contrast="true"] .helpline-card__text,
[data-high-contrast="true"] .resource-card__text,
[data-high-contrast="true"] .selfhelp-card__text,
[data-high-contrast="true"] .selfhelp-card__steps,
[data-high-contrast="true"] .selfhelp-card__list,
[data-high-contrast="true"] .faq-answer p {
  color: #fff;
}

[data-high-contrast="true"] .form-submit {
  background: #ffff00;
  color: #000;
}

[data-high-contrast="true"] .faq-grid {
  border: 2px solid #fff;
}

[data-high-contrast="true"] .faq-intro {
  background: #000;
  border-right: 2px solid #fff;
}

[data-high-contrast="true"] .faq-intro__title {
  color: #ffff00;
}

[data-high-contrast="true"] .faq-intro__text {
  color: #fff;
}

[data-high-contrast="true"] .faq-list {
  background: #000;
}

[data-high-contrast="true"] .faq-list::-webkit-scrollbar-track {
  background: #333;
}

[data-high-contrast="true"] .faq-list::-webkit-scrollbar-thumb {
  background: #fff;
}

[data-high-contrast="true"] .faq-list::-webkit-scrollbar-thumb:hover {
  background: #ffff00;
}

[data-high-contrast="true"] .faq-question {
  background: transparent;
  color: #fff;
}

@media (max-width: 768px) {
  .support-hero {
    padding: 60px 20px;
  }

  .support-hero__title {
    font-size: 2rem;
  }

  .support-hero__subtitle {
    font-size: 1rem;
  }

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

  .crisis-banner__actions {
    width: 100%;
    justify-content: center;
  }

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

  .helplines-grid:not(.list-view) {
    grid-template-columns: 1fr;
  }

  .helpline-card {
    padding: 20px;
  }

  .helpline-card__contacts {
    flex-direction: column;
    gap: 8px;
  }

  .helpline-contact {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .helpline-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .appointment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .faq-intro {
    padding: 32px 24px;
  }

  .faq-intro__title {
    font-size: 1.6rem;
  }

  .faq-list {
    padding: 24px 20px;
  }

  [data-high-contrast="true"] .faq-intro {
    border-right: none;
    border-bottom: 2px solid #fff;
  }
}

@media (max-width: 480px) {
  .quicklinks-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 1200px) {
  .support-hero {
    padding: 100px 40px;
  }

  .support-hero__title {
    font-size: 3.5rem;
  }

  .support-hero__subtitle {
    font-size: 1.3rem;
  }

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

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

  .crisis-banner {
    padding: 32px 40px;
  }

  .crisis-banner__title {
    font-size: 1.6rem;
  }

  .crisis-banner__number {
    font-size: 2.8rem;
  }

  .crisis-cards {
    gap: 28px;
  }

  .crisis-card {
    padding: 32px;
  }

  .crisis-card__title {
    font-size: 1.3rem;
  }

  .crisis-card__text {
    font-size: 1.05rem;
  }

  .quicklink-card {
    padding: 32px 24px;
  }

  .quicklink-card__icon {
    font-size: 3rem;
  }

  .quicklink-card__title {
    font-size: 1.15rem;
  }

  .helpline-card {
    padding: 32px;
  }

  .helpline-card__title {
    font-size: 1.4rem;
  }

  .helpline-card__text {
    font-size: 1.05rem;
  }

  .resource-card {
    padding: 32px;
  }

  .resource-card__title {
    font-size: 1.35rem;
  }

  .resource-card__text {
    font-size: 1.05rem;
  }

  .selfhelp-card {
    padding: 36px;
  }

  .selfhelp-card__title {
    font-size: 1.25rem;
  }

  .selfhelp-card__text {
    font-size: 1.05rem;
  }

  .selfhelp-card__steps,
  .selfhelp-card__list {
    font-size: 1rem;
  }

  .appointment-section {
    padding: 100px 40px;
  }

  .appointment-content {
    max-width: 1300px;
    gap: 80px;
  }

  .appointment-info__title {
    font-size: 2.6rem;
  }

  .appointment-info__text {
    font-size: 1.15rem;
  }

  .appointment-feature {
    font-size: 1.1rem;
  }

  .appointment-form {
    padding: 48px;
  }

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

  .form-input,
  .form-select,
  .form-textarea {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .form-submit {
    padding: 20px 32px;
    font-size: 1.15rem;
  }

  .faq-question {
    font-size: 1.15rem;
  }

  .faq-answer p {
    font-size: 1.05rem;
  }
}

@media (min-width: 1600px) {
  .support-hero__title {
    font-size: 4rem;
  }

  .support-hero__subtitle {
    font-size: 1.4rem;
  }

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

  .appointment-content {
    max-width: 1500px;
  }

  .appointment-info__title {
    font-size: 3rem;
  }

  .appointment-info__text {
    font-size: 1.25rem;
  }

  .appointment-form {
    padding: 56px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 20px 24px;
    font-size: 1.15rem;
  }

  .faq-question {
    font-size: 1.25rem;
  }

  .faq-answer p {
    font-size: 1.1rem;
  }
}

.selfhelp-card--interactive {
  cursor: pointer;
  border: none;
  text-align: left;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selfhelp-card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.selfhelp-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--blue-crayola, #2068A8);
  font-weight: 600;
  font-size: 0.95rem;
}

.selfhelp-card__cta ion-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.selfhelp-card--interactive:hover .selfhelp-card__cta ion-icon {
  transform: scale(1.2);
}

.wellness-modal {
  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;
}

.wellness-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.wellness-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.wellness-modal__content {
  position: relative;
  background: linear-gradient(145deg, #EFF5FC 0%, #fff 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.wellness-modal.is-active .wellness-modal__content {
  transform: scale(1) translateY(0);
}

.wellness-modal__content--grounding {
  max-width: 550px;
}

.wellness-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.wellness-modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.wellness-modal__close ion-icon {
  font-size: 1.5rem;
  color: #555;
}

.wellness-modal__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #2d2d2d;
}

.breathing-patterns {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breathing-pattern {
  padding: 10px 18px;
  border: 2px solid #e0dcd6;
  background: #fff;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}

.breathing-pattern:hover {
  border-color: var(--blue-crayola, #2068A8);
}

.breathing-pattern.is-active {
  background: var(--blue-crayola, #2068A8);
  border-color: var(--blue-crayola, #2068A8);
  color: #fff;
}

.breathing-circle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  margin-bottom: 24px;
}

.breathing-circle {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-crayola, #2068A8) 0%, #e8c87a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 4s ease-in-out;
  box-shadow: 0 10px 40px rgba(212, 168, 83, 0.4);
}

.breathing-circle.is-inhaling {
  transform: scale(1.4);
}

.breathing-circle.is-holding {
  transform: scale(1.4);
}

.breathing-circle.is-exhaling {
  transform: scale(1);
}

.breathing-circle__inner {
  text-align: center;
  color: #fff;
}

.breathing-circle__text {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breathing-circle__timer {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 4px;
}

.breathing-circle__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.breathing-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 83, 0.2);
  opacity: 0;
}

.breathing-ring--1 {
  width: 200px;
  height: 200px;
}

.breathing-ring--2 {
  width: 230px;
  height: 230px;
}

.breathing-ring--3 {
  width: 260px;
  height: 260px;
}

.breathing-circle-container.is-active .breathing-ring {
  animation: breathing-ring-pulse 4s ease-in-out infinite;
}

.breathing-circle-container.is-active .breathing-ring--2 {
  animation-delay: 0.3s;
}

.breathing-circle-container.is-active .breathing-ring--3 {
  animation-delay: 0.6s;
}

@keyframes breathing-ring-pulse {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.breathing-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.breathing-btn {
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.breathing-btn--start {
  background: linear-gradient(135deg, var(--blue-crayola, #2068A8) 0%, #e8c87a 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.breathing-btn--start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 168, 83, 0.5);
}

.breathing-btn--stop {
  background: #e74c3c;
  color: #fff;
}

.breathing-btn--stop:hover {
  background: #c0392b;
}

.breathing-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.breathing-stat {
  text-align: center;
}

.breathing-stat__value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-crayola, #2068A8);
}

.breathing-stat__label {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breathing-audio-toggle {
  display: flex;
  justify-content: center;
}

.breathing-audio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
}

.breathing-audio-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-crayola, #2068A8);
}

.grounding-intro {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
  font-size: 1rem;
}

.grounding-progress {
  width: 100%;
  height: 6px;
  background: #D6E8F8;
  border-radius: 3px;
  margin-bottom: 32px;
  overflow: hidden;
}

.grounding-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-crayola, #2068A8) 0%, #e8c87a 100%);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.grounding-step {
  display: none;
  animation: grounding-fadein 0.4s ease forwards;
}

.grounding-step.is-active {
  display: block;
}

@keyframes grounding-fadein {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.grounding-step__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue-crayola, #2068A8) 0%, #e8c87a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grounding-step__icon ion-icon {
  font-size: 2.5rem;
  color: #fff;
}

.grounding-step__icon--complete {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.grounding-step__number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-crayola, #2068A8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.grounding-step__title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.grounding-step__text {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

.grounding-step__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grounding-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0dcd6;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.grounding-input:focus {
  outline: none;
  border-color: var(--blue-crayola, #2068A8);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.15);
}

.grounding-input:not(:placeholder-shown) {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.05);
}

.grounding-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.grounding-nav__btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.grounding-nav__btn--prev {
  background: #D6E8F8;
  color: #555;
}

.grounding-nav__btn--prev:hover:not(:disabled) {
  background: #ddd8d1;
}

.grounding-nav__btn--prev:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.grounding-nav__btn--next {
  background: linear-gradient(135deg, var(--blue-crayola, #2068A8) 0%, #e8c87a 100%);
  color: #fff;
}

.grounding-nav__btn--next:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

.grounding-nav__btn--restart {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #fff;
}

.grounding-nav__btn--restart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

[data-theme="dark"] .wellness-modal__content {
  background: linear-gradient(145deg, #2d2b3d 0%, #3d3a50 100%);
}

[data-theme="dark"] .wellness-modal__title {
  color: #EBF3FC;
}

[data-theme="dark"] .wellness-modal__close {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .wellness-modal__close ion-icon {
  color: #ccc;
}

[data-theme="dark"] .breathing-pattern {
  background: #3d3a50;
  border-color: #4d4a60;
  color: #ccc;
}

[data-theme="dark"] .breathing-pattern.is-active {
  background: var(--blue-crayola, #2068A8);
  color: #fff;
}

[data-theme="dark"] .grounding-intro,
[data-theme="dark"] .grounding-step__text {
  color: #aaa;
}

[data-theme="dark"] .grounding-step__title {
  color: #EBF3FC;
}

[data-theme="dark"] .grounding-input {
  background: #3d3a50;
  border-color: #4d4a60;
  color: #EBF3FC;
}

[data-theme="dark"] .grounding-input::placeholder {
  color: #888;
}

[data-theme="dark"] .grounding-progress {
  background: #3d3a50;
}

[data-theme="dark"] .grounding-nav__btn--prev {
  background: #4d4a60;
  color: #ccc;
}

[data-theme="dark"] .breathing-stats {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .breathing-audio-label {
  color: #ccc;
}

@media (prefers-reduced-motion: reduce) {
  .support-hero::before {
    animation: none;
  }
  
  .support-hero__decorative {
    animation: none;
  }
  
  .support-hero__badge,
  .support-hero__title,
  .support-hero__subtitle,
  .support-hero__search {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .animate-section,
  .animate-stagger > *,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .crisis-btn--primary {
    animation: none;
  }
  
  .section-divider::before {
    animation: none;
  }
  
  .back-to-top {
    animation: none;
  }
  
  .breathing-circle {
    transition: none;
  }
  
  .breathing-circle-container.is-active .breathing-ring {
    animation: none;
    opacity: 0.3;
  }
  
  .grounding-step {
    animation: none;
  }
  
  .wellness-modal__content {
    transition: none;
  }
}

@media (max-width: 600px) {
  .wellness-modal__content {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .wellness-modal__title {
    font-size: 1.5rem;
  }
  
  .breathing-patterns {
    gap: 6px;
  }
  
  .breathing-pattern {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .breathing-circle-container {
    height: 220px;
  }
  
  .breathing-circle {
    width: 140px;
    height: 140px;
  }
  
  .breathing-circle__text {
    font-size: 1rem;
  }
  
  .breathing-circle__timer {
    font-size: 2rem;
  }
  
  .breathing-ring--1 {
    width: 160px;
    height: 160px;
  }
  
  .breathing-ring--2 {
    width: 185px;
    height: 185px;
  }
  
  .breathing-ring--3 {
    width: 210px;
    height: 210px;
  }
  
  .breathing-stats {
    gap: 24px;
  }
  
  .breathing-stat__value {
    font-size: 1.5rem;
  }
  
  .grounding-step__icon {
    width: 60px;
    height: 60px;
  }
  
  .grounding-step__icon ion-icon {
    font-size: 1.8rem;
  }
  
  .grounding-step__number {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
  
  .grounding-nav {
    flex-direction: column;
  }
}

.quote-callout {
  background: linear-gradient(135deg, #EFF5FC 0%, #f0ebe4 100%);
  border-left: 4px solid #2068A8;
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.quote-callout::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(214, 189, 159, 0.2);
  line-height: 1;
}

.quote-callout__text {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.quote-callout__author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #143E6B;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-callout__author::before {
  content: "—";
}

[data-theme="dark"] .quote-callout {
  background: linear-gradient(135deg, #2a2a4a 0%, #252542 100%);
  border-left-color: #2068A8;
}

[data-theme="dark"] .quote-callout::before {
  color: rgba(214, 189, 159, 0.1);
}

[data-theme="dark"] .quote-callout__text {
  color: #ccc;
}

[data-theme="dark"] .quote-callout__author {
  color: #2068A8;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2068A8 0%, #1B5A94 100%);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(214, 189, 159, 0.25);
}

.section-icon ion-icon {
  font-size: 28px;
  color: #fff;
}

[data-theme="dark"] .section-icon {
  background: linear-gradient(135deg, #3d3a50 0%, #4d4a60 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .section-divider::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231a1a2e' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,75 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

[data-theme="dark"] .section-divider--reverse::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23252542' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,75 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

[data-theme="dark"] .section-title {
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crisis-btn,
.helpline-contact {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
