/* ============================================
   Volunteer Block
   ============================================ */

.volunteer-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

.volunteer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.volunteer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* ============================================
   Container
   ============================================ */

.volunteer-container {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ============================================
   Icon
   ============================================ */

.volunteer-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-2xl);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-5xl);
  animation: pulse 2s infinite;
}

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

/* ============================================
   Content
   ============================================ */

.volunteer-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--spacing-xl);
  line-height: var(--line-height-tight);
  font-family: var(--font-secondary);
}

.volunteer-description {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  color: var(--color-white);
  opacity: 0.95;
  margin-bottom: var(--spacing-3xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Features Grid
   ============================================ */

.volunteer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-4xl);
}

.volunteer-feature {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.volunteer-feature:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.volunteer-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-lg);
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: var(--color-white);
}

.volunteer-feature-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-secondary);
}

.volunteer-feature-text {
  font-size: var(--font-size-base);
  color: var(--color-white);
  opacity: 0.9;
  line-height: var(--line-height-relaxed);
}

/* ============================================
   Call to Action
   ============================================ */

.volunteer-cta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.volunteer-cta .btn {
  min-width: 200px;
  padding: var(--spacing-lg) var(--spacing-3xl);
  font-size: var(--font-size-lg);
  box-shadow: var(--shadow-lg);
}

.volunteer-cta .btn-primary {
  background-color: var(--color-secondary);
  border: none;
}

.volunteer-cta .btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.volunteer-cta .btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.volunteer-cta .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ============================================
   Contact Info
   ============================================ */

.volunteer-contact {
  margin-top: var(--spacing-4xl);
  padding-top: var(--spacing-3xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.volunteer-contact-text {
  font-size: var(--font-size-base);
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
}

.volunteer-contact-items {
  display: flex;
  justify-content: center;
  gap: var(--spacing-3xl);
  flex-wrap: wrap;
}

.volunteer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.volunteer-contact-item i {
  font-size: var(--font-size-xl);
  color: var(--color-primary-light);
}

.volunteer-contact-item a {
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.volunteer-contact-item a:hover {
  color: var(--color-secondary);
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1024px) {
  .volunteer-title {
    font-size: var(--font-size-4xl);
  }
  
  .volunteer-description {
    font-size: var(--font-size-lg);
  }
  
  .volunteer-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  .volunteer-section {
    padding: var(--section-padding-y-mobile) 0;
  }
  
  .volunteer-container {
    padding: 0 var(--spacing-md);
  }
  
  .volunteer-icon {
    width: 80px;
    height: 80px;
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-xl);
  }
  
  .volunteer-title {
    font-size: var(--font-size-3xl);
  }
  
  .volunteer-description {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-2xl);
  }
  
  .volunteer-features {
    margin-bottom: var(--spacing-3xl);
  }
  
  .volunteer-feature {
    padding: var(--spacing-xl);
  }
  
  .volunteer-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .volunteer-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .volunteer-contact {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
  }
  
  .volunteer-contact-items {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .volunteer-icon {
    width: 70px;
    height: 70px;
    font-size: var(--font-size-3xl);
  }
  
  .volunteer-title {
    font-size: var(--font-size-2xl);
  }
  
  .volunteer-feature-icon {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-xl);
  }
}
