/* Large Call to Action Block */
.acv-large-cta-block {
    width: 100%;
    color: #ffffff;
    padding: 110px 155px;
    background-color: var(--acv-large-cta-color, #ee7f2d);
    margin: 0;
    padding-bottom: 250px;
}

.acv-large-cta-inner {
    width: 100%;
    max-width: 1542px;
    margin: 0 auto;
}

.acv-large-cta-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: inherit;
}

.acv-large-cta-actions {
    margin-top: 30px;
}

.acv-large-cta-button {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    background-color: #ffffff;
    color: var(--acv-large-cta-color, #ee7f2d);
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.acv-large-cta-button:hover,
.acv-large-cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--acv-large-cta-color, #ee7f2d);
}

/* Teal Style Variant */
.acv-large-cta-block--teal .acv-large-cta-subtitle {
    font-weight: 200;
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 20px 0 0 0;
    color: inherit;
}

@media (max-width: 1024px) {
    .acv-large-cta-block {
        padding: 50px 40px;
    }
}

@media (max-width: 600px) {
    .acv-large-cta-block {
        padding: 40px 20px;
    }

    .acv-large-cta-title {
        font-size: 2.4rem;
    }

    .acv-large-cta-actions {
        margin-top: 20px;
    }
}

/* ===== Scroll Animation ===== */
.acv-large-cta-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.acv-large-cta-inner.acv-lcta-visible .acv-large-cta-title {
    opacity: 1;
    transform: translateY(0);
}

/* Button slides in from bottom with delay */
.acv-large-cta-actions {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.acv-large-cta-inner.acv-lcta-visible .acv-large-cta-actions {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    .acv-large-cta-title,
    .acv-large-cta-actions {
        opacity: 1;
        transform: none;
        transition: none;
    }
}