/* ===== CTA Banner (Compact) ===== */

.dsp-cta-banner {
    padding: 32px 0;
    background: linear-gradient(135deg, #061428 0%, #0a1f3d 50%, #0d2847 100%);
    border-top: 3px solid #d4a017;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dsp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.dsp-cta-text {
    flex: 1;
    min-width: 0;
}

.dsp-cta-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.dsp-cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    padding: 0;
    max-width: 620px;
}

.dsp-cta-action {
    flex-shrink: 0;
    text-align: right;
}

.dsp-cta-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 8px;
}

.dsp-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1f3d !important;
    background: #e8c056;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.25);
}

.dsp-cta-phone:hover {
    background: #ffffff;
    color: #0a1f3d !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
    text-decoration: none !important;
}

.dsp-cta-phone i {
    font-size: 16px;
}

@media (max-width: 991px) {
    .dsp-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .dsp-cta-action {
        text-align: left;
        width: 100%;
    }

    .dsp-cta-phone {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .dsp-cta-banner {
        padding: 26px 0;
    }

    .dsp-cta-name {
        font-size: 20px;
    }

    .dsp-cta-desc {
        font-size: 13px;
    }

    .dsp-cta-phone {
        font-size: 16px;
        padding: 13px 20px;
    }
}
