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

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #A31D24 0%, #801419 50%, #600C0F 100%);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Premium radial backdrop glow using soft white */
.cta-backdrop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 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;
}

/* Glassmorphic badge to stand out on red background */
.cta-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.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: #F1F5F9;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* High contrast white button on red gradient background */
.cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #A31D24 !important;
  border: 1.5px solid #FFFFFF;
  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: #F8FAFC;
  border-color: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.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;
  }
}
