/* CTA Section */
.cta-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.08) 0%, transparent 20%),
    linear-gradient(135deg, rgba(26,41,128,0.9) 0%, rgba(38,208,206,0.9) 100%);
  z-index: 1;
}

.cta-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out;
}

.cta-content p {
  font-size: 1.35rem;
  max-width: 750px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons .btn {
  min-width: 200px;
  padding: 1.125rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scaleX(0);
  transform-origin: right;
}

.cta-buttons .btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-buttons .btn-primary {
  background: white;
  color: #1a2980;
  border: none;
}

.cta-buttons .btn-primary::before {
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
}

.cta-buttons .btn-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.cta-buttons .btn-outline::before {
  background: rgba(255, 255, 255, 0.15);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Decorative Elements */
.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s infinite linear;
  opacity: 0;
}

/* CTA Features */
.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.feature-item i {
  color: #4cff9e;
  font-size: 1rem;
}

.feature-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

/* Button Icons */
.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cta-buttons .btn svg {
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover svg {
  transform: translateX(3px);
}

.cta-buttons .btn-outline:hover svg {
  transform: translateX(3px);
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 6rem 1.25rem;
  }
  
  .cta-content h2 {
    font-size: 2.25rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 3rem 1rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}
