/* ==========================================================================
   NC CTA Banner Widget
   Scoped to .elementor-widget-nc_cta_banner
   ========================================================================== */

.elementor-widget-nc_cta_banner .nc-cta {
    position: relative;
    padding: 100px 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.elementor-widget-nc_cta_banner .nc-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.elementor-widget-nc_cta_banner .nc-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}

.elementor-widget-nc_cta_banner .nc-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* --- Heading --- */
.elementor-widget-nc_cta_banner .nc-cta__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* --- Description --- */
.elementor-widget-nc_cta_banner .nc-cta__desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* --- Button --- */
.elementor-widget-nc_cta_banner .nc-cta__btn {
    display: inline-block;
    padding: 18px 48px;
    background: #2563EB;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.elementor-widget-nc_cta_banner .nc-cta__btn:hover {
    background: #0EA5E9;
    transform: translateY(-2px);
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
    .elementor-widget-nc_cta_banner .nc-cta {
        padding: 60px 24px;
        min-height: 280px;
    }

    .elementor-widget-nc_cta_banner .nc-cta__heading {
        font-size: clamp(26px, 5vw, 36px);
    }

    .elementor-widget-nc_cta_banner .nc-cta__desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .elementor-widget-nc_cta_banner .nc-cta__btn {
        padding: 14px 36px;
    }
}
