/* Why Choose Us Section */
.why-choose-us {
  background: #fff;
}

.feature-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  border-top: 3px solid transparent;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(46, 204, 113, 0.2);
  border-top-color: var(--bs-primary);
}

.feature-box-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
  transition: all 0.4s ease;
}

.feature-box:hover .feature-box-icon {
  transform: rotateY(360deg);
}

.feature-box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature-box-text {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Statistics Section */
.statistics-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stat-box {
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 3rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8f9fa;
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: var(--bs-primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(46, 204, 113, 0.15);
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.95;
  margin: 0;
}

.cta-section .btn-light {
  background: #fff;
  color: var(--bs-primary);
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-section .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-box {
    padding: 2rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
}
