/* Enhanced CTA Section Styles */
.enhanced-cta-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.enhanced-cta-content {
  background: linear-gradient(135deg, #1a1f4a 0%, #2d4394 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.enhanced-cta-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.enhanced-cta-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.enhanced-cta-icon i {
  font-size: 32px;
  color: #fff;
}

.enhanced-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff !important;
  line-height: 1.2;
  text-shadow: none;
}

.enhanced-cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: none;
}

.enhanced-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.enhanced-btn-primary, .enhanced-btn-secondary {
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  border: 2px solid;
}

.enhanced-btn-primary {
  background: #fff;
  color: #1a1f4a;
  border-color: #fff;
  font-weight: 700;
}

.enhanced-btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.enhanced-cta-content .enhanced-btn-secondary {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
  font-weight: 600;
}

.enhanced-cta-content .enhanced-btn-secondary:hover,
.enhanced-cta-content .enhanced-btn-secondary:focus,
.enhanced-cta-content .enhanced-btn-secondary:active {
  background: #20B658 !important;
  border-color: #20B658 !important;
  transform: translateY(-2px);
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

@media (max-width: 768px) {
  .enhanced-cta-content {
    padding: 40px 20px;
  }
  
  .enhanced-cta-title {
    font-size: 2rem;
  }
  
  .enhanced-cta-description {
    font-size: 1.1rem;
  }
  
  .enhanced-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .enhanced-btn-primary, .enhanced-btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}