/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
}
  
/* Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 111, 165, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -100px;
  animation-delay: 2s;
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(66, 153, 225, 0.05) 100%);
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 30%;
  animation-delay: 4s;
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(72, 187, 120, 0.05) 100%);
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 111, 165, 0.1);
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: $primaryColor;
  border-radius: 50%;
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: rgba(74, 165, 133, 0.2);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: $primaryColor;
}

.badge-divider {
  color: rgba(74, 111, 165, 0.3);
  font-weight: 300;
}

.badge-status {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Headline */
.hero-headline {
  margin-bottom: 20px;
}

.headline-line {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}



@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* Description */
.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 24px;
}

.hero-description::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, $primaryColor, rgba(64, 172, 140, 0.3));
  border-radius: 2px;
}

/* Features */
.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  flex: 1;
  min-width: 240px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 111, 165, 0.2);
  box-shadow: 0 12px 32px rgba(74, 111, 165, 0.15);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: $primaryColor;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.feature-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}



/* CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  .btn {
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
 .btn-primary{
  background: $primaryColor;
  color: white;
 }
  .btn-primary:hover {
    background: darken($primaryColor, 5%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .btn-secondary {
    background: $secondaryColor;
    color: #fff;
  }
  .btn-secondary:hover {
    background: darken($secondaryColor, 5%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  .btn-donation{
    border: 1px solid $primaryColor;
    color: $primaryColor;
  }
    .btn-donation:hover{
    border: 1px solid $primaryColor;
    background: #71dead4a;
  }
}



/* Image Section */
.hero-image-section {
  position: relative;
  margin-left: 30px;
}

.imageSwiper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.swiper-slide {
  height: 500px;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  border: 5px solid #fff;
  border-radius: 20px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.swiper-slide-active .image-container img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.overlay-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.overlay-badge i {
  color: $primaryColor;
  font-size: 14px;
}

.overlay-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
  color: $primaryColor;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}

/* Swiper Info */
.swiper-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 10px;
}

.current-slide {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.current-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a6fa5;
}

.total-slides {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
}

.swiper-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.caption-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.caption-location {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-headline .headline-line {
    font-size: 2.5rem;
  }
  
  .hero-image-section {
    margin-left: 0;
    margin-top: 50px;
  }
  
  .hero-features {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-headline .headline-line {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding-left: 20px;
  }
  
  .swiper-slide {
    height: 400px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
}