/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    /* background-size: cover; */
    /* background-position: center; */
    position: relative;
    color: #fff;
    text-align: center;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 30, 74, 0.8);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.cta-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
}

.cta-btn-wrapper .btn {
    padding: 18px 50px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title {
        font-size: 36px;
    }

    .cta-desc {
        font-size: 18px;
    }

    .cta-section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-section {
        padding: var(--spacing-lg) 0;
    }

    .cta-btn-wrapper .btn {
        width: 100%;
        max-width: 300px;
    }
}