/* =================================
   MRC Home CTA Section
   Background: Solid (image + dark/red overlay)
   ================================= */

.mrc-home-cta {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-image: url('/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}

/* Overlay */
.mrc-home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 17, 23, 0.9) 0%,
        rgba(15, 17, 23, 0.78) 50%,
        rgba(212, 43, 46, 0.12) 100%
    );
    z-index: 1;
}

.mrc-home-cta-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.mrc-home-cta-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.mrc-home-cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.mrc-home-cta-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Button - red */
.mrc-home-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background-color: var(--mrc-red, #d42b2e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.mrc-home-cta-button:hover {
    background-color: var(--mrc-red-hover, #b82426);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 43, 46, 0.4);
}

/* Arrow icon turns yellow on hover */
.mrc-home-cta-button i {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mrc-home-cta-button:hover i {
    transform: translateX(4px);
    color: var(--mrc-yellow, #EBBA37);
}

/* =================================
   Tablet
   ================================= */
@media (max-width: 992px) {
    .mrc-home-cta {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .mrc-home-cta-container {
        padding: 0 1.5rem;
    }

    .mrc-home-cta-title {
        font-size: 2.5rem;
    }

    .mrc-home-cta-text {
        font-size: 1.05rem;
    }
}

/* =================================
   Mobile
   ================================= */
@media (max-width: 768px) {
    .mrc-home-cta {
        padding: 80px 0;
    }

    .mrc-home-cta-container {
        padding: 0 1.25rem;
    }

    .mrc-home-cta-content {
        max-width: 100%;
    }

    .mrc-home-cta-title {
        font-size: 2rem;
    }

    .mrc-home-cta-text {
        font-size: 1rem;
        max-width: 100%;
    }

    .mrc-home-cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

@media (hover: none) {
    .mrc-home-cta {
        background-attachment: scroll;
    }
}
