/* ===========================
   CTA Section — Premium Design
   =========================== */
.cta-section {
    position: relative;
    padding: 60px 0;
    background: var(--dark-secondary);
    overflow: hidden;
    text-align: center;
}

/* Ambient glow effects */
.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.07;
}

.cta-glow--left {
    top: -20%;
    left: -10%;
    background: #FFB800;
}

.cta-glow--right {
    bottom: -20%;
    right: -10%;
    background: #FFB800;
}

/* Wrapper */
.cta-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.18);
    color: #FFB800;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cta-badge i {
    font-size: 0.75rem;
}

/* Heading */
.cta-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.cta-heading span {
    color: #FFB800;
    position: relative;
}

.cta-heading span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 184, 0, 0.2);
    border-radius: 4px;
}

/* Description */
.cta-desc {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 36px;
}

/* Stats row */
.cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 0;
    margin-bottom: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.cta-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFB800;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 6px;
}

.cta-stat-label {
    font-size: 0.78rem;
    color: #777;
    font-weight: 500;
    white-space: nowrap;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* CTA Buttons */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #FFB800;
    color: #121212;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    border: 2px solid #FFB800;
    box-shadow: 0 4px 24px rgba(255, 184, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 184, 0, 0.3);
    color: #121212;
    background: #ffca3a;
}

.cta-btn-primary i {
    font-size: 1rem;
}

.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: #25D366;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    transition: all 0.35s ease;
}

.cta-btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.25);
}

.cta-btn-whatsapp i {
    font-size: 1.1rem;
}

/* Trust line */
.cta-trust {
    font-size: 0.78rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

.cta-trust i {
    color: #FFB800;
    margin-right: 6px;
    font-size: 0.72rem;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 18px;
    }

    .cta-stat {
        padding: 0;
    }

    .cta-stat-divider {
        width: 40px;
        height: 1px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn-primary,
    .cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-glow {
        width: 300px;
        height: 300px;
    }
}