/* ═══════════════════════════════════════════════════════
   CTA.CSS — Call-to-Action Section
   ═══════════════════════════════════════════════════════ */

.cta-section {
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&h=500&fit=crop') center / cover no-repeat;
    background-blend-mode: overlay;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

/* Decorative blobs */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-blob--1 {
    top: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 60%);
}

.cta-blob--2 {
    bottom: -30%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,158,100,0.12) 0%, transparent 60%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    line-height: 1.15;
}

.cta-subtext {
    font-size: clamp(15px, 1.8vw, 18px);
    opacity: 0.93;
    margin-bottom: 44px;
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--lg {
    padding: 16px 44px;
    font-size: 14px;
    border-radius: 8px;
}

/* Override secondary button for dark background */
.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
