/* Enhanced CTA Section Styles */
.enhanced-cta-section {
  position: relative;
  overflow: hidden;
}

.enhanced-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.enhanced-cta-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}

.enhanced-cta-content {
  max-width: 3xl;
  margin: 0 auto;
}

.enhanced-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #00476B;
  margin-bottom: 1rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.enhanced-cta-description {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.enhanced-cta-buttons {
  display: flex;
  flex-direction: column;
  sm: flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.enhanced-cta-btn {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  min-width: 160px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.enhanced-cta-btn-primary {
  background-color: #00476B;
  color: white;
  border: 2px solid transparent;
}

.enhanced-cta-btn-primary:hover {
  background-color: #003755;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.enhanced-cta-btn-secondary {
  background-color: white;
  color: #00476B;
  border: 2px solid #00476B;
}

.enhanced-cta-btn-secondary:hover {
  background-color: #00476B;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Decorative Elements */
.enhanced-cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: radial-gradient(#00476B 1px, transparent 1px);
  background-size: 20px 20px;
}

.enhanced-cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 71, 107, 0.05);
  z-index: 1;
}

.enhanced-cta-circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
}

.enhanced-cta-circle-2 {
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enhanced-cta-content h2 {
  animation: fadeInUp 0.6s ease-out;
}

.enhanced-cta-content p {
  animation: fadeInUp 0.8s ease-out;
}

.enhanced-cta-buttons {
  animation: fadeInUp 1s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .enhanced-cta-card {
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .enhanced-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .enhanced-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Interaction States */
.enhanced-cta-card:active {
  transform: translateY(2px);
}

/* Focus states for accessibility */
.enhanced-cta-btn:focus {
  outline: 2px solid #00476B;
  outline-offset: 2px;
}