/* ===== FINAL CTA ===== */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?w=1600&q=90');
  background-size: cover;
  background-position: center 60%;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.55);
}
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--blue-800);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}
.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}
.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .cta-section { padding: 64px 0; }
  .cta-title { font-size: 28px; }
  .cta-sub { font-size: 15px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
}
