/* ============================================
   CTA COMPONENT - Style 2 (With Image)
   Brochure-like layout (text + image)
   ============================================ */

.modern-cta-section--style-2 {
    position: relative;
    padding: 4.25rem 0;
    /* Full-bleed background even inside constrained wrappers */
    width: 100vw;
    max-width: none;
    left: 50%;
    margin: 2.5rem 0;
    margin-left: -50vw;
    background: var(--cta-style-2-bg, #ffffff) !important;
    overflow: hidden;
}

.modern-cta-section--style-2::before,
.modern-cta-section--style-2::after,
.modern-cta-section--style-2 .cta-decoration {
    display: none !important;
}

.cta-brochure-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-brochure-text {
    flex: 1;
    min-width: 280px;
    max-width: 680px;
}

.cta-brochure-title {
    margin: 0;
    font-size: 2.6rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--cta-style-2-text, #1f2937);
}

.cta-brochure-description {
    margin: 1.1rem 0 0;
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--cta-style-2-muted, #6b7280);
}

.cta-brochure-actions {
    margin-top: 2.1rem;
}

.modern-cta-section--style-2 .modern-cta-button {
    background: #95b91a !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 1.05rem 2.2rem;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.modern-cta-section--style-2 .modern-cta-button:hover {
    transform: translateY(-2px) !important;
    filter: brightness(0.95);
}

.modern-cta-section--style-2 .modern-cta-button::after {
    content: '';
}

.cta-brochure-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-brochure-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.modern-cta-section--style-2.image-left .cta-brochure-content {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .cta-brochure-content {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }

    .modern-cta-section--style-2.image-left .cta-brochure-content {
        flex-direction: column;
    }

    .cta-brochure-actions {
        display: flex;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .cta-brochure-title {
        font-size: 2.1rem;
    }

    .cta-brochure-description {
        font-size: 1.1rem;
    }
}
