/*
=========================================================
 THE GREEN WASH - UNIFIED STYLESHEET
 All page-specific styles are kept in this single file.
=========================================================
*/

/* ---------- Base / Reset ---------- */
:root {
    --green: #218c4b;
    --green-dark: #176b39;
    --green-light: #eaf7ee;
    --green-soft: #f5faf6;
    --text: #172019;
    --muted: #68736c;
    --border: #e4ebe5;
    --white: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #fff;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container, .gw-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--green); color: var(--green); background: #fff; }
.btn-outline:hover { background: var(--green-light); }
.btn-light { background: #f3f6f4; color: var(--text); }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-register { background: var(--green); color: #fff; }
.btn-large { min-height: 52px; padding: 12px 24px; }

/* ---------- Shared site header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}
.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
}
.logo-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    border-radius: 12px;
    font-size: 22px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.main-nav a {
    color: #303932;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    background: var(--green-light);
}
.mobile-menu-toggle { display: none; }
.mobile-menu-toggle button,
.gw-menu-button {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.mobile-menu-toggle button {
    width: 44px;
    height: 44px;
    padding: 9px;
}
.mobile-menu-toggle button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}


/* ---------- Responsive shared navigation ---------- */
@media (max-width: 850px) {
    .site-header .nav-container {
        min-height: 68px;
        position: relative;
    }

    .site-header .logo {
        font-size: 19px;
    }

    .site-header .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 10001;
    }

    .mobile-menu-toggle button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,.04);
    }

    .mobile-menu-toggle button span {
        width: 24px;
        height: 2px;
        margin: 3px 0;
        border-radius: 99px;
        transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-menu-toggle button.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle button.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle button.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-header .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 15px;
        right: 15px;
        z-index: 10000;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 10px;
        background: rgba(255,255,255,.99);
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 16px 40px rgba(0,0,0,.14);
    }

    .site-header .main-nav.open {
        display: flex;
    }

    .site-header .main-nav a {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 12px 14px;
        border-radius: 9px;
        font-size: 15px;
    }

    .site-header .main-nav a.btn {
        justify-content: center;
        margin-top: 3px;
    }

    body.nav-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .container,
    .gw-container {
        width: min(100% - 24px, 720px);
    }

    .site-header .main-nav {
        left: 12px;
        right: 12px;
    }

    .site-header .logo {
        font-size: 17px;
    }

    .site-header .logo-icon {
        width: 36px;
        height: 36px;
    }
}

/* ---------- Shared footer ---------- */
.footer {
    background: #102117;
    color: #dce8df;
    padding: 55px 0 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
}
.footer-logo { color: #fff; }
.footer p { color: #b8c8bd; line-height: 1.7; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-content: flex-start;
    justify-content: flex-end;
}
.footer-links a {
    color: #dce8df;
    text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #aebdb3;
    font-size: 13px;
}

/* ---------- Shared forms/cards ---------- */
.form-field, .filter-field, .contact-form-group { margin-bottom: 18px; }
.form-field label,
.filter-field label,
.contact-form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form input,
.auth-form select,
.auth-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7e0da;
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(33,140,75,.10);
}
.form-field textarea,
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.alert-error { background: #fff0f0; color: #9b2d2d; border: 1px solid #f0caca; }
.alert-success { background: #edf9f1; color: #176b39; border: 1px solid #cfe8d7; }
.card-heading { margin-top: 0; }
.order-card, .details-card, .profile-card, .payment-card, .summary-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(33,90,50,.06);
}

/* =====================================================
   Page-specific styles extracted from the uploaded PHP
   files. These were previously inside <style> blocks.
===================================================== */

/* ===== Source: contact.php ===== */



        /*
        |--------------------------------------------------------------------------
        | The Green Wash - Contact
        |--------------------------------------------------------------------------
        */

        .green-contact-hero {
            padding: 75px 0 65px;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0 0%,
                    #ffffff 60%,
                    #e8f5eb 100%
                );
            text-align: center;
        }


        .green-contact-hero h1 {
            font-size: clamp(
                40px,
                6vw,
                62px
            );
            line-height: 1.1;
            margin: 18px 0;
        }


        .green-contact-hero h1 span {
            color: #218c4b;
        }


        .green-contact-hero p {
            max-width: 700px;
            margin: 0 auto;
            color: #647067;
            font-size: 18px;
            line-height: 1.8;
        }


        /*
        |--------------------------------------------------------------------------
        | Contact Section
        |--------------------------------------------------------------------------
        */

        .contact-section {
            padding: 80px 0;
        }


        .contact-grid {
            display: grid;
            grid-template-columns:
                .9fr 1.1fr;
            gap: 35px;
            align-items: start;
        }


        /*
        |--------------------------------------------------------------------------
        | Contact Information
        |--------------------------------------------------------------------------
        */

        .contact-info-card {
            background: #218c4b;
            color: #fff;
            border-radius: 22px;
            padding: 35px;
        }


        .contact-info-card h2 {
            margin-top: 0;
            font-size: 30px;
        }


        .contact-info-card > p {
            line-height: 1.7;
            opacity: .9;
        }


        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid
                rgba(255,255,255,.18);
        }


        .contact-info-item:last-child {
            border-bottom: 0;
        }


        .contact-info-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.14);
            border-radius: 12px;
            font-size: 20px;
        }


        .contact-info-item strong {
            display: block;
            margin-bottom: 5px;
        }


        .contact-info-item span,
        .contact-info-item a {
            color: rgba(255,255,255,.88);
            line-height: 1.6;
            text-decoration: none;
        }


        /*
        |--------------------------------------------------------------------------
        | Contact Form
        |--------------------------------------------------------------------------
        */

        .contact-form-card {
            background: #fff;
            border: 1px solid #e7eee8;
            border-radius: 22px;
            padding: 35px;
            box-shadow:
                0 8px 30px
                rgba(33,90,50,.07);
        }


        .contact-form-card h2 {
            margin-top: 0;
            font-size: 30px;
        }


        .contact-form-card > p {
            color: #6d776f;
            line-height: 1.7;
        }


        .contact-form {
            margin-top: 25px;
        }


        .form-row {
            display: grid;
            grid-template-columns:
                1fr 1fr;
            gap: 18px;
        }


        .contact-form-group {
            margin-bottom: 20px;
        }


        .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }


        .contact-form-group input,
        .contact-form-group textarea {
            width: 100%;
            box-sizing: border-box;
            padding: 13px 15px;
            border: 1px solid #dce5de;
            border-radius: 9px;
            font-family: inherit;
            font-size: 14px;
            background: #fff;
        }


        .contact-form-group input:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: #218c4b;
        }


        .contact-form-group textarea {
            min-height: 145px;
            resize: vertical;
        }


        .contact-submit {
            width: 100%;
            min-height: 52px;
            border: 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 700;
        }


        /*
        |--------------------------------------------------------------------------
        | Quick Contact
        |--------------------------------------------------------------------------
        */

        .quick-contact {
            padding: 70px 0;
            background: #f5faf6;
        }


        .quick-contact-heading {
            max-width: 650px;
            margin: 0 auto 40px;
            text-align: center;
        }


        .quick-contact-heading h2 {
            font-size: 36px;
            margin: 12px 0;
        }


        .quick-contact-heading p {
            color: #6d776f;
            line-height: 1.7;
        }


        .quick-contact-grid {
            display: grid;
            grid-template-columns:
                repeat(3, 1fr);
            gap: 22px;
        }


        .quick-contact-card {
            background: #fff;
            border-radius: 17px;
            padding: 28px;
            text-align: center;
        }


        .quick-contact-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e3f4e7;
            border-radius: 15px;
            font-size: 26px;
        }


        .quick-contact-card h3 {
            margin-bottom: 8px;
        }


        .quick-contact-card p {
            color: #737c75;
            line-height: 1.6;
            margin: 0;
        }


        .quick-contact-card a {
            color: #218c4b;
            text-decoration: none;
            font-weight: 600;
        }


        /*
        |--------------------------------------------------------------------------
        | CTA
        |--------------------------------------------------------------------------
        */

        .contact-cta {
            padding: 75px 0;
        }


        .contact-cta-box {
            padding: 50px;
            background: #218c4b;
            color: #fff;
            border-radius: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }


        .contact-cta-box h2 {
            margin: 0 0 10px;
            font-size: 34px;
        }


        .contact-cta-box p {
            margin: 0;
            opacity: .9;
        }


        /*
        |--------------------------------------------------------------------------
        | Responsive
        |--------------------------------------------------------------------------
        */

        @media (max-width: 850px) {

            .contact-grid {
                grid-template-columns: 1fr;
            }


            .quick-contact-grid {
                grid-template-columns:
                    1fr;
            }

        }


        @media (max-width: 600px) {

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }


            .contact-info-card,
            .contact-form-card {
                padding: 25px;
            }


            .contact-cta-box {
                padding: 32px;
                flex-direction: column;
                align-items: flex-start;
            }


            .contact-cta-box h2 {
                font-size: 28px;
            }

        }

    

/* ===== Source: cookies.php ===== */



        .cookie-hero {
            padding: 70px 20px;
            text-align: center;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0,
                    #fff,
                    #e8f5eb
                );
        }

        .cookie-hero h1 {
            font-size: clamp(38px, 6vw, 58px);
            margin: 15px 0;
        }

        .cookie-hero h1 span {
            color: #218c4b;
        }

        .cookie-hero p {
            max-width: 700px;
            margin: auto;
            color: #68736c;
            line-height: 1.7;
        }

        .cookie-section {
            padding: 70px 0;
        }

        .cookie-container {
            max-width: 900px;
            margin: auto;
        }

        .cookie-card {
            margin-bottom: 20px;
            padding: 35px;
            background: #fff;
            border: 1px solid #e4ebe5;
            border-radius: 18px;
            box-shadow:
                0 8px 30px
                rgba(33,90,50,.05);
        }

        .cookie-card h2 {
            margin-top: 0;
            color: #218c4b;
        }

        .cookie-card p,
        .cookie-card li {
            color: #606b64;
            line-height: 1.8;
            font-size: 15px;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .cookie-table th,
        .cookie-table td {
            padding: 13px;
            border: 1px solid #e2e9e4;
            text-align: left;
            vertical-align: top;
        }

        .cookie-table th {
            background: #f2f8f4;
            color: #176b39;
        }

        @media(max-width:600px) {

            .cookie-card {
                padding: 25px 20px;
            }

            .cookie-table {
                display: block;
                overflow-x: auto;
            }

        }

    

/* ===== Source: how-it-works.php ===== */



        /*
        |--------------------------------------------------------------------------
        | The Green Wash - How It Works
        |--------------------------------------------------------------------------
        */

        .green-how-hero {
            padding: 75px 0 65px;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0 0%,
                    #ffffff 60%,
                    #e8f5eb 100%
                );
            text-align: center;
        }


        .green-how-hero h1 {
            font-size: clamp(
                40px,
                6vw,
                62px
            );
            line-height: 1.1;
            margin: 18px 0;
        }


        .green-how-hero h1 span {
            color: #218c4b;
        }


        .green-how-hero p {
            max-width: 700px;
            margin: 0 auto;
            color: #647067;
            font-size: 18px;
            line-height: 1.8;
        }


        /*
        |--------------------------------------------------------------------------
        | Steps
        |--------------------------------------------------------------------------
        */

        .how-steps-section {
            padding: 85px 0;
        }


        .how-heading {
            max-width: 700px;
            margin: 0 auto 55px;
            text-align: center;
        }


        .how-heading h2 {
            font-size: 36px;
            margin: 12px 0;
        }


        .how-heading p {
            color: #6d776f;
            line-height: 1.7;
        }


        .how-steps {
            max-width: 950px;
            margin: 0 auto;
            position: relative;
        }


        .how-step {
            display: grid;
            grid-template-columns: 90px 1fr;
            gap: 25px;
            position: relative;
            padding-bottom: 45px;
        }


        .how-step:last-child {
            padding-bottom: 0;
        }


        .how-step-number {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e3f4e7;
            color: #218c4b;
            border-radius: 50%;
            font-size: 20px;
            font-weight: 800;
            position: relative;
            z-index: 2;
        }


        /*
        |--------------------------------------------------------------------------
        | Connecting Line
        |--------------------------------------------------------------------------
        */

        .how-step:not(:last-child)::before {
            content: "";
            position: absolute;
            left: 34px;
            top: 70px;
            width: 2px;
            height: calc(100% - 45px);
            background: #d8eadc;
        }


        .how-step-content {
            background: #fff;
            border: 1px solid #e7eee8;
            border-radius: 18px;
            padding: 28px 30px;
            box-shadow:
                0 7px 25px
                rgba(33, 90, 50, .06);
        }


        .how-step-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }


        .how-step-content h3 {
            font-size: 23px;
            margin: 0 0 10px;
        }


        .how-step-content p {
            color: #6d776f;
            line-height: 1.75;
            margin: 0;
        }


        /*
        |--------------------------------------------------------------------------
        | Extra Information
        |--------------------------------------------------------------------------
        */

        .how-benefits-section {
            padding: 80px 0;
            background: #f5faf6;
        }


        .how-benefits-grid {
            display: grid;
            grid-template-columns:
                repeat(3, 1fr);
            gap: 25px;
        }


        .how-benefit {
            background: #fff;
            border-radius: 18px;
            padding: 30px;
            text-align: center;
        }


        .how-benefit-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e3f4e7;
            border-radius: 15px;
            font-size: 27px;
        }


        .how-benefit h3 {
            margin-bottom: 10px;
        }


        .how-benefit p {
            color: #727a74;
            line-height: 1.65;
            margin: 0;
        }


        /*
        |--------------------------------------------------------------------------
        | FAQ
        |--------------------------------------------------------------------------
        */

        .how-faq-section {
            padding: 80px 0;
        }


        .how-faq {
            max-width: 800px;
            margin: 0 auto;
        }


        .faq-item {
            padding: 22px 0;
            border-bottom: 1px solid #e5ebe6;
        }


        .faq-item:first-child {
            border-top: 1px solid #e5ebe6;
        }


        .faq-item h3 {
            font-size: 18px;
            margin: 0 0 8px;
        }


        .faq-item p {
            color: #6d776f;
            line-height: 1.7;
            margin: 0;
        }


        /*
        |--------------------------------------------------------------------------
        | CTA
        |--------------------------------------------------------------------------
        */

        .how-cta {
            padding: 75px 0;
        }


        .how-cta-box {
            padding: 50px;
            background: #218c4b;
            color: #fff;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }


        .how-cta-box h2 {
            margin: 0 0 10px;
            font-size: 34px;
        }


        .how-cta-box p {
            margin: 0;
            opacity: .9;
        }


        /*
        |--------------------------------------------------------------------------
        | Responsive
        |--------------------------------------------------------------------------
        */

        @media (max-width: 750px) {

            .how-step {
                grid-template-columns: 65px 1fr;
                gap: 15px;
            }


            .how-step-number {
                width: 55px;
                height: 55px;
                font-size: 16px;
            }


            .how-step:not(:last-child)::before {
                left: 26px;
                top: 55px;
            }


            .how-benefits-grid {
                grid-template-columns: 1fr;
            }


            .how-cta-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 32px;
            }


            .how-cta-box h2 {
                font-size: 28px;
            }

        }


        @media (max-width: 500px) {

            .how-step {
                grid-template-columns: 1fr;
            }


            .how-step-number {
                margin-bottom: 5px;
            }


            .how-step:not(:last-child)::before {
                display: none;
            }

        }

    

/* ===== Source: index(20260820-204333).php ===== */



        /* =====================================================
           THE GREEN WASH HOMEPAGE
        ===================================================== */

        :root {
            --green: #218c4b;
            --green-dark: #176b39;
            --green-light: #eaf7ee;
            --green-soft: #f5faf6;
            --text: #172019;
            --muted: #68736c;
            --border: #e4ebe5;
            --white: #ffffff;
        }


        * {
            box-sizing: border-box;
        }


        body {
            margin: 0;
            color: var(--text);
            background: #fff;
        }


        .gw-container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }


        /* =====================================================
           HEADER
        ===================================================== */

        .gw-header {
            position: sticky;
            top: 0;
            z-index: 9999;
            background: rgba(255,255,255,.96);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(12px);
        }


        .gw-header-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }


        .gw-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
            text-decoration: none;
            font-size: 22px;
            font-weight: 800;
            white-space: nowrap;
        }


        .gw-logo-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 12px;
            font-size: 22px;
        }


        .gw-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }


        .gw-nav a {
            color: #303932;
            text-decoration: none;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
        }


        .gw-nav a:hover,
        .gw-nav a.active {
            color: var(--green);
            background: var(--green-light);
        }


        .gw-nav .gw-nav-button {
            color: #fff;
            background: var(--green);
            padding: 11px 17px;
        }


        .gw-nav .gw-nav-button:hover {
            color: #fff;
            background: var(--green-dark);
        }


        /* Mobile button */

        .gw-menu-button {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            background: #fff;
            border-radius: 10px;
            cursor: pointer;
            padding: 8px;
        }


        .gw-menu-button span {
            display: block;
            width: 24px;
            height: 2px;
            margin: 5px auto;
            background: #222;
            border-radius: 5px;
            transition: .25s;
        }


        .gw-menu-button.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }


        .gw-menu-button.open span:nth-child(2) {
            opacity: 0;
        }


        .gw-menu-button.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }


        /* =====================================================
           HERO
        ===================================================== */

        .gw-hero {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0 0%,
                    #ffffff 52%,
                    #e6f5ea 100%
                );
        }


        .gw-hero-grid {
            min-height: 620px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }


        .gw-hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 30px 80px 0;
        }


        .gw-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px;
            background: #dff2e5;
            color: var(--green-dark);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
        }


        .gw-hero h1 {
            margin: 20px 0;
            font-size: clamp(42px, 5vw, 70px);
            line-height: 1.04;
            letter-spacing: -2px;
        }


        .gw-hero h1 span {
            color: var(--green);
        }


        .gw-hero-text {
            max-width: 620px;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.8;
        }


        .gw-buttons {
            display: flex;
            gap: 13px;
            flex-wrap: wrap;
            margin-top: 30px;
        }


        .gw-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            padding: 0 22px;
            border-radius: 9px;
            text-decoration: none;
            font-weight: 700;
            transition: .2s;
        }


        .gw-button-primary {
            color: #fff;
            background: var(--green);
        }


        .gw-button-primary:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
        }


        .gw-button-light {
            color: var(--text);
            background: #fff;
            border: 1px solid var(--border);
        }


        .gw-button-light:hover {
            border-color: var(--green);
            color: var(--green);
        }


        .gw-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }


        .gw-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #536057;
            font-size: 13px;
            font-weight: 600;
        }


        .gw-check {
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #dff2e5;
            color: var(--green);
            border-radius: 50%;
        }


        /* Hero image */

        .gw-hero-photo {
            height: 620px;
            position: relative;
        }


        .gw-hero-photo::before {
            content: "";
            position: absolute;
            left: -80px;
            top: 0;
            bottom: 0;
            width: 170px;
            z-index: 2;
            background:
                linear-gradient(
                    90deg,
                    #edf8f0,
                    transparent
                );
        }


        .gw-hero-photo img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }


        .gw-photo-card {
            position: absolute;
            z-index: 4;
            left: -35px;
            bottom: 40px;
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 15px 18px;
            background: #fff;
            border-radius: 14px;
            box-shadow:
                0 15px 40px
                rgba(0,0,0,.13);
        }


        .gw-photo-card-icon {
            width: 43px;
            height: 43px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 11px;
            font-size: 21px;
        }


        .gw-photo-card strong {
            display: block;
            margin-bottom: 3px;
        }


        .gw-photo-card small {
            color: var(--muted);
        }


        /* =====================================================
           WELCOME / STATS
        ===================================================== */

        .gw-welcome {
            padding: 25px 0;
            background: var(--green-soft);
            border-bottom: 1px solid #e2eee4;
        }


        .gw-welcome-grid {
            display: grid;
            grid-template-columns: 1.3fr repeat(3, 1fr);
            align-items: center;
            gap: 25px;
        }


        .gw-welcome-title {
            display: flex;
            align-items: center;
            gap: 15px;
        }


        .gw-welcome-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 50%;
            font-size: 25px;
        }


        .gw-welcome-title h3 {
            margin: 0 0 5px;
        }


        .gw-welcome-title p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
        }


        .gw-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 20px;
            border-left: 1px solid #dce8df;
        }


        .gw-stat-icon {
            font-size: 25px;
        }


        .gw-stat strong {
            display: block;
            color: var(--green-dark);
            font-size: 20px;
        }


        .gw-stat span {
            color: var(--muted);
            font-size: 12px;
        }


        /* =====================================================
           SECTION HEADINGS
        ===================================================== */

        .gw-section {
            padding: 85px 0;
        }


        .gw-heading {
            max-width: 700px;
            margin: 0 auto 45px;
            text-align: center;
        }


        .gw-heading-label {
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        .gw-heading h2 {
            margin: 10px 0;
            font-size: clamp(30px, 4vw, 42px);
            line-height: 1.15;
        }


        .gw-heading p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }


        /* =====================================================
           SERVICES WITH PHOTOS
        ===================================================== */

        .gw-services {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }


        .gw-service-card {
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 17px;
            box-shadow:
                0 8px 25px
                rgba(30,80,45,.06);
            transition: .25s;
        }


        .gw-service-card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 16px 40px
                rgba(30,80,45,.12);
        }


        .gw-service-photo {
            height: 190px;
            overflow: hidden;
        }


        .gw-service-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }


        .gw-service-card:hover
        .gw-service-photo img {
            transform: scale(1.05);
        }


        .gw-service-body {
            padding: 23px;
        }


        .gw-service-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -45px;
            margin-bottom: 17px;
            position: relative;
            background: var(--green);
            color: #fff;
            border: 4px solid #fff;
            border-radius: 50%;
            font-size: 18px;
        }


        .gw-service-body h3 {
            margin: 0 0 9px;
            font-size: 20px;
        }


        .gw-service-body p {
            min-height: 65px;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }


        .gw-service-link {
            display: inline-block;
            margin-top: 17px;
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
        }


        /* =====================================================
           HOW IT WORKS
        ===================================================== */

        .gw-how {
            background: var(--green-soft);
        }


        .gw-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }


        .gw-step {
            position: relative;
            text-align: center;
            padding: 10px;
        }


        .gw-step:not(:last-child)::after {
            content: "→";
            position: absolute;
            right: -13px;
            top: 40px;
            color: var(--green);
            font-size: 25px;
            font-weight: 800;
        }


        .gw-step-circle {
            width: 82px;
            height: 82px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: var(--green);
            border: 2px solid #dcecdf;
            border-radius: 50%;
            font-size: 28px;
        }


        .gw-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 23px;
            height: 23px;
            margin-left: -15px;
            margin-bottom: 4px;
            background: var(--green);
            color: #fff;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 800;
        }


        .gw-step h3 {
            margin: 0 0 8px;
            font-size: 17px;
        }


        .gw-step p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }


        /* =====================================================
           PHOTO FEATURE
        ===================================================== */

        .gw-feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 480px;
            overflow: hidden;
            background: #173d25;
        }


        .gw-feature-photo {
            min-height: 480px;
        }


        .gw-feature-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .gw-feature-content {
            display: flex;
            align-items: center;
            padding: 60px;
            color: #fff;
        }


        .gw-feature-content-inner {
            max-width: 510px;
        }


        .gw-feature-content .gw-heading-label {
            color: #b7e8c6;
        }


        .gw-feature-content h2 {
            margin: 12px 0 18px;
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.15;
        }


        .gw-feature-content p {
            color: rgba(255,255,255,.82);
            line-height: 1.8;
        }


        .gw-feature-list {
            list-style: none;
            margin: 25px 0 0;
            padding: 0;
        }


        .gw-feature-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            color: rgba(255,255,255,.92);
        }


        .gw-feature-list span {
            color: #a9e6bb;
        }


        /* =====================================================
           CTA PHOTO
        ===================================================== */

        .gw-cta {
            padding: 80px 0;
        }


        .gw-cta-box {
            position: relative;
            min-height: 330px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 55px;
            border-radius: 25px;
            color: #fff;
            background:
                linear-gradient(
                    90deg,
                    rgba(14,55,28,.96),
                    rgba(14,55,28,.68)
                ),
                url("images/laundry-hero.jpg")
                center/cover;
        }


        .gw-cta-content {
            max-width: 620px;
        }


        .gw-cta h2 {
            margin: 0 0 14px;
            font-size: clamp(30px, 4vw, 44px);
        }


        .gw-cta p {
            margin: 0;
            color: rgba(255,255,255,.85);
            line-height: 1.7;
        }


        .gw-cta .gw-button {
            margin-top: 25px;
            background: #fff;
            color: var(--green-dark);
        }


        /* =====================================================
           FOOTER
        ===================================================== */

        .gw-footer {
            padding: 60px 0 20px;
            background: #0e4022;
            color: #fff;
        }


        .gw-footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
        }


        .gw-footer .gw-logo {
            color: #fff;
            margin-bottom: 15px;
        }


        .gw-footer-description {
            max-width: 330px;
            color: rgba(255,255,255,.72);
            line-height: 1.7;
            font-size: 14px;
        }


        .gw-footer h4 {
            margin: 0 0 18px;
            font-size: 15px;
        }


        .gw-footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }


        .gw-footer-links a {
            color: rgba(255,255,255,.72);
            text-decoration: none;
            font-size: 14px;
        }


        .gw-footer-links a:hover {
            color: #fff;
        }


        .gw-footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }


        .gw-footer-contact div {
            display: flex;
            gap: 10px;
            color: rgba(255,255,255,.75);
            font-size: 14px;
        }


        .gw-footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 45px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.6);
            font-size: 12px;
        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 1050px) {

            .gw-nav a {
                padding: 9px 7px;
                font-size: 13px;
            }


            .gw-services {
                grid-template-columns: repeat(2, 1fr);
            }


            .gw-welcome-grid {
                grid-template-columns: 1fr repeat(3, .8fr);
            }

        }


        @media (max-width: 850px) {


            .gw-container {
                width: min(100% - 30px, 720px);
            }


            .gw-menu-button {
                display: block;
            }


            .gw-nav {
                position: absolute;
                left: 15px;
                right: 15px;
                top: calc(100% + 8px);
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 12px;
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 14px;
                box-shadow:
                    0 15px 40px
                    rgba(0,0,0,.12);
            }


            .gw-nav.open {
                display: flex;
            }


            .gw-nav a {
                width: 100%;
                padding: 13px 14px;
            }


            .gw-nav .gw-nav-button {
                text-align: center;
                margin-top: 5px;
            }


            .gw-hero-grid {
                grid-template-columns: 1fr;
            }


            .gw-hero-content {
                padding: 60px 0 40px;
            }


            .gw-hero-photo {
                height: 430px;
            }


            .gw-hero-photo::before {
                display: none;
            }


            .gw-photo-card {
                left: 20px;
                bottom: 20px;
            }


            .gw-welcome-grid {
                grid-template-columns: 1fr 1fr;
            }


            .gw-welcome-title {
                grid-column: 1 / -1;
            }


            .gw-stat {
                border-left: 0;
                padding-left: 0;
            }


            .gw-steps {
                grid-template-columns: 1fr 1fr;
            }


            .gw-step:not(:last-child)::after {
                display: none;
            }


            .gw-feature {
                grid-template-columns: 1fr;
            }


            .gw-feature-photo {
                min-height: 350px;
            }


            .gw-feature-content {
                padding: 45px 30px;
            }


            .gw-footer-grid {
                grid-template-columns: 1fr 1fr;
            }

        }


        @media (max-width: 600px) {

            .gw-hero h1 {
                font-size: 43px;
                letter-spacing: -1.5px;
            }


            .gw-hero-text {
                font-size: 16px;
            }


            .gw-trust {
                flex-direction: column;
                gap: 10px;
            }


            .gw-welcome-grid {
                grid-template-columns: 1fr 1fr;
            }


            .gw-services {
                grid-template-columns: 1fr;
            }


            .gw-steps {
                grid-template-columns: 1fr;
                gap: 35px;
            }


            .gw-step-circle {
                width: 72px;
                height: 72px;
            }


            .gw-section {
                padding: 65px 0;
            }


            .gw-cta-box {
                min-height: 420px;
                padding: 35px 25px;
                align-items: flex-end;
            }


            .gw-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }


            .gw-footer-bottom {
                flex-direction: column;
            }

        }

    

/* ===== Source: my-orders(2).php ===== */



        /*
        |--------------------------------------------------------------------------
        | Orders Page
        |--------------------------------------------------------------------------
        */

        .orders-page {
            padding: 55px 0 80px;
        }


        .orders-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 25px;
            margin-bottom: 30px;
        }


        .orders-header h1 {
            margin-bottom: 8px;
        }


        .orders-header p {
            margin: 0;
            color: #777;
        }


        .orders-header-actions {
            flex-shrink: 0;
        }


        /*
        |--------------------------------------------------------------------------
        | Statistics
        |--------------------------------------------------------------------------
        */

        .orders-stats {
            display: grid;
            grid-template-columns:
                repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }


        .orders-stat {
            background: #fff;
            border-radius: 14px;
            padding: 20px;
            box-shadow:
                0 5px 20px
                rgba(0,0,0,.05);
        }


        .orders-stat span {
            display: block;
            color: #777;
            font-size: 13px;
        }


        .orders-stat strong {
            display: block;
            margin-top: 5px;
            font-size: 27px;
        }


        /*
        |--------------------------------------------------------------------------
        | Filters
        |--------------------------------------------------------------------------
        */

        .orders-filters {
            background: #fff;
            border-radius: 14px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow:
                0 5px 20px
                rgba(0,0,0,.05);
        }


        .orders-filter-form {
            display: grid;
            grid-template-columns:
                1fr 1fr auto;
            gap: 15px;
            align-items: end;
        }


        .filter-field label {
            display: block;
            margin-bottom: 7px;
            font-weight: 600;
            font-size: 14px;
        }


        .filter-field select {
            width: 100%;
            box-sizing: border-box;
        }


        .filter-actions {
            display: flex;
            gap: 10px;
        }


        /*
        |--------------------------------------------------------------------------
        | Order Cards
        |--------------------------------------------------------------------------
        */

        .orders-list {
            display: grid;
            gap: 18px;
        }


        .customer-order-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow:
                0 5px 20px
                rgba(0,0,0,.05);
        }


        .order-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            padding-bottom: 18px;
            border-bottom: 1px solid #eee;
        }


        .order-number {
            font-size: 19px;
            font-weight: 700;
        }


        .order-created {
            display: block;
            color: #777;
            font-size: 13px;
            margin-top: 4px;
        }


        .order-statuses {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 8px;
        }


        /*
        |--------------------------------------------------------------------------
        | Payment Status
        |--------------------------------------------------------------------------
        */

        .payment-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }


        .payment-status::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }


        .payment-paid {
            background: #e8f7ee;
            color: #16733a;
        }


        .payment-paid::before {
            background: #20a052;
        }


        .payment-pending {
            background: #fff5dc;
            color: #8a6500;
        }


        .payment-pending::before {
            background: #d99b00;
        }


        .payment-failed {
            background: #fdecec;
            color: #b42318;
        }


        .payment-failed::before {
            background: #d92d20;
        }


        .payment-cancelled {
            background: #f1f1f1;
            color: #666;
        }


        .payment-cancelled::before {
            background: #777;
        }


        .payment-refunded {
            background: #eeeafd;
            color: #6048a8;
        }


        .payment-refunded::before {
            background: #7655c5;
        }


        /*
        |--------------------------------------------------------------------------
        | Order Details
        |--------------------------------------------------------------------------
        */

        .order-card-body {
            display: grid;
            grid-template-columns:
                repeat(4, 1fr);
            gap: 15px;
            padding: 20px 0;
        }


        .order-info-item {
            background: #f7f8f9;
            border-radius: 10px;
            padding: 14px;
        }


        .order-info-item span {
            display: block;
            color: #777;
            font-size: 12px;
            margin-bottom: 5px;
        }


        .order-info-item strong {
            display: block;
        }


        .order-payment {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 16px;
            background: #f7f8f9;
            border-radius: 10px;
            margin-bottom: 20px;
        }


        .order-payment-left span {
            display: block;
            color: #777;
            font-size: 12px;
        }


        .order-payment-left strong {
            display: block;
            margin-top: 4px;
        }


        .order-payment-right {
            text-align: right;
        }


        .order-payment-price {
            display: block;
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 5px;
        }


        .payment-method {
            color: #777;
            font-size: 12px;
        }


        /*
        |--------------------------------------------------------------------------
        | Card Footer
        |--------------------------------------------------------------------------
        */

        .order-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding-top: 18px;
            border-top: 1px solid #eee;
        }


        .pickup-info {
            color: #666;
            font-size: 14px;
        }


        .pickup-info strong {
            color: #222;
        }


        .order-actions {
            display: flex;
            gap: 10px;
        }


        /*
        |--------------------------------------------------------------------------
        | Pay Button
        |--------------------------------------------------------------------------
        */

        .pay-now-btn {
            background: #1b7f4a;
            color: #fff;
            border: 0;
        }


        .pay-now-btn:hover {
            opacity: .9;
        }


        /*
        |--------------------------------------------------------------------------
        | Empty State
        |--------------------------------------------------------------------------
        */

        .orders-empty {
            text-align: center;
            padding: 70px 25px;
            background: #fff;
            border-radius: 16px;
            box-shadow:
                0 5px 20px
                rgba(0,0,0,.05);
        }


        .orders-empty-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }


        .orders-empty h2 {
            margin-bottom: 8px;
        }


        .orders-empty p {
            color: #777;
            margin-bottom: 25px;
        }


        /*
        |--------------------------------------------------------------------------
        | Error
        |--------------------------------------------------------------------------
        */

        .orders-error {
            padding: 20px;
            background: #fdecec;
            color: #a1261c;
            border-radius: 12px;
            margin-bottom: 25px;
        }


        /*
        |--------------------------------------------------------------------------
        | Responsive
        |--------------------------------------------------------------------------
        */

        @media (
            max-width: 900px
        ) {

            .orders-stats {
                grid-template-columns:
                    repeat(2, 1fr);
            }


            .orders-filter-form {
                grid-template-columns: 1fr;
            }


            .order-card-body {
                grid-template-columns:
                    repeat(2, 1fr);
            }

        }


        @media (
            max-width: 650px
        ) {

            .orders-header {
                flex-direction: column;
                align-items: flex-start;
            }


            .orders-stats {
                grid-template-columns: 1fr;
            }


            .order-card-header {
                flex-direction: column;
            }


            .order-statuses {
                justify-content: flex-start;
            }


            .order-card-body {
                grid-template-columns: 1fr;
            }


            .order-payment {
                flex-direction: column;
                align-items: flex-start;
            }


            .order-payment-right {
                text-align: left;
            }


            .order-card-footer {
                flex-direction: column;
                align-items: flex-start;
            }


            .order-actions {
                width: 100%;
                flex-direction: column;
            }


            .order-actions .btn {
                width: 100%;
                text-align: center;
                box-sizing: border-box;
            }

        }

    

/* ===== Source: order-details(4).php ===== */



        /*
        |--------------------------------------------------------------------------
        | Payment Card
        |--------------------------------------------------------------------------
        */

        .payment-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow:
                0 5px 20px
                rgba(0,0,0,.05);
        }


        .payment-card .card-heading {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }


        .payment-card .card-heading h2 {
            margin-bottom: 5px;
        }


        .payment-card .card-heading p {
            margin: 0;
            color: #777;
        }


        /*
        |--------------------------------------------------------------------------
        | Payment Status
        |--------------------------------------------------------------------------
        */

        .payment-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 13px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }


        .payment-status::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }


        .payment-paid {
            background: #e8f7ee;
            color: #16733a;
        }


        .payment-paid::before {
            background: #20a052;
        }


        .payment-pending {
            background: #fff5dc;
            color: #8a6500;
        }


        .payment-pending::before {
            background: #d99b00;
        }


        .payment-failed {
            background: #fdecec;
            color: #b42318;
        }


        .payment-failed::before {
            background: #d92d20;
        }


        .payment-cancelled {
            background: #f1f1f1;
            color: #666;
        }


        .payment-cancelled::before {
            background: #777;
        }


        .payment-refunded {
            background: #eeeafd;
            color: #6048a8;
        }


        .payment-refunded::before {
            background: #7655c5;
        }


        /*
        |--------------------------------------------------------------------------
        | Payment Grid
        |--------------------------------------------------------------------------
        */

        .payment-grid {
            display: grid;
            grid-template-columns:
                repeat(4, 1fr);
            gap: 15px;
            margin-top: 22px;
        }


        .payment-item {
            background: #f7f8f9;
            border-radius: 10px;
            padding: 16px;
        }


        .payment-item span {
            display: block;
            color: #777;
            font-size: 12px;
            margin-bottom: 6px;
        }


        .payment-item strong {
            display: block;
            word-break: break-word;
        }


        .payment-amount {
            font-size: 20px;
        }


        .transaction-id {
            font-size: 12px;
            line-height: 1.5;
            word-break: break-all;
        }


        /*
        |--------------------------------------------------------------------------
        | Payment Actions
        |--------------------------------------------------------------------------
        */

        .payment-action {
            margin-top: 20px;
            padding: 18px;
            background: #fff8e6;
            border-radius: 10px;

            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }


        .payment-action p {
            margin: 0;
            color: #6c5600;
        }


        .payment-success {
            margin-top: 20px;
            padding: 15px 18px;
            background: #e8f7ee;
            color: #16733a;
            border-radius: 10px;
        }


        .payment-failed-message {
            margin-top: 20px;
            padding: 15px 18px;
            background: #fdecec;
            color: #b42318;
            border-radius: 10px;
        }


        /*
        |--------------------------------------------------------------------------
        | Responsive Payment
        |--------------------------------------------------------------------------
        */

        @media (
            max-width: 900px
        ) {

            .payment-grid {
                grid-template-columns:
                    repeat(2, 1fr);
            }

        }


        @media (
            max-width: 600px
        ) {

            .payment-card .card-heading {
                flex-direction: column;
            }


            .payment-grid {
                grid-template-columns: 1fr;
            }


            .payment-action {
                flex-direction: column;
                align-items: flex-start;
            }

        }

    

/* ===== Source: payment.php ===== */



        /*
        |--------------------------------------------------------------------------
        | Payment Page
        |--------------------------------------------------------------------------
        */

        .payment-page {
            padding: 55px 0 80px;
        }


        .payment-container {
            max-width: 900px;
            margin: 0 auto;
        }


        .payment-heading {
            text-align: center;
            margin-bottom: 35px;
        }


        .payment-heading h1 {
            margin-bottom: 8px;
        }


        .payment-heading p {
            color: #777;
            margin: 0;
        }


        /*
        |--------------------------------------------------------------------------
        | Error
        |--------------------------------------------------------------------------
        */

        .payment-error {
            padding: 16px 18px;
            background: #fdecec;
            color: #a1261c;
            border-radius: 10px;
            margin-bottom: 25px;
        }


        /*
        |--------------------------------------------------------------------------
        | Order Summary
        |--------------------------------------------------------------------------
        */

        .payment-layout {
            display: grid;
            grid-template-columns:
                1fr 1.2fr;
            gap: 25px;
            align-items: start;
        }


        .payment-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            box-shadow:
                0 5px 20px
                rgba(0,0,0,.05);
        }


        .payment-card h2 {
            margin-top: 0;
            margin-bottom: 20px;
        }


        .order-summary-row {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 13px 0;
            border-bottom: 1px solid #eee;
        }


        .order-summary-row:last-child {
            border-bottom: 0;
        }


        .order-summary-row span {
            color: #777;
        }


        .order-summary-row strong {
            text-align: right;
        }


        .total-row {
            margin-top: 8px;
            padding-top: 18px;
            border-top: 2px solid #eee;
            border-bottom: 0;
        }


        .total-row span {
            color: #222;
            font-weight: 700;
        }


        .total-row strong {
            font-size: 25px;
        }


        /*
        |--------------------------------------------------------------------------
        | Payment Methods
        |--------------------------------------------------------------------------
        */

        .payment-methods {
            display: grid;
            gap: 15px;
        }


        .payment-method-option {
            position: relative;
        }


        .payment-method-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }


        .payment-method-label {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            cursor: pointer;
            transition: .2s ease;
            background: #fff;
        }


        .payment-method-label:hover {
            border-color: #aaa;
        }


        .payment-method-option input:checked
        + .payment-method-label {
            border-color: #1b7f4a;
            background: #f1faf5;
        }


        .payment-method-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f4f4f4;
            font-size: 24px;
            flex-shrink: 0;
        }


        .payment-method-info {
            flex: 1;
        }


        .payment-method-info strong {
            display: block;
            margin-bottom: 4px;
        }


        .payment-method-info span {
            display: block;
            color: #777;
            font-size: 13px;
        }


        .payment-method-check {
            width: 22px;
            height: 22px;
            border: 2px solid #ccc;
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }


        .payment-method-option input:checked
        + .payment-method-label
        .payment-method-check {
            border-color: #1b7f4a;
        }


        .payment-method-option input:checked
        + .payment-method-label
        .payment-method-check::after {
            content: "";
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #1b7f4a;
            top: 4px;
            left: 4px;
        }


        /*
        |--------------------------------------------------------------------------
        | Pay Button
        |--------------------------------------------------------------------------
        */

        .pay-button {
            width: 100%;
            margin-top: 20px;
            min-height: 52px;
            font-size: 16px;
            font-weight: 700;
            border: 0;
            cursor: pointer;
        }


        .pay-button:disabled {
            opacity: .6;
            cursor: not-allowed;
        }


        .secure-payment {
            text-align: center;
            margin-top: 15px;
            color: #777;
            font-size: 12px;
        }


        /*
        |--------------------------------------------------------------------------
        | Back
        |--------------------------------------------------------------------------
        */

        .payment-back {
            text-align: center;
            margin-top: 25px;
        }


        /*
        |--------------------------------------------------------------------------
        | Responsive
        |--------------------------------------------------------------------------
        */

        @media (
            max-width: 750px
        ) {

            .payment-layout {
                grid-template-columns: 1fr;
            }

        }

    

/* ===== Source: payment-success(1).php ===== */



        .payment-result {
            max-width: 650px;
            margin: 80px auto;
            text-align: center;
        }


        .payment-result-card {
            background: #fff;
            padding: 40px;
            border-radius: 18px;
            box-shadow:
                0 10px 35px
                rgba(0,0,0,.08);
        }


        .payment-success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: #e8f8ee;
            color: #159447;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }


        .payment-error-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: #fdecec;
            color: #b42318;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }


        .payment-pending {
            color: #996c00;
            background: #fff7df;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
        }


        .payment-error {
            color: #a1261c;
            background: #fdecec;
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
        }


        .payment-details {
            margin: 25px 0;
            text-align: left;
            background: #f7f8f9;
            border-radius: 12px;
            padding: 18px;
        }


        .payment-detail-row {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 10px 0;
            border-bottom: 1px solid #e5e5e5;
        }


        .payment-detail-row:last-child {
            border-bottom: 0;
        }


        .payment-detail-row span {
            color: #777;
        }


        .payment-detail-row strong {
            text-align: right;
        }


        .success-actions {
            margin-top: 25px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }


        @media (
            max-width: 600px
        ) {

            .payment-result {
                margin: 40px auto;
            }


            .payment-result-card {
                padding: 25px;
            }


            .payment-detail-row {
                flex-direction: column;
                gap: 3px;
            }


            .payment-detail-row strong {
                text-align: left;
            }

        }

    

/* ===== Source: privacy-policy.php ===== */



        .legal-hero {
            padding: 70px 20px;
            text-align: center;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0,
                    #ffffff,
                    #e8f5eb
                );
        }

        .legal-hero h1 {
            margin: 15px 0;
            font-size: clamp(38px, 6vw, 58px);
        }

        .legal-hero h1 span {
            color: #218c4b;
        }

        .legal-hero p {
            max-width: 700px;
            margin: auto;
            color: #68736c;
            line-height: 1.7;
        }

        .legal-section {
            padding: 70px 0;
        }

        .legal-container {
            max-width: 900px;
            margin: auto;
        }

        .legal-card {
            background: #fff;
            border: 1px solid #e5ece7;
            border-radius: 18px;
            padding: 35px;
            margin-bottom: 20px;
            box-shadow:
                0 8px 30px
                rgba(33,90,50,.05);
        }

        .legal-card h2 {
            margin-top: 0;
            color: #218c4b;
            font-size: 25px;
        }

        .legal-card h3 {
            margin-top: 25px;
            font-size: 18px;
        }

        .legal-card p,
        .legal-card li {
            color: #606b64;
            line-height: 1.8;
            font-size: 15px;
        }

        .legal-card ul {
            padding-left: 22px;
        }

        .legal-contact {
            background: #f3faf5;
            border-left: 4px solid #218c4b;
            padding: 20px;
            border-radius: 8px;
        }

        .legal-contact strong {
            color: #176b39;
        }

        @media(max-width:600px) {

            .legal-section {
                padding: 45px 0;
            }

            .legal-card {
                padding: 25px 20px;
            }

        }

    

/* ===== Source: services(1).php ===== */



        /* =====================================================
           THE GREEN WASH SERVICES PAGE
        ===================================================== */

        .gw-services-page {
            --green: #218c4b;
            --green-dark: #176b39;
            --green-light: #e8f6ec;
            --green-soft: #f5faf6;
            --text: #172019;
            --muted: #69746d;
            --border: #e3ebe5;
        }


        /* =====================================================
           HERO
        ===================================================== */

        .gw-services-hero {
            position: relative;
            overflow: hidden;
            padding: 90px 0;
            background:
                linear-gradient(
                    135deg,
                    #eaf7ee 0%,
                    #ffffff 55%,
                    #e4f4e9 100%
                );
        }


        .gw-services-hero-grid {
            display: grid;
            grid-template-columns: 1fr .9fr;
            gap: 60px;
            align-items: center;
        }


        .gw-services-hero-content h1 {
            margin: 18px 0;
            font-size: clamp(
                42px,
                6vw,
                68px
            );
            line-height: 1.05;
            letter-spacing: -2px;
        }


        .gw-services-hero-content h1 span {
            color: var(--green);
        }


        .gw-services-hero-content p {
            max-width: 650px;
            margin: 0;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.8;
        }


        .gw-services-hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
            margin-top: 30px;
        }


        .gw-services-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            padding: 0 22px;
            border-radius: 9px;
            text-decoration: none;
            font-weight: 700;
        }


        .gw-services-button-primary {
            color: #fff;
            background: var(--green);
        }


        .gw-services-button-primary:hover {
            background: var(--green-dark);
        }


        .gw-services-button-light {
            color: var(--text);
            background: #fff;
            border: 1px solid var(--border);
        }


        .gw-services-hero-photo {
            height: 420px;
            overflow: hidden;
            border-radius: 25px;
            box-shadow:
                0 20px 55px
                rgba(32,90,50,.15);
        }


        .gw-services-hero-photo img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }


        /* =====================================================
           QUICK BENEFITS
        ===================================================== */

        .gw-service-trust {
            padding: 25px 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
        }


        .gw-service-trust-grid {
            display: grid;
            grid-template-columns:
                repeat(4, 1fr);
            gap: 20px;
        }


        .gw-service-trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }


        .gw-service-trust-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 12px;
            font-size: 21px;
        }


        .gw-service-trust-item strong {
            display: block;
            margin-bottom: 3px;
            font-size: 14px;
        }


        .gw-service-trust-item span {
            color: var(--muted);
            font-size: 12px;
        }


        /* =====================================================
           SERVICES SECTION
        ===================================================== */

        .gw-services-section {
            padding: 90px 0;
        }


        .gw-services-heading {
            max-width: 720px;
            margin: 0 auto 50px;
            text-align: center;
        }


        .gw-services-label {
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }


        .gw-services-heading h2 {
            margin: 10px 0;
            font-size: clamp(
                30px,
                4vw,
                42px
            );
        }


        .gw-services-heading p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }


        /* =====================================================
           SERVICE CARDS
        ===================================================== */

        .gw-service-cards {
            display: grid;
            grid-template-columns:
                repeat(3, 1fr);
            gap: 25px;
            align-items: stretch;
        }


        .gw-service-card-new {
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 22px;
            box-shadow:
                0 8px 30px
                rgba(33,90,50,.07);
            transition:
                transform .25s ease,
                box-shadow .25s ease;
        }


        .gw-service-card-new:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 50px
                rgba(33,90,50,.14);
        }


        .gw-service-card-new.popular {
            border: 2px solid var(--green);
        }


        .gw-popular-badge {
            position: absolute;
            z-index: 5;
            top: 18px;
            right: 18px;
            padding: 7px 12px;
            background: var(--green);
            color: #fff;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .5px;
        }


        .gw-service-photo-new {
            height: 215px;
            overflow: hidden;
        }


        .gw-service-photo-new img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .45s ease;
        }


        .gw-service-card-new:hover
        .gw-service-photo-new img {
            transform: scale(1.06);
        }


        .gw-service-content-new {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 28px;
        }


        .gw-service-icon-new {
            width: 55px;
            height: 55px;
            margin-top: -52px;
            margin-bottom: 18px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green);
            color: #fff;
            border: 4px solid #fff;
            border-radius: 16px;
            font-size: 25px;
        }


        .gw-service-content-new h3 {
            margin: 0 0 10px;
            font-size: 24px;
        }


        .gw-service-description {
            min-height: 75px;
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }


        .gw-price-box {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 15px;
            margin-top: 22px;
            padding: 18px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }


        .gw-price-label {
            color: var(--muted);
            font-size: 12px;
        }


        .gw-price {
            color: var(--green);
            font-size: 27px;
            font-weight: 800;
            line-height: 1;
        }


        .gw-price-unit {
            color: var(--muted);
            font-size: 12px;
        }


        .gw-includes {
            margin: 20px 0 0;
            padding: 0;
            list-style: none;
        }


        .gw-includes li {
            display: flex;
            gap: 9px;
            margin-bottom: 10px;
            color: #566159;
            font-size: 13px;
        }


        .gw-includes li span {
            color: var(--green);
            font-weight: 800;
        }


        .gw-service-action {
            margin-top: auto;
            padding-top: 20px;
        }


        .gw-service-action a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            border-radius: 9px;
            text-decoration: none;
            font-weight: 700;
        }


        /* =====================================================
           ECO BANNER
        ===================================================== */

        .gw-eco-section {
            padding: 75px 0;
            background: var(--green-soft);
        }


        .gw-eco-box {
            display: grid;
            grid-template-columns:
                .85fr 1.15fr;
            gap: 45px;
            align-items: center;
        }


        .gw-eco-photo {
            height: 400px;
            overflow: hidden;
            border-radius: 23px;
        }


        .gw-eco-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .gw-eco-content h2 {
            margin: 12px 0 17px;
            font-size: clamp(
                30px,
                4vw,
                42px
            );
        }


        .gw-eco-content p {
            color: var(--muted);
            line-height: 1.8;
        }


        .gw-eco-list {
            display: grid;
            grid-template-columns:
                1fr 1fr;
            gap: 13px;
            margin-top: 25px;
        }


        .gw-eco-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px;
            background: #fff;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
        }


        .gw-eco-item span {
            color: var(--green);
            font-size: 18px;
        }


        /* =====================================================
           BENEFITS
        ===================================================== */

        .gw-benefits-section {
            padding: 90px 0;
        }


        .gw-benefits {
            display: grid;
            grid-template-columns:
                repeat(4, 1fr);
            gap: 20px;
        }


        .gw-benefit {
            padding: 28px 22px;
            text-align: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 17px;
            transition: .2s;
        }


        .gw-benefit:hover {
            transform: translateY(-4px);
            box-shadow:
                0 12px 30px
                rgba(33,90,50,.08);
        }


        .gw-benefit-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 15px;
            font-size: 26px;
        }


        .gw-benefit h3 {
            margin: 0 0 9px;
            font-size: 17px;
        }


        .gw-benefit p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }


        /* =====================================================
           FAQ
        ===================================================== */

        .gw-faq-section {
            padding: 85px 0;
            background: var(--green-soft);
        }


        .gw-faq {
            max-width: 850px;
            margin: 0 auto;
        }


        .gw-faq-item {
            margin-bottom: 12px;
            padding: 22px 25px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 13px;
        }


        .gw-faq-item h3 {
            margin: 0 0 8px;
            font-size: 16px;
        }


        .gw-faq-item p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
            font-size: 14px;
        }


        /* =====================================================
           CTA
        ===================================================== */

        .gw-services-cta {
            padding: 85px 0;
        }


        .gw-services-cta-box {
            position: relative;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            align-items: center;
            padding: 55px;
            border-radius: 25px;
            color: #fff;
            background:
                linear-gradient(
                    90deg,
                    rgba(15,64,34,.97),
                    rgba(15,64,34,.72)
                ),
                url("images/laundry-hero.jpg")
                center / cover;
        }


        .gw-services-cta-content {
            max-width: 650px;
        }


        .gw-services-cta-box h2 {
            margin: 0 0 12px;
            font-size: clamp(
                30px,
                4vw,
                43px
            );
        }


        .gw-services-cta-box p {
            margin: 0;
            color: rgba(255,255,255,.85);
            line-height: 1.7;
        }


        .gw-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            margin-top: 25px;
            padding: 0 23px;
            background: #fff;
            color: var(--green-dark);
            border-radius: 9px;
            text-decoration: none;
            font-weight: 800;
        }
		
		
		


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 1000px) {

            .gw-services-hero-grid {
                grid-template-columns: 1fr;
            }


            .gw-services-hero-photo {
                height: 350px;
            }


            .gw-service-trust-grid {
                grid-template-columns:
                    repeat(2, 1fr);
            }


            .gw-service-cards {
                grid-template-columns:
                    repeat(2, 1fr);
            }


            .gw-benefits {
                grid-template-columns:
                    repeat(2, 1fr);
            }


            .gw-eco-box {
                grid-template-columns: 1fr;
            }

        }


        @media (max-width: 650px) {

            .gw-services-hero {
                padding: 60px 0;
            }


            .gw-services-hero-content h1 {
                font-size: 44px;
                letter-spacing: -1px;
            }


            .gw-services-hero-content p {
                font-size: 16px;
            }


            .gw-services-hero-photo {
                height: 290px;
            }


            .gw-service-trust-grid {
                grid-template-columns: 1fr;
            }


            .gw-service-cards {
                grid-template-columns: 1fr;
            }


            .gw-service-photo-new {
                height: 200px;
            }


            .gw-eco-photo {
                height: 280px;
            }


            .gw-eco-list {
                grid-template-columns: 1fr;
            }


            .gw-benefits {
                grid-template-columns: 1fr;
            }


            .gw-services-cta-box {
                padding: 35px 25px;
                min-height: 390px;
            }

        }

    


        /* =====================================================
           THE GREEN WASH HOMEPAGE
        ===================================================== */

        :root {
            --green: #218c4b;
            --green-dark: #176b39;
            --green-light: #eaf7ee;
            --green-soft: #f5faf6;
            --text: #172019;
            --muted: #68736c;
            --border: #e4ebe5;
            --white: #ffffff;
        }


        * {
            box-sizing: border-box;
        }


        body {
            margin: 0;
            color: var(--text);
            background: #fff;
        }


        .gw-container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }


        /* =====================================================
           HEADER
        ===================================================== */

        .gw-header {
            position: sticky;
            top: 0;
            z-index: 9999;
            background: rgba(255,255,255,.96);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(12px);
        }


        .gw-header-inner {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }


        .gw-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
            text-decoration: none;
            font-size: 22px;
            font-weight: 800;
            white-space: nowrap;
        }


        .gw-logo-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 12px;
            font-size: 22px;
        }


        .gw-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }


        .gw-nav a {
            color: #303932;
            text-decoration: none;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
        }


        .gw-nav a:hover,
        .gw-nav a.active {
            color: var(--green);
            background: var(--green-light);
        }


        .gw-nav .gw-nav-button {
            color: #fff;
            background: var(--green);
            padding: 11px 17px;
        }


        .gw-nav .gw-nav-button:hover {
            color: #fff;
            background: var(--green-dark);
        }


        /* Mobile button */

        .gw-menu-button {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            background: #fff;
            border-radius: 10px;
            cursor: pointer;
            padding: 8px;
        }


        .gw-menu-button span {
            display: block;
            width: 24px;
            height: 2px;
            margin: 5px auto;
            background: #222;
            border-radius: 5px;
            transition: .25s;
        }


        .gw-menu-button.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }


        .gw-menu-button.open span:nth-child(2) {
            opacity: 0;
        }


        .gw-menu-button.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }


        /* =====================================================
           HERO
        ===================================================== */

        .gw-hero {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0 0%,
                    #ffffff 52%,
                    #e6f5ea 100%
                );
        }


        .gw-hero-grid {
            min-height: 620px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }


        .gw-hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 30px 80px 0;
        }


        .gw-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 13px;
            background: #dff2e5;
            color: var(--green-dark);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
        }


        .gw-hero h1 {
            margin: 20px 0;
            font-size: clamp(42px, 5vw, 70px);
            line-height: 1.04;
            letter-spacing: -2px;
        }


        .gw-hero h1 span {
            color: var(--green);
        }


        .gw-hero-text {
            max-width: 620px;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.8;
        }


        .gw-buttons {
            display: flex;
            gap: 13px;
            flex-wrap: wrap;
            margin-top: 30px;
        }


        .gw-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            padding: 0 22px;
            border-radius: 9px;
            text-decoration: none;
            font-weight: 700;
            transition: .2s;
        }


        .gw-button-primary {
            color: #fff;
            background: var(--green);
        }


        .gw-button-primary:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
        }


        .gw-button-light {
            color: var(--text);
            background: #fff;
            border: 1px solid var(--border);
        }


        .gw-button-light:hover {
            border-color: var(--green);
            color: var(--green);
        }


        .gw-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }


        .gw-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #536057;
            font-size: 13px;
            font-weight: 600;
        }


        .gw-check {
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #dff2e5;
            color: var(--green);
            border-radius: 50%;
        }


        /* Hero image */

        .gw-hero-photo {
            height: 620px;
            position: relative;
        }


        .gw-hero-photo::before {
            content: "";
            position: absolute;
            left: -80px;
            top: 0;
            bottom: 0;
            width: 170px;
            z-index: 2;
            background:
                linear-gradient(
                    90deg,
                    #edf8f0,
                    transparent
                );
        }


        .gw-hero-photo img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }


        .gw-photo-card {
            position: absolute;
            z-index: 4;
            left: -35px;
            bottom: 40px;
            display: flex;
            align-items: center;
            gap: 13px;
            padding: 15px 18px;
            background: #fff;
            border-radius: 14px;
            box-shadow:
                0 15px 40px
                rgba(0,0,0,.13);
        }


        .gw-photo-card-icon {
            width: 43px;
            height: 43px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-light);
            border-radius: 11px;
            font-size: 21px;
        }


        .gw-photo-card strong {
            display: block;
            margin-bottom: 3px;
        }


        .gw-photo-card small {
            color: var(--muted);
        }


        /* =====================================================
           WELCOME / STATS
        ===================================================== */

        .gw-welcome {
            padding: 25px 0;
            background: var(--green-soft);
            border-bottom: 1px solid #e2eee4;
        }


        .gw-welcome-grid {
            display: grid;
            grid-template-columns: 1.3fr repeat(3, 1fr);
            align-items: center;
            gap: 25px;
        }


        .gw-welcome-title {
            display: flex;
            align-items: center;
            gap: 15px;
        }


        .gw-welcome-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 50%;
            font-size: 25px;
        }


        .gw-welcome-title h3 {
            margin: 0 0 5px;
        }


        .gw-welcome-title p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
        }


        .gw-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 20px;
            border-left: 1px solid #dce8df;
        }


        .gw-stat-icon {
            font-size: 25px;
        }


        .gw-stat strong {
            display: block;
            color: var(--green-dark);
            font-size: 20px;
        }


        .gw-stat span {
            color: var(--muted);
            font-size: 12px;
        }


        /* =====================================================
           SECTION HEADINGS
        ===================================================== */

        .gw-section {
            padding: 85px 0;
        }


        .gw-heading {
            max-width: 700px;
            margin: 0 auto 45px;
            text-align: center;
        }


        .gw-heading-label {
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        .gw-heading h2 {
            margin: 10px 0;
            font-size: clamp(30px, 4vw, 42px);
            line-height: 1.15;
        }


        .gw-heading p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }


        /* =====================================================
           SERVICES WITH PHOTOS
        ===================================================== */

        .gw-services {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }


        .gw-service-card {
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 17px;
            box-shadow:
                0 8px 25px
                rgba(30,80,45,.06);
            transition: .25s;
        }


        .gw-service-card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 16px 40px
                rgba(30,80,45,.12);
        }


        .gw-service-photo {
            height: 190px;
            overflow: hidden;
        }


        .gw-service-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }


        .gw-service-card:hover
        .gw-service-photo img {
            transform: scale(1.05);
        }


        .gw-service-body {
            padding: 23px;
        }


        .gw-service-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -45px;
            margin-bottom: 17px;
            position: relative;
            background: var(--green);
            color: #fff;
            border: 4px solid #fff;
            border-radius: 50%;
            font-size: 18px;
        }


        .gw-service-body h3 {
            margin: 0 0 9px;
            font-size: 20px;
        }


        .gw-service-body p {
            min-height: 65px;
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }


        .gw-service-link {
            display: inline-block;
            margin-top: 17px;
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
        }


        /* =====================================================
           HOW IT WORKS
        ===================================================== */

        .gw-how {
            background: var(--green-soft);
        }


        .gw-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }


        .gw-step {
            position: relative;
            text-align: center;
            padding: 10px;
        }


        .gw-step:not(:last-child)::after {
            content: "→";
            position: absolute;
            right: -13px;
            top: 40px;
            color: var(--green);
            font-size: 25px;
            font-weight: 800;
        }


        .gw-step-circle {
            width: 82px;
            height: 82px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: var(--green);
            border: 2px solid #dcecdf;
            border-radius: 50%;
            font-size: 28px;
        }


        .gw-step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 23px;
            height: 23px;
            margin-left: -15px;
            margin-bottom: 4px;
            background: var(--green);
            color: #fff;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 800;
        }


        .gw-step h3 {
            margin: 0 0 8px;
            font-size: 17px;
        }


        .gw-step p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
        }


        /* =====================================================
           PHOTO FEATURE
        ===================================================== */

        .gw-feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 480px;
            overflow: hidden;
            background: #173d25;
        }


        .gw-feature-photo {
            min-height: 480px;
        }


        .gw-feature-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .gw-feature-content {
            display: flex;
            align-items: center;
            padding: 60px;
            color: #fff;
        }


        .gw-feature-content-inner {
            max-width: 510px;
        }


        .gw-feature-content .gw-heading-label {
            color: #b7e8c6;
        }


        .gw-feature-content h2 {
            margin: 12px 0 18px;
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.15;
        }


        .gw-feature-content p {
            color: rgba(255,255,255,.82);
            line-height: 1.8;
        }


        .gw-feature-list {
            list-style: none;
            margin: 25px 0 0;
            padding: 0;
        }


        .gw-feature-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            color: rgba(255,255,255,.92);
        }


        .gw-feature-list span {
            color: #a9e6bb;
        }


        /* =====================================================
           CTA PHOTO
        ===================================================== */

        .gw-cta {
            padding: 80px 0;
        }


        .gw-cta-box {
            position: relative;
            min-height: 330px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 55px;
            border-radius: 25px;
            color: #fff;
            background:
                linear-gradient(
                    90deg,
                    rgba(14,55,28,.96),
                    rgba(14,55,28,.68)
                ),
                url("images/laundry-hero.jpg")
                center/cover;
        }


        .gw-cta-content {
            max-width: 620px;
        }


        .gw-cta h2 {
            margin: 0 0 14px;
            font-size: clamp(30px, 4vw, 44px);
        }


        .gw-cta p {
            margin: 0;
            color: rgba(255,255,255,.85);
            line-height: 1.7;
        }


        .gw-cta .gw-button {
            margin-top: 25px;
            background: #fff;
            color: var(--green-dark);
        }


        /* =====================================================
           FOOTER
        ===================================================== */

        .gw-footer {
            padding: 60px 0 20px;
            background: #0e4022;
            color: #fff;
        }


        .gw-footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
        }


        .gw-footer .gw-logo {
            color: #fff;
            margin-bottom: 15px;
        }


        .gw-footer-description {
            max-width: 330px;
            color: rgba(255,255,255,.72);
            line-height: 1.7;
            font-size: 14px;
        }


        .gw-footer h4 {
            margin: 0 0 18px;
            font-size: 15px;
        }


        .gw-footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }


        .gw-footer-links a {
            color: rgba(255,255,255,.72);
            text-decoration: none;
            font-size: 14px;
        }


        .gw-footer-links a:hover {
            color: #fff;
        }


        .gw-footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }


        .gw-footer-contact div {
            display: flex;
            gap: 10px;
            color: rgba(255,255,255,.75);
            font-size: 14px;
        }


        .gw-footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 45px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,.15);
            color: rgba(255,255,255,.6);
            font-size: 12px;
        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 1050px) {

            .gw-nav a {
                padding: 9px 7px;
                font-size: 13px;
            }


            .gw-services {
                grid-template-columns: repeat(2, 1fr);
            }


            .gw-welcome-grid {
                grid-template-columns: 1fr repeat(3, .8fr);
            }

        }


        @media (max-width: 850px) {

            .gw-container {
                width: min(100% - 30px, 720px);
            }


            .gw-menu-button {
                display: block;
            }


            .gw-nav {
                position: absolute;
                left: 15px;
                right: 15px;
                top: calc(100% + 8px);
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: 12px;
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 14px;
                box-shadow:
                    0 15px 40px
                    rgba(0,0,0,.12);
            }


            .gw-nav.open {
                display: flex;
            }


            .gw-nav a {
                width: 100%;
                padding: 13px 14px;
            }


            .gw-nav .gw-nav-button {
                text-align: center;
                margin-top: 5px;
            }


            .gw-hero-grid {
                grid-template-columns: 1fr;
            }


            .gw-hero-content {
                padding: 60px 0 40px;
            }


            .gw-hero-photo {
                height: 430px;
            }


            .gw-hero-photo::before {
                display: none;
            }


            .gw-photo-card {
                left: 20px;
                bottom: 20px;
            }


            .gw-welcome-grid {
                grid-template-columns: 1fr 1fr;
            }


            .gw-welcome-title {
                grid-column: 1 / -1;
            }


            .gw-stat {
                border-left: 0;
                padding-left: 0;
            }


            .gw-steps {
                grid-template-columns: 1fr 1fr;
            }


            .gw-step:not(:last-child)::after {
                display: none;
            }


            .gw-feature {
                grid-template-columns: 1fr;
            }


            .gw-feature-photo {
                min-height: 350px;
            }


            .gw-feature-content {
                padding: 45px 30px;
            }


            .gw-footer-grid {
                grid-template-columns: 1fr 1fr;
            }

        }


        @media (max-width: 600px) {

            .gw-hero h1 {
                font-size: 43px;
                letter-spacing: -1.5px;
            }


            .gw-hero-text {
                font-size: 16px;
            }


            .gw-trust {
                flex-direction: column;
                gap: 10px;
            }


            .gw-welcome-grid {
                grid-template-columns: 1fr 1fr;
            }


            .gw-services {
                grid-template-columns: 1fr;
            }


            .gw-steps {
                grid-template-columns: 1fr;
                gap: 35px;
            }


            .gw-step-circle {
                width: 72px;
                height: 72px;
            }


            .gw-section {
                padding: 65px 0;
            }


            .gw-cta-box {
                min-height: 420px;
                padding: 35px 25px;
                align-items: flex-end;
            }


            .gw-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }


            .gw-footer-bottom {
                flex-direction: column;
            }

        }

    

/* ===== Source: terms-and-conditions.php ===== */



        .terms-hero {
            padding: 70px 20px;
            text-align: center;
            background:
                linear-gradient(
                    135deg,
                    #edf8f0,
                    #ffffff,
                    #e8f5eb
                );
        }

        .terms-hero h1 {
            margin: 15px 0;
            font-size: clamp(38px, 6vw, 58px);
        }

        .terms-hero h1 span {
            color: #218c4b;
        }

        .terms-hero p {
            max-width: 700px;
            margin: auto;
            color: #68736c;
            line-height: 1.7;
        }

        .terms-section {
            padding: 70px 0;
        }

        .terms-container {
            max-width: 900px;
            margin: auto;
        }

        .terms-card {
            margin-bottom: 20px;
            padding: 35px;
            background: #fff;
            border: 1px solid #e4ebe5;
            border-radius: 18px;
            box-shadow:
                0 8px 30px
                rgba(33,90,50,.05);
        }

        .terms-card h2 {
            margin-top: 0;
            color: #218c4b;
            font-size: 25px;
        }

        .terms-card h3 {
            margin-top: 25px;
            font-size: 18px;
        }

        .terms-card p,
        .terms-card li {
            color: #606b64;
            line-height: 1.8;
            font-size: 15px;
        }

        .terms-card ul {
            padding-left: 22px;
        }

        .terms-note {
            padding: 20px;
            background: #f3faf5;
            border-left: 4px solid #218c4b;
            border-radius: 8px;
        }

        @media(max-width:600px) {

            .terms-section {
                padding: 45px 0;
            }

            .terms-card {
                padding: 25px 20px;
            }

        }


/* =========================================================
   AUTH FORMS — CENTERED LOGIN / REGISTER
   ========================================================= */

.auth-page {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    width: 100%;
}

.auth-container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e4ebe5;
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 15px 45px rgba(33, 90, 50, .08);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-header h1 {
    margin: 14px 0 8px;
}

.auth-header p {
    margin: 0 auto;
    max-width: 430px;
    color: #68736c;
    line-height: 1.7;
}

.auth-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.form-field {
    width: 100%;
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.password-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.password-label label {
    margin-bottom: 0;
}

.auth-submit {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.auth-footer,
.auth-divider {
    text-align: center;
}

.auth-footer {
    margin-top: 24px;
}

.auth-divider {
    margin: 25px 0;
}

@media (max-width: 600px) {
    .auth-page {
        min-height: auto;
        padding: 35px 15px 50px;
    }

    .auth-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .password-label {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float svg {
        width: 29px;
        height: 29px;
    }
}