/* ===== CTA SECTION WITH BACKGROUND IMAGE (FIXED VERSION) ===== */
.cta-section {
    padding: 1.5rem 0;
    background: transparent;
}

.cta-box {
    position: relative;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    background-color: #0A2463;
    border-radius: 1.5rem;
    padding: 2.5rem 2.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    min-height: 260px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.5), rgba(62, 146, 204, 0.4));
    z-index: 1;
    display: block;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: 1rem;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff !important;
    line-height: 1.3;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.7);
}

.cta-title .text-warning {
    color: #F7931E !important;
    font-style: italic;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.7);
}

.cta-text {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: #ffffff !important;
    line-height: 1.45;
    margin-bottom: 0.875rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.7);
}

.cta-button-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.75rem;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background: #F7931E;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(247, 147, 30, 0.4);
    border: none;
    text-transform: capitalize;
}

.btn-cta-contact:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 147, 30, 0.6);
    color: #ffffff;
}

/* Responsive CTA */
@media (max-width: 991.98px) {
    .cta-box {
        padding: 2rem 2rem;
        min-height: 240px;
        text-align: center;
    }
    
    .cta-content {
        padding-left: 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-text {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .cta-button-wrapper {
        justify-content: center;
    }
    
    .btn-cta-contact {
        padding: 0.5rem 1.5rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767.98px) {
    .cta-box {
        padding: 1.75rem 1.5rem;
        min-height: 220px;
        border-radius: 1.25rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
        line-height: 1.35;
    }
    
    .cta-text {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
        line-height: 1.4;
    }
    
    .btn-cta-contact {
        padding: 0.5rem 1.375rem;
        font-size: 0.8125rem;
        max-width: 200px;
    }
}

@media (max-width: 575.98px) {
    .cta-box {
        padding: 1.5rem 1.25rem;
        min-height: 200px;
    }
    
    .cta-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }
    
    .cta-text {
        font-size: 0.6875rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .btn-cta-contact {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        max-width: 180px;
    }
}