@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary-purple: #6A1B9A;
  --accent-pink: #E91E63;
  --light-bg: #F7F7F7;
  --dark-text: #333333;
  --subtle-gray: #A7A7A7;
  --footer-bg: #5A1680;
  
  --font-primary: 'Quicksand', sans-serif;
  --font-fallback: 'Open Sans', sans-serif;
  
  --transition-smooth: all 0.3s ease;
  --shadow-soft: 0 4px 10px rgba(0,0,0,0.05);
  --shadow-lift: 0 8px 20px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fallback);
  color: var(--dark-text);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
  height: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: none;
}

.header__cta {
  display: none;
}

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary-purple);
  transition: var(--transition-smooth);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--light-bg);
  z-index: 1001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary-purple);
}

.mobile-menu__close::before {
  transform: rotate(45deg);
}

.mobile-menu__close::after {
  transform: rotate(-45deg);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.mobile-menu__nav a {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(106, 27, 154, 0.1);
}

.mobile-menu__cta {
  margin-top: auto;
}

.mobile-menu__cta .btn-primary {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.mobile-menu__donate {
  text-align: center;
  color: var(--primary-purple);
  font-weight: 600;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent-pink);
  color: var(--light-bg);
  font-family: var(--font-primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(233, 30, 99, 0.3);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: #d62873;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  background: #bf2268;
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(233, 30, 99, 0.2);
}

.btn-primary.pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-purple);
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--primary-purple);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 27, 154, 0.7), rgba(233, 30, 99, 0.4));
  z-index: 0;
}

.hero__content {
  text-align: center;
  color: var(--light-bg);
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  overflow: hidden;
}

.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateX(-30px);
  animation: revealLine 0.8s ease forwards;
}

.hero__title .line:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes revealLine {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.7s forwards;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 60px 20px;
}

.section--purple-bg {
  background: linear-gradient(135deg, var(--primary-purple), #8E24AA);
  color: var(--light-bg);
}

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

.section--white {
  background: #fff;
}

.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-purple);
}

.section__subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--dark-text);
}

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

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
}

.mission-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-section__title {
  font-size: 1.8rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.mission-section__text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-5px) perspective(1000px) rotateX(2deg);
  box-shadow: var(--shadow-lift);
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.benefit-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card__title {
  font-size: 1.2rem;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-item__number {
  width: 50px;
  height: 50px;
  background: var(--accent-pink);
  color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step-item__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.step-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-item__title {
  font-size: 1.2rem;
  color: var(--primary-purple);
  margin-bottom: 8px;
}

.step-item__text {
  font-size: 0.95rem;
  color: var(--dark-text);
  max-width: 300px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.testimonial-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.testimonial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-card__author {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-purple);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-purple);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.testimonial-controls button:hover {
  background: var(--primary-purple);
}

.testimonial-controls button:hover svg {
  stroke: var(--light-bg);
}

.testimonial-controls button svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-purple);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cta-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.cta-block__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-block__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

.cta-block__content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  color: var(--light-bg);
  width: 100%;
}

.cta-block__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-block__text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  text-align: center;
}

.map-section__container {
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-section__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============================================
   ABOUT SNIPPET
   ============================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-snippet__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-snippet__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-snippet__content h3 {
  font-size: 1.6rem;
  color: var(--primary-purple);
  margin-bottom: 15px;
}

.about-snippet__content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================
   NEWS GRID
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.news-card__image {
  height: 180px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__content {
  padding: 20px;
}

.news-card__date {
  font-size: 0.85rem;
  color: var(--subtle-gray);
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 1.1rem;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.partner-logo {
  width: 120px;
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: var(--light-bg);
}

.final-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(106, 27, 154, 0.85);
  z-index: 0;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.final-cta__text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  color: var(--light-bg);
  padding: 50px 20px 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer__logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer__mission {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer__title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer__links a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.footer__links a:hover {
  color: var(--accent-pink);
}

.footer__contact p {
  padding: 8px 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer__contact a {
  color: var(--light-bg);
}

.footer__social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer__social a:hover {
  background: var(--accent-pink);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ============================================
   PROGRAMS GRID
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.program-card:hover {
  transform: translateY(-8px) perspective(1000px) rotateX(2deg);
  box-shadow: var(--shadow-lift);
}

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

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card__content {
  padding: 25px;
}

.program-card__title {
  font-size: 1.3rem;
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.program-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ============================================
   DETAILED PROGRAM SECTIONS
   ============================================ */
.program-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.program-detail__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.program-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail__content h3 {
  font-size: 1.6rem;
  color: var(--primary-purple);
  margin-bottom: 15px;
}

.program-detail__content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.program-detail__content ul {
  margin-bottom: 25px;
}

.program-detail__content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.program-detail__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--accent-pink);
  border-radius: 50%;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.philosophy-section__title {
  font-size: 2rem;
  color: var(--primary-purple);
  margin-bottom: 25px;
}

.philosophy-section__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ============================================
   IMPACT STORY
   ============================================ */
.impact-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.impact-story__quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--accent-pink);
}

.impact-story__author {
  margin-top: 20px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-purple);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-category-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary-purple);
  background: transparent;
  color: var(--primary-purple);
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--primary-purple);
  color: var(--light-bg);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
}

.faq-question__icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  background: var(--primary-purple);
  transition: var(--transition-smooth);
}

.faq-question__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-question__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-item.active .faq-question__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__content {
  padding: 0 20px 20px;
  line-height: 1.7;
  color: var(--subtle-gray);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-info-item__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: var(--accent-pink);
}

.contact-info-item__title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 8px;
}

.contact-info-item__value {
  font-size: 1rem;
}

.contact-info-item__value a {
  color: var(--dark-text);
  transition: var(--transition-smooth);
}

.contact-info-item__value a:hover {
  color: var(--accent-pink);
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--subtle-gray);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary-purple);
  background: #fff;
  padding: 0 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: var(--font-fallback);
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-pink);
}

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

/* ============================================
   VOLUNTEER PAGE STYLES
   ============================================ */
.volunteer-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.volunteer-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.volunteer-step__number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-pink);
  color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
}

.volunteer-step__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.volunteer-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.volunteer-step__title {
  font-size: 1.1rem;
  color: var(--primary-purple);
  margin-bottom: 5px;
}

.volunteer-step__text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Requirements Section */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.requirement-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.requirement-card__title {
  font-size: 1.3rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.requirement-card ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}

.requirement-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent-pink);
  border-radius: 50%;
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* SVG Line Draw Animation */
.draw-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawLine 1.5s ease forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Heartbeat Animation */
.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-purple), var(--accent-pink));
  border-radius: 4px;
}

/* ============================================
   RESPONSIVE STYLES - TABLET
   ============================================ */
@media (min-width: 768px) {
  .header {
    padding: 0 40px;
  }
  
  .header.scrolled {
    height: 65px;
  }
  
  .section {
    padding: 80px 40px;
  }
  
  .hero__title {
    font-size: 3.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.3rem;
  }
  
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .step-item {
    flex: 1;
  }
  
  .cta-sections {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .cta-block {
    flex: 1;
    min-width: 300px;
  }
  
  .about-snippet {
    grid-template-columns: 1fr 1fr;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .program-detail {
    grid-template-columns: 1fr 1fr;
  }
  
  .program-detail:nth-child(even) .program-detail__image {
    order: 2;
  }
  
  .faq-categories {
    gap: 15px;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .volunteer-process {
    gap: 25px;
  }
  
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE STYLES - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .header {
    height: 80px;
    padding: 0 60px;
  }
  
  .header.scrolled {
    height: 65px;
  }
  
  .header__logo img {
    height: 55px;
  }
  
  .hamburger {
    display: none;
  }
  
  .header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .header__nav a {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);
    position: relative;
    padding: 5px 0;
  }
  
  .header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
  }
  
  .header__nav a:hover::after {
    width: 100%;
  }
  
  .header__cta {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header__cta .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  
  .header__donate {
    color: var(--primary-purple);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .section {
    padding: 100px 60px;
  }
  
  .hero {
    padding: 120px 60px 80px;
  }
  
  .hero__title {
    font-size: 4.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefit-card {
    padding: 40px 25px;
  }
  
  .steps-container {
    gap: 40px;
  }
  
  .step-item__text {
    max-width: 280px;
  }
  
  .cta-sections {
    flex-wrap: nowrap;
  }
  
  .cta-block {
    min-height: 350px;
  }
  
  .about-snippet__content h3 {
    font-size: 2rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section__title {
    font-size: 2.5rem;
  }
  
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
  
  .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .faq-categories {
    gap: 20px;
  }
  
  .faq-question {
    font-size: 1.15rem;
    padding: 25px;
  }
  
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact-form {
    padding: 50px 40px;
  }
  
  .volunteer-process {
    max-width: 900px;
  }
  
  .requirements-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero__title .line,
  .hero__subtitle,
  .hero__buttons {
    opacity: 1;
    transform: none;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right,
  .benefit-card,
  .step-item {
    opacity: 1;
    transform: none;
  }
  
  .btn-primary.pulse {
    animation: none;
  }
}

/* ============================================
   CONFETTI ANIMATION
   ============================================ */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}
