.cta-section {
  position: relative;
  padding: 100px 20px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #084B3C 0%, #0B5E4B 100%);
  z-index: 1;
}

.cta-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.06) 0%, transparent 60%);
  z-index: 2;
}

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

.cta-headline {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.cta-text {
  font-size: 1.3rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  min-width: 260px;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  border: 2px solid #25D366;
}

.whatsapp-btn:hover {
  background-color: white;
  color: #25D366;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.form-btn {
  background-color: white;
  color: #0B5E4B;
  border: 2px solid white;
}

.form-btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
