/* >>-PARENT ROW BREAKOUT: READY SECTION-------------------------------------------------*/

.row:has(.block-ready-section) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), 
                      url('http://germanatorexcavator.com/wp-content/uploads/2026/06/photo_ready.avif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .row:has(.block-ready-section) {
        background-attachment: fixed;
    }
}

/* >>-INNER BLOCK STRUCTURE--------------------------------------------------------------*/

.ready_section_wrapper {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    color: #ffffff;
}

.ready_section_container {
    /* max-width: 850px; */
    margin: 0 auto;
}

.ready_section_container h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
}

.ready_section_container p {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

.ready_btn_holder {
    display: flex;
    justify-content: center;
}

.ready_section_container .btn-primary {
    display: inline-block;
    background-color: #d7a93c;
    color: #141414 !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ready_section_container .btn-primary:hover {
    transform: translateY(-2px);
    background-color: #e5b94c;
}

/* Mobile screen constraints */
@media screen and (max-width: 768px) {
    .ready_section_wrapper {
        padding: 100px 20px;
    }

    .ready_section_container p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
}