/**
 * CTA Sectie Block Styles
 */

.eicom-cta-sectie {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.eicom-cta-sectie.bg-green {
    background-color: #61b01f;
}

.eicom-cta-sectie.bg-blue {
    background-color: #006b8c;
}

/* Overlay */
.eicom-cta-sectie .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Content */
.eicom-cta-sectie .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.eicom-cta-sectie .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.eicom-cta-sectie .cta-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 32px;
}

/* Actions */
.eicom-cta-sectie .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .eicom-cta-sectie .cta-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .eicom-cta-sectie .cta-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .eicom-cta-sectie .cta-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .eicom-cta-sectie .cta-text {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .eicom-cta-sectie .cta-actions {
        flex-direction: column;
    }

    .eicom-cta-sectie .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
