* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    /* background-color: #f9f9f9; */
    background-color: #fff;
    text-decoration: none;
}

.button {
    padding: 20px 40px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid #3b856b;
    color: #000;
}


.button:hover {
    background-color: #ccebc9;
}


.button.active {
    background-color: #3b856b;
    color: white;
}

.button:active {
    background-color: #3b856b;
}

.button:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3b856b;
}


.container-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 20px; */
}

/* Header Styles */
.header-1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional shadow for better visibility */
}

.logo a {
    text-decoration: none;
    font-size: 30px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    display: flex;
}

.header-1 .logo {
    display: flex;
    align-items: center;
}

.logo-name {
    color: #daa91a;
    margin-top: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.header-1 .logo img {
    max-width: 80px;
    margin-right: 10px;
}

.header-1 .help {
    font-size: 14px;
}

/* Progress Bar Styles */
.progress-bar {
    width: 100%;
    height: 5px;
    background: #f1f1f1;
    margin: 20px 0;
    position: relative;
}

.progress-bar .progress {
    height: 100%;
    width: 0%;
    background: #3b856b;
    transition: width 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .header-1 h1 {
        margin-bottom: 0px;
    }
}



@media screen and (max-width: 600px) {
    .header-1 {
        padding: 10px 15px;
    }

    .header-1 h1 {
        margin-bottom: 0px;
    }

    .header-1-1 .logo img {
        max-width: 40px;
        margin-right: 0;
    }

    .header-1-1 .help {
        font-size: 12px;
    }

    .progress-bar {
        margin: 15px 0;
    }
}


@media screen and (max-width: 480px) {
    .header-1 {
        padding: 10px 10px;
    }

    .header-1 .logo img {
        max-width: 35px;
    }

    .header-1 .help {
        font-size: 12px;
    }

    .progress-bar {
        margin: 10px 0;
    }

    .header-1 {
        flex-direction: row;
    }



    .header-1 .logo {
        margin-bottom: 0px;
    }

    .header-1 h1 {
        margin-bottom: 0px;
    }
}


.main-1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* max-width: 1300px; */
    margin-top: 20px;
    padding: 0px 20px;
}

.sidebar-1 {
    flex: 1;
    max-width: 300px;
    padding: 10px;
    height: max-content;
}

.sidebar-1 ul {
    list-style: none;
    padding-left: 0px;
}

.sidebar-1 ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}

.sidebar-1 ul li.active {
    font-weight: bold;
    color: #3b856b;
}



.content {
    flex: 2;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    max-width: 600px;
}


.content h2 {
    margin-bottom: 20px;
}

.content input {
    width: 100%;
    padding: 22px 22px;
    border: 1px solid #3b856b;
    border-radius: 5px;
    /* background: #fef6f6; */
    font-size: 15px;
}

.content .navigation {
    margin-top: 20px;
    display: flex;
    /* justify-content: space-between; */
    gap: 30px;
}

.for-back-btn {
    padding: 18px 0px;
    border: none;
    background: #3b856b;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 20px;
}

.summary {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #3b856b;
    padding: 20px;
    max-width: 550px;
    font-size: 16px;
    color: #333;
    height: max-content;
}

h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.line {
    border-bottom: 1px solid #ddd;
    margin: 10px 0;
}


.summary-desc {
    display: flex;
    justify-content: space-between;
}

#location-summary {
    font-weight: bold;

}

.total {
    font-size: 18px;
    /* font-weight: bold; */
    color: #000;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .main {
        width: 100%;
    }
}


@media (max-width: 768px) {

    .summary {
        padding: 15px;
    }

    h3 {
        font-size: 20px;
    }

    .total {
        font-size: 16px;
    }

    .main {
        flex-direction: column;
        align-items: center;
    }

    .main-1 {
        flex-direction: column;
    }

    .content,
    .summary,
    .sidebar {
        margin-bottom: 20px;
        width: 100%;
    }
}



@media (max-width: 480px) {

    .content {
        width: 100%;
    }

    .summary {
        padding: 10px;
    }

    h3 {
        font-size: 18px;
    }

    .total {
        font-size: 14px;
    }

    .content .navigation {
        display: flex;
        gap: 10px;
    }

    .main-1 {
        flex-direction: column;
    }
}


.contain {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    /* background-color: green; */
    border-radius: 8px;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.two-section {
    display: flex;
    gap: 10px;
    width: 100%;
    /* background-color: pink; */
}

/* .service-option {
    background-color: #e0f7fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
} */

.service-option h2 {
    font-size: 1.75rem;
    margin-bottom: 0px;
}



.section-desc {
    display: flex;
    flex-direction: column;
    padding: 7px 30px;
    gap: 30px;
}

/* .section-desc:hover {
    background-color: #94d78e;
} */

.service-option:hover {
    background-color: #ccebc9;
}

.service-option {
    background-color: #fff;
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
    border: 1px solid #3b856b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.span p {
    font-size: 14px;
}

.next p {
    font-size: 14px;
}

.service-header {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.p-1 {
    background-color: #3b856b;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 10px;
    border-radius: 9px 9px 0px 0px;
}

.p-2 {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd4d4;
    /* margin-bottom: 10px; */
    padding-bottom: 20px;
}


.service-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

.description {
    font-size: 14px;
    color: #000;
}

.price {
    font-size: 14px;
    color: #000;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-label {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .service-option h2 {
        font-size: 1.5rem;
    }

    .service-option .price {
        font-size: 1.15rem;
    }
}




@media (max-width: 600px) {

    .service-title {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .price-amount {
        font-size: 28px;
    }

    .price-time {
        font-size: 14px;
    }
}




@media (max-width: 480px) {
    .contain {
        width: 100%;
    }

    .two-section {
        flex-direction: column;
    }

    h1 {
        font-size: 1.75rem;
    }

    .service-option h2 {
        font-size: 1.25rem;
    }

    .service-option .price {
        font-size: 1rem;
    }
}


.subscription-container {
    display: none;
    padding: 20px;
    border-radius: 8px;
}

.subscription-title {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
}

.button-container {
    display: flex;
}

@media (max-width: 600px) {
    .subscription-container {
        width: 100%;
    }

    .button-container {
        flex-direction: column;
    }

    .subscription-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .subscription-btn:last-child {
        margin-bottom: 0;
    }
}


@media (max-width: 480px) {
    .subscription-title {
        font-size: 1.1em;
    }

    .subscription-btn {
        padding: 18px 35px;
        margin-bottom: 10px;
    }

    .subscription-container {
        padding: 15px;
    }
}



.days-container {
    display: none;
    padding: 20px;
    border-radius: 8px;
}

.title {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 0px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.days-btn {
    padding: 23px 34px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid #3b856b;
    color: #000;
    margin-bottom: 10px;
}

.popular {
    display: flex;
    flex-direction: column;
    position: relative;
    /* align-items: center; */
}

.popular p {
    font-size: 12px;
    position: absolute;
    top: -37px;
    left: 50%;
    background: red;
    padding: 11px 18px;
    color: #fff;
    font-weight: 600;
    border-radius: 7px 7px 7px 7px;
}

.days-btn:hover {
    background-color: #ccebc9;
}

.days-btn:active {
    background-color: #3b856b;
}




@media (max-width: 600px) {
    .days-container {
        width: 90%;
    }

    .button-container {
        flex-direction: column;
    }

    .days-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .days-btn:last-child {
        margin-bottom: 0;
    }
}


@media (max-width: 480px) {
    .title {
        font-size: 1.1em;
    }

    .days-btn {
        padding: 20px 40px;
    }
}


.cleaning-top {
    padding: 20px;
    /* background-color: yellow; */
}

.cleaning-top h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.button-container {
    gap: 10px;
}


@media screen and (max-width: 600px) {
    .cleaning-top {
        padding: 15px;
    }

    .cleaning-top h2 {
        font-size: 20px;
    }


    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .button {
        margin-bottom: 10px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .cleaning-top h2 {
        font-size: 18px;
    }

    .button {
        padding: 18px 40px;
        width: 100%;
        /* margin-bottom: 0px; */
    }

    .button-container {
        width: 100%;
    }

}




.disabled-section {
    padding: 20px;
}


@media (max-width: 768px) {
    .disabled-section {
        padding: 10px;
    }

    .title {
        font-size: 16px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .days-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .days-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

.about-top {
    border-bottom: 1px solid #ddd5d5;
    padding-bottom: 20px;
}

.button-group-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


@media(max-width: 992px) {
    .button-group-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .button-group-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media(max-width: 480px) {
    .button-group-1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.cleaning-weeks {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd5d5;
}

.cleans {
    border-bottom: 1px solid #ddd5d5;
    padding-bottom: 20px;
    margin-top: 20px;
}

.input {
    padding: 25px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #000;
}

.text-area {
    margin-top: 20px;
    padding-bottom: 20px;
}


.text-area textarea {
    width: 100%;
    padding: 22px 22px;
    border: 1px solid #3b856b;
    border-radius: 5px;
    background: #fef6f6;
    font-size: 15px;
}




.service-booking {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #ddd4d4;
    padding-bottom: 30px;
}


.service-option-1 {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #3b856b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 5px;
}

.service-option-1:hover {
    background-color: #ccebc9;
}

.d-1 {
    background-color: #dde2cc;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 16px;
    border-radius: 9px 9px 0px 0px;
}

.title-1 {
    font-size: 1.2em;
    color: #333;
    padding-bottom: 0px;
}

.last-payment-line {
    display: flex;
    gap: 7px;
    text-align: center;
    justify-content: center;
}

.last-section {
    display: flex;
    flex-direction: column;
    padding: 50px;
    gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.description-2 {
    font-size: 15px;
    color: #333;
    padding-bottom: 0px;
    font-weight: 600;
}

.payment-content {
    font-size: 13px;
}

@media (max-width: 768px) {
    .service-booking {
        flex-direction: column;
    }

    .service-option-11 {
        height: 100px;
    }
}


@media (max-width: 480px) {
    .service-booking {
        flex-direction: column;
    }
}

.titles {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
    padding-bottom: 0px;
}