/* ===== CTA SECTION — Premium Redesign ===== */

.cta-section {
  padding: 180px 60px;
  background:
    linear-gradient(150deg, rgba(46, 31, 80, 0.76) 0%, rgba(74, 50, 120, 0.48) 50%, rgba(46, 31, 80, 0.76) 100%),
    url('../photos/cta.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

/* ── Ambient Glows ── */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-glow-center {
  width: 760px;
  height: 760px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(195, 168, 232, 0.14) 0%, transparent 62%);
}

.cta-glow-top-right {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(143, 196, 168, 0.13) 0%, transparent 65%);
}

.cta-glow-bottom-left {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(155, 126, 200, 0.12) 0%, transparent 65%);
}

/* ── Concentric Arcs ── */
.cta-arc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-arc-1 {
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.cta-arc-2 {
  width: 660px;
  height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.035);
}

.cta-arc-3 {
  width: 880px;
  height: 880px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* ── Floating Micro-elements ── */
.cta-micro {
  position: absolute;
  pointer-events: none;
  animation: ctaMicroFloat 7s ease-in-out infinite;
}

.cta-micro-1 {
  width: 11px; height: 11px;
  border-radius: 3px;
  background: rgba(201, 184, 232, 0.45);
  top: 22%; left: 11%;
  transform: rotate(18deg);
  animation-delay: 0s;
}

.cta-micro-2 {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(143, 196, 168, 0.4);
  top: 32%; right: 13%;
  animation-delay: 1.8s;
}

.cta-micro-3 {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  bottom: 26%; left: 16%;
  transform: rotate(-22deg);
  animation-delay: 3.2s;
}

.cta-micro-4 {
  width: 9px; height: 9px;
  border-radius: 2px;
  background: rgba(201, 184, 232, 0.3);
  bottom: 20%; right: 15%;
  transform: rotate(40deg);
  animation-delay: 2.4s;
}

.cta-micro-5 {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(143, 196, 168, 0.45);
  top: 62%; left: 7%;
  animation-delay: 4.5s;
}

/* ── Content wrapper ── */
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Eyebrow ── */
.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.cta-eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 219, 201, 0.85);
  font-weight: 400;
  white-space: nowrap;
}

.cta-eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 219, 201, 0.5), transparent);
}

/* ── Headline ── */
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 6.4vw, 98px);
  font-weight: 300;
  color: white;
  line-height: 1.06;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}

.cta-title em {
  font-style: italic;
  color: var(--mint-light);
  position: relative;
  display: inline-block;
}

.cta-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 219, 201, 0.65), transparent);
}

/* ── Body text ── */
.cta-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 400px;
  margin: 0 auto 72px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ── Buttons ── */
.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: #4A3278;
  padding: 20px 52px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(123, 94, 167, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  color: #2E1F50;
}

.btn-cta-primary:hover::before { opacity: 1; }

.btn-cta-primary svg {
  transition: transform 0.3s ease;
}

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

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 20px 44px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.btn-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  color: white;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cta-section { padding: 110px 24px; }
  .cta-arc-2, .cta-arc-3 { display: none; }
  .cta-micro-3, .cta-micro-4 { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-ghost { width: 100%; max-width: 320px; justify-content: center; }
}
