/* ===== New Hero Section ===== */
.hero-new {
  padding: 140px 0 60px;
  background: var(--bg-primary);
}

.hero-new-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.hero-new-text {
  padding-right: 20px;
}

/* ── Trust Badge ── */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 193, 228, 0.12);
  border: 1px solid rgba(110, 193, 228, 0.3);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  animation: fadeInDown 0.5s ease both;
}

.hero-trust-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-dark);
  flex-shrink: 0;
  fill: rgba(110, 193, 228, 0.2);
}

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

/* ── Heading & Subtitle ── */
.hero-new-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
  animation: fadeInUp 0.55s ease 0.1s both;
}

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

.hero-new-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.55s ease 0.2s both;
}

.hero-new-subtitle em {
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ── Dual CTA Group ── */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.55s ease 0.3s both;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 193, 228, 0.35);
  filter: brightness(1.05);
}

.hero-cta-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.hero-cta-btn-secondary:hover {
  background: rgba(110, 193, 228, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(110, 193, 228, 0.2);
}

/* ── Quick Services Row ── */
.hero-quick-services {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  animation: fadeInUp 0.55s ease 0.4s both;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.hero-service-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-service-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.hero-service-item span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.hero-service-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── Hero Image ── */
.hero-new-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-new-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ── Responsive: new hero elements ── */
@media (max-width: 992px) {
  .hero-cta-group {
    justify-content: center;
  }
  .hero-quick-services {
    justify-content: center;
  }
  .hero-trust-badge {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-btn,
  .hero-cta-btn-secondary {
    text-align: center;
  }
  .hero-quick-services {
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
  }
  .hero-service-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .hero-service-item {
    justify-content: flex-start;
  }
}

/* ===== Philosophy & Hubs Section ===== */

.philosophy-hubs-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.philosophy-hubs-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.philosophy-card h2,
.hubs-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.philosophy-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 1.5rem;
}

.hub-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.hub-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-tertiary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hub-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.hub-item:hover .hub-icon {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hub-item:hover .hub-icon svg {
  stroke: white;
}

.hub-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ===== Impact Section ===== */
.impact-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.impact-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.impact-grid {
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.impact-item {
  text-align: center;
}

.impact-highlight {
  background: var(--primary-gradient);
  color: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: left;
}

.impact-highlight .impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.impact-highlight .impact-label {
  font-size: 1rem;
  opacity: 0.9;
}

.impact-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.impact-label,
.impact-sublabel {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== Support Section ===== */
.support-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

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

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.support-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.support-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.support-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.support-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.support-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Programs Preview Section ===== */
.programs-preview {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.programs-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.program-preview-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.program-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-preview-image {
  height: 200px;
  overflow: hidden;
}

.program-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-preview-card:hover .program-preview-image img {
  transform: scale(1.1);
}

.program-preview-content {
  padding: 1.5rem;
}

.program-tag {
  display: inline-block;
  background: rgba(110, 193, 228, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.program-preview-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.program-preview-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--primary-dark);
}

.programs-cta {
  text-align: center;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

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

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Choose Your Path Section ===== */
.choose-path-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.choose-path-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  text-align: center;
}

.choose-path-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.choose-path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.path-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.path-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.path-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.path-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.path-card-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.path-card-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.path-card-content {
  padding: 2rem;
}

.path-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.path-card-content > p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.path-features {
  display: flex;
  gap: 24px;
  margin-bottom: 1.5rem;
}

.path-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.path-feature svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.path-feature span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .choose-path-cards {
    grid-template-columns: 1fr;
  }
  .path-card-image {
    height: 220px;
  }
}

/* ===== You Are Safe Here Section ===== */
.safe-here-section {
  padding: 80px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.safe-here-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.safe-here-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.safe-here-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.safe-here-question {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.mood-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mood-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  background: var(--surface);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.mood-pill:hover,
.mood-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(110, 193, 228, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(110, 193, 228, 0.15);
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
  .hero-new-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-new-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-new-image {
    order: -1;
  }

  .philosophy-hubs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .impact-highlight {
    grid-column: span 2;
    text-align: center;
  }

  .choose-path-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .choose-path-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 120px 0 40px;
  }

  .hero-new-title {
    font-size: 1.5rem;
  }

  .hubs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hub-icon {
    width: 56px;
    height: 56px;
  }

  .hub-icon svg {
    width: 24px;
    height: 24px;
  }

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

  .impact-highlight {
    grid-column: span 1;
  }

  .programs-preview-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .choose-path-gallery {
    grid-template-columns: 1fr;
  }

  .choose-path-gallery img,
  .choose-path-gallery .gallery-secondary {
    height: 220px;
  }

  .path-features {
    justify-content: center;
  }

  .mood-pills {
    gap: 8px;
  }

  .mood-pill {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.stagger.active > *:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger.active > *:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger.active > *:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger.active > *:nth-child(4) {
  transition-delay: 0.4s;
}
