/* ==================================================
   FINAL CTA SECTION
   ================================================== */
.final-cta-section {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url('../assets/startcleaing.webp') center/cover no-repeat fixed;
    color: #ffffff;
    border-bottom: 30px solid var(--accent-yellow);
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 0px;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 1000;
    font-size: clamp(40px, 6vw, 62px);
    letter-spacing: -1.5px;
    color: var(--primary-white);
    text-transform: uppercase;
    line-height: 1.1;
}

.final-cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.final-btn:hover {
    background: #ffffff;
    color: var(--accent-yellow);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ==================================================
   FINAL CTA RESPONSIVE
   ================================================== */
@media (max-width: 767px) {
    .final-cta-section {
        padding: 60px 0;
    }
}