/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= ROOT VARIABLES Start================= */
:root {
    --font-dm: 'DM Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-sora: 'Sora', sans-serif;

    --primary: #2f6b2f;
    --primary-dark: #1f4d1f;
    --green-light: #ecffe3;
}
/* ================= ROOT VARIABLES END ================= */
/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.hero-title {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    color: #222;
}

.hero-title span {
    color: #58c17a;
    font-weight: 700;
}

.hero-text {
    max-width: 700px;
    margin: 25px auto;
    font-size: 22px;
    color: #666;
    line-height: 1.6;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===========================
   Large Desktop (1400px+)
=========================== */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 90px;
    }

    .hero-text {
        font-size: 24px;
    }
}

/* ===========================
   Desktop / Laptop
=========================== */
@media (max-width: 1199px) {

    .hero-section {
            padding: 80px 15px;
        }

    .hero-title {
        font-size: 65px;
    }

    .hero-text {
        font-size: 20px;
        max-width: 650px;
    }
}

/* ===========================
   Tablet
=========================== */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 100px 20px 80px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-text {
        font-size: 18px;
        max-width: 550px;
    }

    .hero-btns .btn {
        padding: 12px 28px;
    }
}

/* ===========================
   Mobile
=========================== */
@media (max-width: 767px) {
    .hero-section {
        padding: 80px 15px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 16px;
        max-width: 100%;
        margin: 20px auto;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 !important;
    }
}

/* ===========================
   Extra Small Mobile
=========================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-btns .btn {
        max-width: 100%;
        width: 100%;
        padding: 12px;
    }
}

/* ===========================
   Very Small Devices
=========================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-text {
        font-size: 14px;
    }
}






.hero-strip {
    width: 100%;
    background: #eef8f0;
    padding: 12px 0;
    border-top: 1px solid #d8eadc;
    border-bottom: 1px solid #d8eadc;
    text-align: center;
}

.hero-strip p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-strip {
        padding: 10px 15px;
    }

    .hero-strip p {
        font-size: 12px;
        line-height: 1.7;
    }
}
/* Hero section end  */


/*================ SERVICES =================*/
/*================ SERVICES =================*/

.services-section {
    position: relative;
    background: url("assets/images/services-bg.png") no-repeat top center;
    background-size: cover;
    padding: 290px 0 60px;
    overflow: hidden;
}

/* Left Content */
.services-content h2 {
    color: #fff;
    font-size: 68px;
    line-height: 1.05;
    font-weight: 300;
}

.services-content h2 strong {
    font-weight: 700;
}

.services-content p {
    color: #fff;
    margin: 30px 0;
    font-size: 20px;
    line-height: 1.8;
}

/* Features */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.service-features li::before {
    content: "✓";
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    min-height: 260px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left Align */
    justify-content: flex-start;
    text-align: left;
    /* Left Align */
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 42px;
    color: #4fc274;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #4fc274;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    
}

/* View All Card */
.view-all-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 34px;
    text-align: center;
    transition: .4s;
}

.view-all-card:hover {
    background: #fff;
    color: #45b56a;
}

.view-all-card i {
    font-size: 30px;
}

/* =========================
   Large Desktop
========================= */
@media (min-width:1400px) {
    .services-content h2 {
        font-size: 78px;
    }
}

/* =========================
   Tablet
========================= */
@media (max-width:991px) {

    .services-section {
        padding: 450px 0 80px;
    }

    .services-content {
        text-align: center;
        /*margin-bottom: 60px;*/
    }

    .services-content h2 {
        font-size: 50px;
    }

    .services-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 25px auto;
    }

    .service-features {
        display: inline-block;
        text-align: left;
    }

    .service-card {
        min-height: 220px;
    }

    .view-all-card {
        height: 220px;
        font-size: 28px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width:767px) {

    .services-section {
        /* padding: 140px 0 70px; */
        /* padding: 450px 0 60px; */
        padding-bottom: 60px;
    }

    .services-content h2 {
        font-size: 40px;
        text-align: center;
    }

    .services-content p {
        font-size: 16px;
        text-align: center;
        line-height: 1.7;
    }

    .service-features {
        max-width: 280px;
        margin: 30px auto;
    }

    .service-features li {
        font-size: 16px;
    }

    .service-card {
        min-height: 180px;
        padding: 25px 15px;
        border-radius: 25px;
    }

    .service-icon {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .service-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .view-all-card {
        height: 180px;
        font-size: 24px;
        border-radius: 25px;
    }
}



/* =========================
   Extra Mobile
========================= */
@media (max-width:480px) {

    .services-content h2 {
        font-size: 32px;
    }

    .services-content p {
        font-size: 14px;
    }

    .service-features li {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .service-features li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .service-card {
        min-height: 165px;
        padding: 20px 12px;
        border-radius: 20px;
    }

    .service-icon {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .service-card h4 {
        font-size: 15px;
    }

    .service-card p {
        display: none;
    }

    .view-all-card {
        height: 165px;
        font-size: 20px;
        border-radius: 20px;
    }
}



.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #55C878;
    font-size: 15px;
    font-weight: 500;
    /* margin-top: 15px; */
    transition: all .3s ease;
}

.learn-more i {
    transition: transform .3s ease;
}

.service-card:hover .learn-more {
    color: #2ca55c;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}
/* =========================================
   MOBILE - REMOVE EXCESS WHITE SPACE
========================================= */
/* =========================================
   SERVICES SECTION - FINAL MOBILE FIX
========================================= */

@media (max-width: 768px) {

    .services-section {
        position: relative !important;

        /* Green background */
        background: #46AE67 !important;

        /* Proper spacing */
        padding: 45px 0 60px !important;

        margin: 0 !important;

        min-height: auto !important;
        height: auto !important;

        overflow: hidden !important;
    }

    /* Container spacing */
    .services-section>.container {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 15px !important;
        padding-right: 15px !important;

        margin: 0 auto !important;
    }

    /* Service cards */
    .services-section .service-card {
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Cards white */
    .services-section .service-image,
    .services-section .service-body {
        background: #fff !important;
    }

    /* Card image */
    .services-section .service-image img {
        width: 100% !important;
        height: 300px !important;
        object-fit: cover !important;
    }

    /* Card title */
    .services-section .service-body h5 {
        color: #2b2b2b !important;
    }

    /* Footer remains green */
    .services-section .service-footer {
        background: #5dc07b !important;
    }

    /* Price text */
    .services-section .service-footer span,
    .services-section .service-footer h4 {
        color: #fff !important;
    }

    /* Book button */
    .services-section .book-btn {
        background: #fff !important;
        color: #46AE67 !important;
    }

    /* Notes box */
    .services-section .service-note-box {
        background: #fff !important;
        margin-top: 35px !important;
        padding: 22px 18px !important;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 576px) {

    .services-section {
        background: #46AE67 !important;
        padding: 35px 0 50px !important;
    }

    .services-section>.container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .services-section .service-image img {
        height: 300px !important;
    }

    .services-section .service-card {
        border-radius: 14px !important;
    }

}
/*================ SERVICES END =================*/

/*================ WHY SECTION Start================*/

.why-section {

        position: relative;
        
            background: url("assets/images/services-bg.png") no-repeat top center;
            background-size: cover;
        
            margin-top: -250px;
            padding-top: 250px;
            padding-bottom: 130px;

}

.why-wrapper {

    background: #fff;
        border-radius: 50px;
        padding: 90px 70px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    
        margin-top: 120px;
}

.section-title {

    font-size: 60px;

    font-weight: 300;

    line-height: 1.1;

}

.section-title span {

    color: #49be71;

    font-weight: 700;

}

.section-desc {

    width: 620px;

    max-width: 100%;

    margin: 20px auto 0;

    color: #777;

}

/* Cards */

.trust-card {

    background: #53be72;

    color: #fff;

    border-radius: 18px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    transition: .4s;

}

.trust-card:hover {

    transform: translateY(-8px);

}

.trust-icon {

    font-size: 38px;

    margin-bottom: 18px;

}

.trust-card h4 {

    font-size: 22px;

    margin-bottom: 12px;

}

.trust-card p {

    font-size: 14px;

    line-height: 1.8;

}

/* Process */
/*================ CLEANING PROCESS =================*/

/*=========================
  PROCESS AREA
=========================*/

.process-area {
    margin-top: 90px;
}

.cleaning-process {
    position: relative;
}

.cleaning-process-line {
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: #53be72;
    z-index: 1;
}

.cleaning-step-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #53be72;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 35px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(83, 190, 114, .35);
}

.cleaning-process h5 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #111;
}

.cleaning-process p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 300px;
    margin: auto;
}


/*=========================
  Large Desktop
=========================*/
/* @media(min-width:1400px) {

    .cleaning-step-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .cleaning-process-line {
        top: 40px;
    }

    .cleaning-process h5 {
        font-size: 32px;
    }

    .cleaning-process p {
        font-size: 18px;
    }

} */


/*=========================
  Laptop
=========================*/
@media(max-width:1199px) {

    .cleaning-process h5 {
        font-size: 24px;
    }

    .cleaning-process p {
        font-size: 15px;
    }

}


/*=========================
  Tablet
=========================*/
@media(max-width:991px) {

    .cleaning-process-line {
        display: none;
    }

    .cleaning-process .col-lg-3 {
        margin-bottom: 50px;
    }

    .cleaning-step-circle {
        width: 70px;
        height: 70px;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .cleaning-process h5 {
        font-size: 24px;
    }

    .cleaning-process p {
        font-size: 16px;
        max-width: 400px;
    }

}


/*=========================
  Mobile
=========================*/
@media(max-width:767px) {

    .process-area {
        margin-top: 60px;
    }

    .cleaning-process .row {
        row-gap: 35px;
    }

    .cleaning-step-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .cleaning-process h5 {
        font-size: 22px;
    }

    .cleaning-process p {
        font-size: 15px;
        line-height: 1.6;
        max-width: 300px;
    }

}


/*=========================
  Extra Mobile
=========================*/
@media(max-width:480px) {

    .cleaning-process .col-lg-3 {
        margin-bottom: 35px;
    }

    .cleaning-step-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .cleaning-process h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cleaning-process p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

}
/*================ WHY SECTION End================*/


/*================ Gallery =================*/

.gallery-section {

    padding: 100px 0;

    background: #fff;

}

.gallery-title {

    font-size: 70px;

    font-weight: 400;

    color: #222;

    margin-bottom: 60px;

}

.gallery-title span {

    color: #49be71;

    font-weight: 700;

}

.gallery-card {

    position: relative;

    height: 500px;

    border-radius: 22px;

    overflow: hidden;

    background: #000;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);

}

.gallery-card:hover {

    transform: translateY(-10px);

}

.gallery-card video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

.play-btn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 70px;

    height: 70px;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #49be71;

    font-size: 28px;

    cursor: pointer;

    transition: .3s;

}

.play-btn:hover {

    background: #49be71;

    color: #fff;

    transform: translate(-50%, -50%) scale(1.08);

}

@media(max-width:992px) {

    .gallery-title {

        font-size: 50px;

    }

    .gallery-card {

        height: 420px;

    }

}

@media(max-width:576px) {

    .gallery-section {

        padding: 70px 0;

    }

    .gallery-title {

        font-size: 38px;

    }

    .gallery-card {

        height: 300px;

        border-radius: 18px;

    }

    .play-btn {

        width: 55px;

        height: 55px;

        font-size: 22px;

    }
}

/* gallery section end */

/*================ TESTIMONIAL =================*/

.testimonial-section {

    background: #EBF5EC;

    padding: 100px 0;

}

.testimonial-title {

    font-size: 65px;

    font-weight: 400;

    color: #222;

}

.testimonial-title span {

    color: #4dbc71;

    font-weight: 700;

}

.testimonial-desc {

    max-width: 650px;

    margin: 20px auto 60px;

    font-size: 20px;

    color: #666;

    line-height: 1.6;

}

.review-card {

    background: #fff;

    border-radius: 30px;

    padding: 35px;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

    transition: .35s;

}

.review-card:hover {

    transform: translateY(-8px);

}

.stars {

    color: #f5b301;

    font-size: 24px;

    margin-bottom: 20px;

}

.review-card p {

    color: #666;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 30px;

}

.review-user {

    display: flex;

    align-items: center;

    gap: 15px;

}

.user-img {

    width: 48px;

    height: 48px;

    background: #dfeadf;

    border-radius: 50%;

}

.review-user h5 {

    margin: 0;

    font-size: 18px;

    color: #222;

}

.review-user span {

    color: #888;

    font-size: 13px;

}

@media(max-width:991px) {

    .testimonial-title {

        font-size: 45px;

    }

    .testimonial-desc {

        font-size: 17px;

    }

}

@media(max-width:576px) {

    .testimonial-section {

        padding: 70px 0;

    }

    .testimonial-title {

        font-size: 36px;

    }

    .review-card {

        padding: 25px;

        border-radius: 20px;

    }

}

/*================ TESTIMONIAL END=================*/

/*================ CTA SECTION =================*/

.cta-section {

    background: linear-gradient(135deg, #4dbc71, #45b86a);

    padding: 100px 0;

}

.cta-content {

    text-align: center;

    /* max-width: 900px; */

    margin: auto;

}

.cta-content h2 {

    color: #fff;

    font-size: 68px;

    font-weight: 300;

    line-height: 1.15;

}

.cta-content h2 strong {

    font-weight: 700;

}

.cta-content p {

    color: #fff;

    font-size: 22px;

    line-height: 1.7;

    margin: 35px auto 50px;

    max-width: 750px;

}

.cta-btns {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.cta-btn {

    min-width: 180px;

    padding: 14px 35px;

    font-size: 18px;

    border-radius: 10px;

    transition: .35s;

}

.btn-light {

    background: #fff;

    color: #49be71;

    border: none;

}

.btn-light:hover {

    background: #f2f2f2;

    color: #49be71;

}

.btn-outline-light {

    border: 2px solid #fff;

    color: #fff;

}

.btn-outline-light:hover {

    background: #fff;

    color: #49be71;

}

/*================ Responsive =================*/

@media(max-width:991px) {

    .cta-section {

        padding: 80px 0;

    }

    .cta-content h2 {

        font-size: 48px;

    }

    .cta-content p {

        font-size: 18px;

    }

}

@media(max-width:576px) {

    .cta-content h2 {

        font-size: 34px;

    }

    .cta-content p {

        font-size: 16px;

        margin: 25px auto 35px;

    }

    .cta-btn {

        width: 100%;

        max-width: 280px;

    }

}
/* cta section end */


/* =========================================================
   FINAL RESPONSIVE SYSTEM
   Desktop > Laptop > Tablet > Mobile > Small Mobile > Xtra Mobile
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

.container {
    width: 100%;
}

/* -------------------- LARGE DESKTOP 1400px+ -------------------- */
@media (min-width: 1400px) {
    .hero-section {
        min-height: 78vh;
        padding: 90px 20px;
    }

    .hero-title {
        font-size: clamp(72px, 5.2vw, 92px);
    }

    .hero-text {
        font-size: 22px;
        max-width: 760px;
    }

    .services-section {
        padding-top: 260px;
    }

    .services-content h2 {
        font-size: clamp(64px, 4.7vw, 82px);
    }

    .service-card {
        min-height: 270px;
        padding: 32px;
    }

    .gallery-card {
        height: 520px;
    }

    .why-wrapper {
        padding: 90px 75px;
    }
}

/* -------------------- DESKTOP / LAPTOP 992-1399px -------------------- */
@media (min-width: 992px) and (max-width: 1399px) {
    .hero-section {
        min-height: 75vh;
        padding: 80px 20px;
    }

    .hero-title {
        font-size: clamp(54px, 5.5vw, 72px);
    }

    .hero-text {
        font-size: 19px;
        max-width: 680px;
    }

    .services-section {
        padding: 210px 0 70px;
    }

    .services-content h2 {
        font-size: clamp(48px, 5vw, 64px);
    }

    .services-content p {
        font-size: 18px;
    }

    .service-card {
        min-height: 245px;
        padding: 25px;
        border-radius: 24px;
    }

    .service-card h4 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 15px;
    }

    .why-wrapper {
        padding: 70px 45px;
        border-radius: 40px;
    }

    .section-title {
        font-size: 52px;
    }

    .gallery-section,
    .testimonial-section {
        padding: 85px 0;
    }

    .gallery-title {
        font-size: 58px;
    }

    .gallery-card {
        height: 440px;
    }

    .testimonial-title {
        font-size: 54px;
    }

    .cta-section {
        padding: 85px 0;
    }

    .cta-content h2 {
        font-size: 58px;
    }
}

/* -------------------- TABLET 768-991px -------------------- */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-section {
        min-height: auto;
        padding: 85px 20px 75px;
    }

    .hero-title {
        font-size: clamp(44px, 7vw, 58px);
        line-height: 1.15;
    }

    .hero-text {
        font-size: 18px;
        max-width: 620px;
        line-height: 1.65;
    }

    .hero-btns {
        margin-top: 30px;
    }

    .services-section {
        padding: 100px 0 70px;
        background-size: cover;
    }

    .services-content {
        text-align: center;
        margin-bottom: 45px;
    }

    .services-content h2 {
        font-size: clamp(42px, 6vw, 52px);
    }

    .services-content p {
        max-width: 650px;
        margin: 20px auto;
        font-size: 17px;
    }

    .service-features {
        display: inline-block;
        text-align: left;
        margin-top: 25px;
    }

    .service-features li {
        font-size: 17px;
    }

    .service-card {
        min-height: 220px;
        padding: 24px;
        border-radius: 22px;
    }

    .service-card h4 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .view-all-card {
        height: 220px;
        font-size: 28px;
    }

    .why-wrapper {
        padding: 60px 35px;
        border-radius: 35px;
        margin-top: 70px;
    }

    .section-title {
        font-size: 46px;
    }

    .trust-card {
        padding: 28px 20px;
    }

    .trust-card h4 {
        font-size: 20px;
    }

    .cleaning-process-line {
        display: none;
    }

    .cleaning-process .col-lg-3 {
        margin-bottom: 35px;
    }

    .gallery-section,
    .testimonial-section {
        padding: 75px 0;
    }

    .gallery-title,
    .testimonial-title {
        font-size: 48px;
    }

    .gallery-card {
        height: 390px;
    }

    .review-card {
        padding: 28px;
        border-radius: 24px;
    }

    .cta-section {
        padding: 75px 0;
    }

    .cta-content h2 {
        font-size: 46px;
    }

    .cta-content p {
        font-size: 17px;
    }
}

/* -------------------- MOBILE 576-767px -------------------- */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-section {
        min-height: auto;
        padding: 70px 15px 60px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.18;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.7;
        margin: 18px auto;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 28px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto !important;
    }

    .services-section {
        padding: 45px 0 60px !important;
        background: #46AE67 !important;
    }

    .services-content {
        text-align: center;
        margin-bottom: 35px;
    }

    .services-content h2 {
        font-size: 36px;
        line-height: 1.12;
    }

    .services-content p {
        font-size: 15px;
        line-height: 1.65;
        margin: 18px auto;
    }

    .service-features {
        max-width: 300px;
        margin: 25px auto;
        text-align: left;
    }

    .service-features li {
        font-size: 15px;
        margin-bottom: 13px;
    }

    .service-features li::before {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .services-section .row.g-4 {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .service-card {
        min-height: 190px !important;
        padding: 20px 14px !important;
        border-radius: 18px !important;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .service-card h4 {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .learn-more {
        font-size: 13px;
    }

    .view-all-card {
        height: 190px !important;
        border-radius: 18px !important;
        font-size: 21px;
    }

    .why-wrapper {
        padding: 45px 22px;
        border-radius: 28px;
        margin-top: 45px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .trust-card {
        padding: 25px 18px;
        border-radius: 16px;
    }

    .trust-card h4 {
        font-size: 18px;
    }

    .trust-card p {
        font-size: 13px;
    }

    .process-area {
        margin-top: 55px;
    }

    .cleaning-process-line {
        display: none;
    }

    .cleaning-process .col-lg-3 {
        margin-bottom: 30px;
    }

    .cleaning-step-circle {
        width: 60px;
        height: 60px;
        font-size: 23px;
        margin-bottom: 15px;
    }

    .cleaning-process h5 {
        font-size: 20px;
    }

    .cleaning-process p {
        font-size: 14px;
        max-width: 340px;
    }

    .gallery-section,
    .testimonial-section {
        padding: 60px 0;
    }

    .gallery-title,
    .testimonial-title {
        font-size: 38px;
    }

    .gallery-title {
        margin-bottom: 35px;
    }

    .gallery-card {
        height: 310px;
        border-radius: 16px;
    }

    .play-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .testimonial-desc {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .review-card {
        padding: 22px;
        border-radius: 18px;
    }

    .review-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .stars {
        font-size: 21px;
        margin-bottom: 14px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 15px;
        line-height: 1.65;
        margin: 22px auto 30px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }
}

/* -------------------- SMALL MOBILE 400-575px -------------------- */
@media (min-width: 400px) and (max-width: 575px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-section {
        padding: 60px 12px 50px;
    }

    .hero-title {
        font-size: 33px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-btns .btn {
        max-width: 100%;
        width: 100%;
    }

    .hero-strip p {
        font-size: 11px;
        line-height: 1.7;
    }

    .services-section {
        padding: 35px 0 50px !important;
    }

    .services-content h2 {
        font-size: 31px;
    }

    .services-content p {
        font-size: 14px;
    }

    .service-card {
        min-height: 175px !important;
        padding: 17px 11px !important;
        border-radius: 16px !important;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .service-card h4 {
        font-size: 14px;
    }

    .service-card p {
        display: none;
    }

    .learn-more {
        font-size: 12px;
    }

    .view-all-card {
        height: 175px !important;
        font-size: 19px;
    }

    .why-wrapper {
        padding: 38px 16px;
        border-radius: 22px;
    }

    .section-title {
        font-size: 31px;
    }

    .trust-card {
        padding: 22px 14px;
    }

    .trust-card h4 {
        font-size: 16px;
    }

    .trust-card p {
        font-size: 12px;
    }

    .gallery-section,
    .testimonial-section {
        padding: 55px 0;
    }

    .gallery-title,
    .testimonial-title {
        font-size: 32px;
    }

    .gallery-card {
        height: 275px;
        border-radius: 14px;
    }

    .review-card {
        padding: 19px;
        border-radius: 16px;
    }

    .review-card p {
        font-size: 13px;
    }

    .cta-section {
        padding: 55px 0;
    }

    .cta-content h2 {
        font-size: 29px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-btn {
        max-width: 100%;
        width: 100%;
        padding: 12px 20px;
    }
}

/* -------------------- XTRA MOBILE 399px and below -------------------- */
@media (max-width: 399px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-section {
        padding: 50px 10px 45px;
    }

    .hero-title {
        font-size: 27px;
        line-height: 1.18;
    }

    .hero-text {
        font-size: 13px;
        line-height: 1.65;
        margin: 16px auto;
    }

    .hero-btns {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 100%;
        padding: 10px 14px !important;
        font-size: 14px;
    }

    .hero-strip {
        padding: 8px 10px !important;
    }

    .hero-strip p {
        font-size: 10px !important;
        line-height: 1.65 !important;
    }

    .services-section {
        padding: 30px 0 45px !important;
    }

    .services-content {
        /*margin-bottom: 25px;*/
    }

    .services-content h2 {
        font-size: 27px;
    }

    .services-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-features {
        margin: 20px auto;
    }

    .service-features li {
        font-size: 13px;
        gap: 9px;
        margin-bottom: 10px;
    }

    .service-features li::before {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        font-size: 12px;
    }

    .services-section .row.g-4 {
        --bs-gutter-x: 8px;
        --bs-gutter-y: 8px;
    }

    .service-card {
        min-height: 150px !important;
        padding: 14px 9px !important;
        border-radius: 13px !important;
    }

    .service-icon {
        width: 31px;
        height: 31px;
        margin-bottom: 8px;
    }

    .service-card h4 {
        font-size: 13px;
        line-height: 1.2;
        margin-bottom: 6px;
    }

    .learn-more {
        font-size: 11px;
        gap: 4px;
    }

    .view-all-card {
        height: 150px !important;
        border-radius: 13px !important;
        font-size: 17px;
    }

    .why-wrapper {
        padding: 30px 12px;
        border-radius: 18px;
        margin-top: 30px;
    }

    .section-title {
        font-size: 27px;
    }

    .section-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .trust-card {
        padding: 18px 10px;
        border-radius: 13px;
    }

    .trust-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .trust-card h4 {
        font-size: 14px;
    }

    .trust-card p {
        font-size: 11px;
        line-height: 1.55;
    }

    .process-area {
        margin-top: 40px;
    }

    .cleaning-step-circle {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .cleaning-process h5 {
        font-size: 17px;
    }

    .cleaning-process p {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 6px;
    }

    .gallery-section,
    .testimonial-section {
        padding: 45px 0;
    }

    .gallery-title,
    .testimonial-title {
        font-size: 27px;
    }

    .gallery-title {
        margin-bottom: 25px;
    }

    .gallery-card {
        height: 235px;
        border-radius: 12px;
    }

    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .testimonial-desc {
        font-size: 13px;
        line-height: 1.6;
        margin: 14px auto 28px;
    }

    .review-card {
        padding: 16px;
        border-radius: 14px;
    }

    .review-card p {
        font-size: 12px;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .stars {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .review-user h5 {
        font-size: 15px;
    }

    .review-user span {
        font-size: 11px;
    }

    .cta-section {
        padding: 45px 0;
    }

    .cta-content h2 {
        font-size: 25px;
        line-height: 1.18;
    }

    .cta-content p {
        font-size: 13px;
        line-height: 1.6;
        margin: 18px auto 25px;
    }

    .cta-btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 11px 14px;
        font-size: 14px;
    }
}

/* -------------------- FLOATING BUTTON SAFETY -------------------- */
@media (max-width: 767px) {
    .whatsapp-float {
        left: 12px !important;
        bottom: 68px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 23px !important;
    }

    .scroll-top-btn {
        right: 12px !important;
        bottom: 68px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 21px !important;
    }
}

@media (max-width: 399px) {
    .whatsapp-float {
        left: 9px !important;
        bottom: 62px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
    }

    .scroll-top-btn {
        right: 9px !important;
        bottom: 62px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 19px !important;
    }
}

/* Prevent long text/URLs from creating horizontal scroll. */
.hero-text,
.services-content p,
.service-card p,
.section-desc,
.cleaning-process p,
.review-card p,
.testimonial-desc,
.cta-content p {
    overflow-wrap: anywhere;
    word-break: normal;
}

