/* ===== CHILDREN SLIDER STYLE - ELEGANT & MODERN ===== */

.sponsor-slider-section {
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container,
.sponsor-slider-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.children-slider-wrapper {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.children-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.child-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: none;
}

.child-slide.active {
  display: block;
}

.child-image,
.child-slide-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f0f0f0;
}

.child-image img,
.child-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.child-slide:hover .child-image img,
.child-slide:hover .child-slide-image img {
  transform: scale(1.05);
}

.child-slide-info {
  padding: 20px 24px 24px;
  background: #fff;
}

.child-slide-name {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.child-slide-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #ff6b6b;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2c3e50;
}

.detail-icon {
  flex-shrink: 0;
  color: #ff6b6b;
  stroke-width: 2.5;
  width: 18px;
  height: 18px;
}

.detail-text {
  font-weight: 500;
  color: #34495e;
}

.child-slide-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 18px 0;
  padding: 14px 16px;
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-sponsor-child {
  width: 100%;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(238, 90, 111, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.btn-sponsor-child svg {
  flex-shrink: 0;
}

.btn-sponsor-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(238, 90, 111, 0.5);
  background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
}

.btn-sponsor-child:active {
  transform: translateY(-1px);
}

/* Slider Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  color: #333;
}

.slider-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-nav-prev {
  left: 12px;
}

.slider-nav-next {
  right: 12px;
}

.slider-nav svg {
  width: 20px;
  height: 20px;
}

/* Slider Counter */
.slider-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Slider Dots Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 0 0;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: #a0a0a0;
  transform: scale(1.2);
}

.slider-dot.active {
  background: #ff6b6b;
  width: 26px;
  border-radius: 4px;
  transform: scale(1);
}

/* Empty State */
.slider-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 30px;
  color: #666;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slider-empty svg {
  margin-bottom: 24px;
  color: #ff6b6b;
}

.slider-empty h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px 0;
  color: #333;
}

.slider-empty p {
  font-size: 16px;
  margin: 0 0 28px 0;
  max-width: 450px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sponsor-slider-section {
    padding: 40px 16px;
  }
  
  .slider-container {
    max-width: 100%;
  }
  
  .child-image {
    height: 360px;
  }
  
  .child-slide-name {
    font-size: 26px;
  }
  
  .child-slide-info {
    padding: 24px;
  }
  
  .child-slide-details {
    padding: 16px;
    gap: 14px;
  }
  
  .detail-item {
    font-size: 15px;
  }
  
  .detail-icon {
    width: 18px;
    height: 18px;
  }
  
  .child-slide-description {
    font-size: 14px;
    padding: 16px;
  }
  
  .btn-sponsor-child {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .slider-nav {
    width: 42px;
    height: 42px;
  }
  
  .slider-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .slider-nav-prev {
    left: 12px;
  }
  
  .slider-nav-next {
    right: 12px;
  }
  
  .slider-counter {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .slider-dots {
    gap: 8px;
    margin-top: 18px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .slider-dot.active {
    width: 26px;
  }
}

/* Filter Section Improvements */
.sponsor-filter-section {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}

.sponsor-filter-form {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #555;
  font-size: 14px;
}

.filter-group select {
  padding: 8px 16px;
  border: 2px solid #ff944d;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.filter-group select:hover {
  border-color: #f47c20;
  box-shadow: 0 2px 8px rgba(255, 148, 77, 0.2);
}

.filter-group select:focus {
  border-color: #f47c20;
  box-shadow: 0 0 0 3px rgba(255, 148, 77, 0.15);
}
/* Hero Section Modern Styles */
.sponsor-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sponsor-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.sponsor-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.sponsor-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.sponsor-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* Hero Learn More Button */
.hero-learn-more-btn {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: #667eea;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.hero-learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.5);
  background: #f8f9fa;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .sponsor-hero {
    padding: 60px 20px 50px;
  }
  
  .sponsor-hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .sponsor-hero-desc {
    font-size: 16px;
  }
  
  .hero-learn-more-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ===== MODERN SPONSOR MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content-sponsor {
  background-color: #fff;
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 1100px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalSlideDown 0.4s ease;
}

@keyframes modalSlideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #666;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}

.close:hover {
  background: #f44336;
  color: white;
  transform: rotate(90deg);
}

.sponsor-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left Side - Form Section */
.sponsor-form-section {
  padding: 40px;
  background: #fff;
  border-radius: 20px 0 0 20px;
}

.sponsor-header {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.sponsor-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sponsor-header-text {
  flex: 1;
}

.sponsor-subtitle {
  font-size: 13px;
  color: #888;
  margin: 0 0 5px 0;
}

.sponsor-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

/* Donation Amount Buttons */
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-btn {
  position: relative;
  padding: 18px 12px;
  border: 2px solid #e0e0e0;
  background: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.amount-btn:hover {
  border-color: #E91E63;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.amount-btn.active {
  border-color: #E91E63;
  background: #E91E63;
  color: white;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.4);
}

.amount-btn.active::after {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amount-badge {
  display: block;
  font-size: 10px;
  color: #00BFA6;
  font-weight: 500;
  margin-top: 4px;
}

.nominal-btn {
  background: #f5f5f5;
}

.nominal-label {
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

/* Custom Amount Input */
.nominal-input-wrapper {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.nominal-input-wrapper label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.custom-amount-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.custom-amount-input:focus {
  border-color: #E91E63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Payment Method */
.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-method:hover {
  background: #e8f5e9;
}

.payment-method span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.pilih-btn {
  padding: 6px 12px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  color: #00BFA6;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.pilih-btn:hover {
  background: #00BFA6;
  color: white;
  border-color: #00BFA6;
}

/* Form Groups */
.form-group-modern {
  margin-bottom: 15px;
}

.form-group-modern input {
  width: 100%;
  padding: 14px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}

.form-group-modern input:focus {
  border-color: #E91E63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group-modern input::placeholder {
  color: #999;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #E91E63;
}

.form-checkbox label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

/* Submit Button */
.btn-donate-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-donate-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.5);
}

.btn-donate-submit:active {
  transform: translateY(0);
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Right Side - Image Section */
.sponsor-image-section {
  position: relative;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.charity-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
}

.image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.image-overlay p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Modal */
@media (max-width: 968px) {
  .sponsor-modal-layout {
    grid-template-columns: 1fr;
  }
  
  .sponsor-form-section {
    border-radius: 20px 20px 0 0;
  }
  
  .sponsor-image-section {
    border-radius: 0 0 20px 20px;
    min-height: 300px;
  }
  
  .modal-content-sponsor {
    width: 95%;
    margin: 5% auto;
  }
}

@media (max-width: 640px) {
  .sponsor-form-section {
    padding: 30px 20px;
  }
  
  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amount-btn {
    padding: 15px 10px;
    font-size: 14px;
  }
  
  .close {
    right: 15px;
    top: 15px;
    font-size: 28px;
  }
}

/* ===== ABOUT SPONSOR SECTION STYLES ===== */
.about-sponsor-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-sponsor-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Statistics Section */
.sponsor-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #E91E63;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #7f8c8d;
  font-weight: 500;
}

/* What Is Section */
.what-is-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  padding: 50px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px 0;
}

.section-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.what-is-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq-section {
  margin-top: 60px;
}

.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #E91E63;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(233, 30, 99, 0.15);
  transform: translateX(5px);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0;
}

.about-sponsor-main-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.about-sponsor-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7f8c8d;
  margin: 0 0 60px 0;
  font-weight: 400;
}

/* Info Block */
.sponsor-info-block {
  margin-bottom: 60px;
}

.info-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  color: #34495e;
  margin: 0 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 3px solid #E91E63;
}

.info-block-title svg {
  color: #E91E63;
  flex-shrink: 0;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.step-card {
  position: relative;
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
  border-color: #E91E63;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0;
}

/* Benefits Grid */
.benefits-block {
  background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  background: white;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid #E91E63;
}

.benefit-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(233, 30, 99, 0.15);
}

.benefit-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0;
}

/* CTA Box */
.sponsor-cta-box {
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  padding: 50px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.3);
  margin-top: 60px;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px 0;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-sponsor-btn {
  background: white;
  color: #E91E63;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-sponsor-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* Responsive About Sponsor */
@media (max-width: 968px) {
  .about-sponsor-section {
    padding: 60px 20px;
  }
  
  .about-sponsor-main-title {
    font-size: 32px;
  }
  
  .about-sponsor-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .sponsor-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .what-is-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .what-is-image img {
    height: 300px;
  }
  
  .info-block-title {
    font-size: 26px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits-block {
    padding: 30px 20px;
  }
  
  .sponsor-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-sponsor-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-sponsor-section {
    padding: 40px 15px;
  }
  
  .about-sponsor-main-title {
    font-size: 28px;
  }
  
  .info-block-title {
    font-size: 22px;
    flex-direction: column;
    text-align: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  .benefit-card {
    padding: 25px 20px;
  }
  
  .sponsor-cta-box {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 20px;
  }
  
  .cta-content p {
    font-size: 14px;
  }
}

/* ===== PARTNERSHIP PAGE STYLES ===== */
.partnership-hero {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partnership-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.partnership-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
}

.partnership-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 1;
}

.partnership-info-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.partnership-content h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 50px 0;
}

.partnership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.2);
}

.benefit-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0;
}

.partnership-types-section {
  padding: 80px 20px;
  background: white;
}

.partnership-types-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 50px 0;
}

.partnership-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.partnership-type-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 35px 30px;
  border-radius: 14px;
  border-left: 4px solid #4A90E2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.partnership-type-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(74, 144, 226, 0.15);
  border-left-width: 6px;
}

.partnership-type-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.partnership-type-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0;
}

.partnership-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.partnership-form-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.form-intro {
  text-align: center;
  font-size: 16px;
  color: #7f8c8d;
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-form,
.volunteer-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  min-height: 20px;
  line-height: 1.4;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
  height: 52px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4A90E2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  height: auto;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M1 1.5L6 6.5L11 1.5" stroke="%234A90E2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
  height: 52px;
}

.form-actions {
  margin-top: 30px;
  text-align: center;
}

.btn-primary {
  padding: 16px 48px;
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.5);
}

.alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-error {
  background: #fee;
  color: #c33;
  border-left: 4px solid #c33;
}

/* ===== VOLUNTEER PAGE STYLES ===== */
.volunteer-hero {
  background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.volunteer-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.volunteer-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
}

.volunteer-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 1;
}

.why-volunteer-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.why-volunteer-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 50px 0;
}

.why-volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-item {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(82, 196, 26, 0.2);
}

.why-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0;
}

.volunteer-opportunities-section {
  padding: 80px 20px;
  background: white;
}

.volunteer-opportunities-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 50px 0;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.opportunity-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 35px 30px;
  border-radius: 14px;
  border-top: 4px solid #52C41A;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(82, 196, 26, 0.2);
  border-top-width: 6px;
}

.opportunity-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 12px 0;
}

.opportunity-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #7f8c8d;
  margin: 0 0 15px 0;
}

.opportunity-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opportunity-card ul li {
  padding: 8px 0 8px 30px;
  font-size: 14px;
  color: #555;
  position: relative;
}

.opportunity-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #52C41A;
  font-weight: 700;
  font-size: 16px;
}

.volunteer-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e6f7e6 100%);
}

.volunteer-form-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.volunteer-form .btn-primary {
  background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
  box-shadow: 0 6px 20px rgba(82, 196, 26, 0.4);
}

.volunteer-form .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(82, 196, 26, 0.5);
}

.volunteer-form .form-group input:focus,
.volunteer-form .form-group select:focus,
.volunteer-form .form-group textarea:focus {
  border-color: #52C41A;
  box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.1);
}

/* ===== STORIES PAGE STYLES ===== */
.stories-hero {
  background: linear-gradient(135deg, #FA8C16 0%, #D46B08 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stories-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.stories-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
}

.stories-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stories-filter-section {
  padding: 30px 20px;
  background: white;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.category-btn {
  padding: 10px 24px;
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn:hover {
  border-color: #FA8C16;
  color: #FA8C16;
  transform: translateY(-2px);
}

.category-btn.active {
  background: linear-gradient(135deg, #FA8C16 0%, #D46B08 100%);
  color: white;
  border-color: #FA8C16;
}

.stories-grid-section {
  padding: 60px 20px 80px;
  background: #f8f9fa;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(250, 140, 22, 0.2);
}

.story-image-link {
  display: block;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-image {
  transform: scale(1.08);
}

.story-content {
  padding: 30px;
}

.story-category {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #FA8C16 0%, #D46B08 100%);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.story-title {
  margin: 0 0 12px 0;
}

.story-title a {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s;
}

.story-title a:hover {
  color: #FA8C16;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #999;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.story-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.story-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 20px 0;
}

.story-read-more {
  display: inline-block;
  color: #FA8C16;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.story-read-more:hover {
  color: #D46B08;
  transform: translateX(5px);
}

.no-stories {
  text-align: center;
  font-size: 18px;
  color: #999;
  padding: 60px 20px;
}

/* Responsive */
@media (max-width: 968px) {
  .partnership-hero-title,
  .volunteer-hero-title,
  .stories-hero-title {
    font-size: 36px;
  }
  
  .partnership-hero-desc,
  .volunteer-hero-desc,
  .stories-hero-desc {
    font-size: 16px;
  }
  
  .partnership-form,
  .volunteer-form {
    padding: 35px 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .partnership-info-section,
  .partnership-types-section,
  .partnership-form-section,
  .why-volunteer-section,
  .volunteer-opportunities-section,
  .volunteer-form-section,
  .stories-grid-section {
    padding: 60px 20px;
  }
}

@media (max-width: 640px) {
  .partnership-hero,
  .volunteer-hero,
  .stories-hero {
    padding: 70px 15px 60px;
  }
  
  .partnership-hero-title,
  .volunteer-hero-title,
  .stories-hero-title {
    font-size: 28px;
  }
  
  .partnership-form,
  .volunteer-form {
    padding: 25px 20px;
  }
  
  .btn-primary {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ===== ABOUT US PAGE STYLES ===== */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
}

.about-hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-intro-section {
  padding: 80px 20px;
  background: white;
}

.about-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 25px 0;
}

.intro-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.about-intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-vision-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.mv-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  font-size: 60px;
  margin-bottom: 25px;
}

.mv-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px 0;
}

.mv-card p,
.mv-card ul {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.mv-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-card ul li {
  padding: 12px 0 12px 35px;
  position: relative;
}

.mv-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 18px;
}

.vision-card {
  border-top: 5px solid #667eea;
}

.mission-card {
  border-top: 5px solid #764ba2;
}

.about-stats-section {
  padding: 80px 20px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 60px 0;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.stat-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
  line-height: 1.6;
}

.values-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #667eea;
}

.value-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
  border-left-width: 6px;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.programs-section {
  padding: 80px 20px;
  background: white;
}

.programs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.program-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-content {
  padding: 30px 25px;
}

.program-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
}

.program-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.about-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.about-cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.about-cta-box > p {
  font-size: 18px;
  margin: 0 0 40px 0;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta.primary {
  background: white;
  color: #667eea;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

.btn-cta.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-cta.tertiary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta.tertiary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
}

/* Responsive About Us */
@media (max-width: 968px) {
  .about-hero {
    padding: 80px 20px 60px;
  }
  
  .about-hero-title {
    font-size: 38px;
  }
  
  .about-hero-desc {
    font-size: 16px;
  }
  
  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-intro-image img {
    height: 350px;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .about-hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .about-intro-content h2 {
    font-size: 28px;
  }
  
  .mv-card {
    padding: 35px 25px;
  }
  
  .mv-card h3 {
    font-size: 24px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cta-box h2 {
    font-size: 28px;
  }
}

/* ===== MEDIA GALLERY PAGE STYLES ===== */
.media-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.media-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,128C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.media-hero-content {
  position: relative;
  z-index: 1;
}

.media-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px 0;
}

.media-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.media-gallery-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.media-filter {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #f093fb;
  color: #f093fb;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.media-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.media-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(240, 147, 251, 0.3);
}

.media-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-item:hover .media-image img {
  transform: scale(1.1);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.9) 0%, rgba(245, 87, 108, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
  opacity: 1;
}

.view-icon {
  font-size: 48px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.media-item:hover .view-icon {
  transform: scale(1);
}

.media-info {
  padding: 25px;
}

.media-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.media-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.media-date {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

.empty-media {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  align-items: center;
}

.empty-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-media h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

.empty-media p {
  font-size: 16px;
  color: #7f8c8d;
  margin: 0;
}

/* Media Modal */
.media-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.media-modal.active {
  display: flex;
}

.media-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.media-modal-content {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 20px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: modalSlideUp 0.25s ease-out;
  will-change: transform, opacity;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.media-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 28px;
  font-weight: 300;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.media-modal-close:hover {
  background: #f5576c;
  color: white;
  transform: rotate(90deg);
}

.media-modal-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  height: 600px;
}

.media-modal-image {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.media-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.media-modal-details {
  padding: 40px;
  overflow-y: auto;
  background: white;
}

.modal-category {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.media-modal-details h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.modal-date {
  font-size: 15px;
  color: #7f8c8d;
  margin-bottom: 25px;
  display: block;
}

.modal-description {
  border-top: 2px solid #f0f0f0;
  padding-top: 25px;
}

.modal-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Responsive Media Gallery */
@media (max-width: 968px) {
  .media-hero {
    padding: 80px 20px 60px;
  }
  
  .media-hero h1 {
    font-size: 36px;
  }
  
  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .media-modal-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .media-modal-image {
    height: 300px;
  }
  
  .media-modal-details {
    padding: 30px 25px;
  }
  
  .media-modal-details h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .media-hero h1 {
    font-size: 28px;
  }
  
  .media-hero p {
    font-size: 16px;
  }
  
  .media-filter {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .media-modal-content {
    max-height: 95vh;
  }
  
  .media-modal-image {
    height: 250px;
  }
  
  /* CTA Section Mobile Responsive */
  .cta-section-alt {
    padding: 16px 0 0 0;
  }
  
  .cta-list-alt {
    margin: 0 12px;
    border-radius: 16px;
    padding: 16px 12px;
    gap: 16px;
  }
  
  .cta-item-alt {
    gap: 12px;
  }
  
  .cta-icon-alt {
    width: 60px;
    height: 60px;
  }
  
  .cta-icon-alt img {
    width: 30px;
    height: 30px;
  }
  
  .cta-label-alt {
    font-size: 15px;
  }
}