/* ===============================
   CTA SECTION
================================ */
.cta-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    #0f172a,
    #020617
  );
  overflow: hidden;
}

/* GLOW BACKGROUND SHAPES */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.35),
    transparent 70%
  );
  z-index: 1;
}

.cta-section::before {
  top: -150px;
  left: -120px;
}

.cta-section::after {
  bottom: -150px;
  right: -120px;
}

/* ===============================
   CTA CONTENT
================================ */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* ===============================
   TEXT STYLES
================================ */
.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 32px;
}

/* ===============================
   CTA BUTTON
================================ */
.cta-content .btn {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

/* HOVER */
.cta-content .btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.55);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-content {
    padding: 45px 25px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content .btn {
    width: 100%;
    justify-content: center;
  }
}
