/**
 * CTA Banner Block Styles
 *
 * @package KalbaRx
 */

.cta-banner {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.cta-banner .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-banner .cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    opacity: 0.65;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.cta-banner .cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* Tablet */
@media (max-width: 991px) {
    .cta-banner {
        min-height: 500px;
        padding: var(--spacing-2xl) 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cta-banner {
        min-height: 400px;
        padding: var(--spacing-xl) 0;
    }
    
    .cta-banner .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }
    
    .cta-banner .button {
        width: 100%;
    }
}