/* Call To Action CSS - Prefix: .cta- */

.cta-section {
  padding: 100px 0;
  background-color: #111827;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Premium radial backdrop glow */
.cta-backdrop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(163, 29, 36, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.cta-container {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #A31D24;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #E2E8F0;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}

.cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  background-color: #A31D24;
  color: #FFFFFF !important;
  border: 1.5px solid #A31D24;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
  background-color: #8B181E;
  border-color: #8B181E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(163, 29, 36, 0.4);
}

.cta-btn-arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(4px);
}

/* Responsiveness */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 36px;
  }
  .cta-subtitle {
    font-size: 16px;
  }
}
