/* ==========================
   CTA SECTION
   ========================== */

.cta-section {
  position: relative;
  padding: 8rem 2rem;
  box-shadow: 0 25px 60px rgb(0, 0, 0);
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: black;
}

/* subtle moving light */
.cta-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  
}

@keyframes ctaLightMove {
  0%   { transform: translate(-10%, -10%); }
  50%  { transform: translate(10%, 10%); }
  100% { transform: translate(-10%, -10%); }
}

.cta-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  animation: ctaFadeUp 1.2s ease forwards;
}

@keyframes ctaFadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cta-content h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.cta-content p {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ==========================
   CTA BUTTONS
   ========================== */

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  perspective: 800px;
}

/* PRIMARY */
.cta-btn.primary {
  background: linear-gradient(135deg, #c4a668, #9f8448);
  color: #0a0a0a;
  box-shadow: 0 20px 50px rgba(196,166,104,0.35);
}

.cta-btn.primary:hover {
  transform: translateY(-4px) rotateX(6deg);
  box-shadow: 0 30px 70px rgba(196,166,104,0.5);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  background: transparent;
}

.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px) rotateX(6deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 768px) {
  .cta-content p {
    font-size: 1.05rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}
