/**
 * Footer CTA Block Styles
 * Updated to Solid High-Impact Banner
 */

.footer-cta-block {
    text-align: center;
    padding: 6rem 1.5rem;
    border-top: none; /* Remove old border */
    background-color: #0f172a; /* Solid Brand Navy */
    color: #ffffff;
    margin-bottom: 0; /* Flush with footer */
    
    /* Force full viewport width */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.footer-cta-block .footer-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-block .footer-cta-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .footer-cta-block .footer-cta-headline {
        font-size: 3.5rem;
    }
}

.footer-cta-block .footer-cta-button-wrapper {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-cta-block .footer-cta-button {
    display: inline-block;
    background-color: #ff6a13; /* Brand Orange */
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border-radius: 0.375rem; /* Slight rounded corners */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid #ff6a13;
}

.footer-cta-block .footer-cta-button:hover {
    background-color: #ffffff;
    color: #ff6a13; /* Invert on hover */
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.footer-cta-block .footer-cta-subtext {
    font-size: 1rem;
    color: #94a3b8; /* Muted gray/blue text */
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 400;
}
