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

body{
    font-family:'Inter',sans-serif;
    background:#f5f6fa;
    color:#222;
}

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

/* HEADER */

header{
    background:#fff;
    padding:14px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #e5e7eb;
}

.logo{
    display:flex;
    align-items:center;
    /* gap:20px; */
    font-size:28px;
    font-weight:700;
    color:#ef3f55;
}

.logo span{
    color:#444;
    font-size:22px;
    font-weight:500;
}

.navbar{
    display:flex;
    align-items:center;
    gap:20px;
}

.navbar a{
    text-decoration:none;
    color:#444;
    font-size:15px;
    font-weight:500;
}

/* HERO SECTION */

.hero{
    padding:30px 60px;
    background:#f3f5fb;
}

.search-box{
    width:100%;
    height:60px;
    border:none;
    border-radius:40px;
    padding:0 25px;
    font-size:17px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    margin-bottom:35px;
    outline:none;
}

/* CONTENT */

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.left-side{
    width:50%;
}

.left-side h1{
    font-size:54px;
    font-weight:700;
    margin-bottom:15px;
}

.rating{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:20px;
    margin-bottom:40px;
}

.rating span{
    color:#666;
    font-size:18px;
}

.services{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.service-item{
    text-align:center;
}

.service-item img{
    width:90px;
    height:90px;
    object-fit:cover;
    margin-bottom:10px;
}

.service-item p{
    font-size:18px;
    color:#333;
    line-height:1.4;
}

.trending{
    background:#f3e8ff;
    color:#7c3aed;
    font-size:12px;
    padding:5px 12px;
    border-radius:20px;
    /* display:inline-block; */
    margin-bottom:10px;
}

/* RIGHT SIDE */

.right-side{
    width:45%;
}

.right-side img{
    width:100%;
    border-radius:16px;
}

/* SERVICE CARD */

.card-section{
    padding:40px 60px;
}

.cleaning-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    width:32%;
    float:left;
    margin:auto;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
.cleaning-card:hover{
    box-shadow:0 0px 30px 0px rgba(0,0,0,0.1)
}


.cleaning-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.card-content{
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.card-left h2{
    font-size:24px;
    margin-bottom:12px;
}

.card-left p{
    font-size:20px;
    margin-bottom:10px;
}

.time{
    color:#777;
    font-size:18px;
}

#addBtn{
    background:#fff;
    color:#14b8a6;
    border:1px solid #99f6e4;
    padding:12px 30px;
    border-radius:12px;
    font-size:24px;
    font-weight:600;
    cursor:pointer;
}

.option-text{
    text-align:center;
    margin-top:10px;
    color:#666;
}

/* =========================
MOBILE RESPONSIVE UPDATE
========================= */

@media(max-width:992px){

/* HEADER */

header{
    padding:14px 18px;
    flex-wrap:wrap;
    gap:15px;
}

.logo{
    font-size:22px;
}

.logo span{
    font-size:16px;
}

/* NAVBAR */

.navbar{
    width:100%;
    justify-content:space-between;
    overflow-x:auto;
    gap:15px;
    padding-bottom:5px;
}

.navbar a{
    white-space:nowrap;
    font-size:14px;
}

/* HERO */

.hero{
    padding:20px;
}

.search-box{
    height:52px;
    font-size:15px;
    margin-bottom:25px;
}

/* HERO CONTENT */

.hero-content{
    flex-direction:column;
    gap:30px;
}

.left-side,
.right-side{
    width:100%;
}

/* TITLE */

.left-side h1{
    font-size:34px;
    line-height:1.3;
    margin-bottom:10px;
}

/* RATING */

.rating{
    font-size:16px;
    margin-bottom:25px;
}

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

/* SERVICES */

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

.service-item{
    background:#fff;
    padding:15px 10px;
    border-radius:14px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.service-item img{
    width:65px;
    height:65px;
}

.service-item p{
    font-size:14px;
}

/* TRENDING */

.trending{
    font-size:10px;
    padding:4px 10px;
}

/* RIGHT IMAGE */

.right-side img{
    border-radius:14px;
}

/* CARD SECTION */

.card-section{
    padding:20px;
}

/* CLEANING CARD */

.cleaning-card{
    width:100%;
    border-radius:16px;
}

.cleaning-card img{
    height:190px;
}

/* CARD CONTENT */

.card-content{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
    padding:18px;
}

.card-left h2{
    font-size:24px;
}

.card-left p{
    font-size:18px;
}

.time{
    font-size:14px;
}

/* ADD BUTTON */

#addBtn{
    width:100%;
    font-size:18px;
    padding:12px;
}

.option-text{
    margin-top:8px;
    font-size:13px;
}

/* FOOTER */

footer{
    padding:35px 20px;
}

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

.footer-box h3{
    font-size:20px;
}

.footer-box p,
.footer-box a{
    font-size:14px;
    line-height:1.8;
}

.copy{
    font-size:13px;
}

}

/* MOBILE */

@media(max-width:900px){
.swiper-button-next{
    color:#333;
    background:#fff;
    width:40px;
    height:40px;
    border-radius:10px;
    top:-10px !important;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.swiper-button-prev{
    color:#333;
    background:#fff;
    width:40px;
    top:0px !important;
    height:40px !important;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.hero-content{
    flex-direction:column;
}

.left-side,
.right-side{
    width:100%;
}

.left-side h1{
    font-size:38px;
}

.services{
    justify-content:center;
}

.card-section,
.hero{
    padding:25px;
}

.cleaning-card{
    width:100%;
}

.card-content{
    flex-direction:column;
    gap:20px;
    align-items:flex-start;
}

header{
    padding:15px 20px;
}

.navbar{
    display:none;
}

}

/* =========================
MOBILE NAVBAR UPDATE
========================= */

/* HIDE MOBILE MENU IN DESKTOP */

.mobile-menu-btn,
.mobile-navbar{
    display:none;
}

/* MOBILE VIEW */

@media(max-width:768px){

/* HEADER */

header{
    padding:14px 18px;
    position:relative;
}

/* DESKTOP NAVBAR HIDE */

.navbar{
    display:none;
}

/* MOBILE MENU ICON */

.mobile-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:10px;
    background:#fff;
    border:1px solid #eee;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

/* MOBILE SIDEBAR */

.mobile-navbar{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    z-index:9999999;
    padding:25px;
    display:flex;
    flex-direction:column;
    gap:22px;
    transition:0.4s;
    box-shadow:-5px 0 25px rgba(0,0,0,0.12);
}

/* ACTIVE MENU */

.mobile-navbar.active{
    right:0;
}

/* TOP AREA */

.mobile-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.mobile-top h2{
    font-size:24px;
    color:#222;
}

.mobile-top span{
    font-size:28px;
    cursor:pointer;
}

/* LINKS */

.mobile-navbar a{
    text-decoration:none;
    color:#333;
    font-size:17px;
    font-weight:500;
    border-bottom:1px solid #eee;
    padding-bottom:12px;
}

/* OVERLAY EFFECT */

/* .mobile-navbar::before{
    content:'';
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    z-index:-1;
} */

}

/* =========================
FIX HEADER ONLY
========================= */

body{
    padding-top:80px;
}

/* FIXED HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* MOBILE HEADER FIX */

@media(max-width:768px){

body{
    padding-top:72px;
}

header{
    padding:14px 18px;
}

}

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

footer{
    background:#111827;
    color:#fff;
    padding:60px 50px 25px;
    margin-top:60px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

/* LOGO */

.footer-logo{
    font-size:28px;
    font-weight:700;
    color:#ef3f55;
    margin-bottom:18px;
}

/* TEXT */

.footer-box p{
    color:#d1d5db;
    font-size:15px;
    line-height:1.8;
}

/* HEADING */

.footer-box h3{
    font-size:22px;
    margin-bottom:18px;
}

/* LINKS */

.footer-box a{
    display:block;
    text-decoration:none;
    color:#d1d5db;
    margin-bottom:12px;
    font-size:15px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#ef3f55;
}

/* COPYRIGHT */

.footer-bottom{
    margin-top:45px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#9ca3af;
    font-size:14px;
}

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

@media(max-width:768px){

footer{
    padding:40px 20px 20px;
}

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

.footer-logo{
    font-size:24px;
}

.footer-box h3{
    font-size:20px;
}

.footer-box p,
.footer-box a{
    font-size:14px;
}

.footer-bottom{
    margin-top:30px;
    font-size:13px;
}

}




/* =========================
POPUP CSS
========================= */

.service-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999999;
}

/* SHOW POPUP */

.service-popup.active{
    display:flex;
}

/* BOX */

.popup-box{
    width:520px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    animation:popupShow 0.3s ease;
}

/* ANIMATION */

@keyframes popupShow{

    from{
        transform:scale(0.9);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

/* CLOSE */

.popup-close{
    position:absolute;
    top:18px;
    right:20px;
    font-size:28px;
    color:#aaa;
    cursor:pointer;
}

/* HEADER */

.popup-header{
    padding:28px 25px 18px;
    border-bottom:1px solid #eee;
}

.popup-header h2{
    font-size:34px;
    margin-bottom:10px;
}

.popup-header p{
    font-size:22px;
    color:#333;
}

/* BODY */

.popup-body{
    padding:15px 25px;
    max-height:420px;
    overflow-y:auto;
}

/* ITEM */

.popup-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #f1f1f1;
}

.popup-item h3{
    font-size:10px;
    color:#444;
    margin-bottom:8px;
    font-weight:500;
}

.popup-item h4{
    font-size:18px;
    color:#222;
    font-weight:700;
}

/* BUTTON */

.popup-item button{
    width:80px;
    height:36px;
    border-radius:12px;
    border:1px solid #b2f5ea;
    background:#fff;
    color:#0f9d8a;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

/* FOOTER */

.popup-footer{
    padding:20px 25px;
    border-top:1px solid #eee;
    display:flex;
    justify-content:flex-end;
}

/* PROCEED */

.proceed-btn{
    width:160px;
    height:52px;
    border:none;
    border-radius:12px;
    background:#65d6c8;
    color:#fff;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
}

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

@media(max-width:768px){

.popup-box{
    width:95%;
    border-radius:16px;
}

.popup-header{
    padding:22px 18px 15px;
}

.popup-header h2{
    font-size:24px;
}

.popup-header p{
    font-size:18px;
}

.popup-body{
    padding:10px 18px;
    max-height:350px;
}

.popup-item{
    gap:15px;
    align-items:flex-start;
}

.popup-item h3{
    font-size:14px;
}

.popup-item h4{
    font-size:24px;
}

.popup-item button{
    width:75px;
    height:42px;
    font-size:18px;
}

.popup-footer{
    padding:15px 18px;
}

.proceed-btn{
    width:100%;
    font-size:18px;
    height:48px;
}

}

.checkout{
    display:flex;
    gap: 50px;
    padding: 50px;
}
.checkout-left,
.checkout-right{
    background:#fff;
    padding:25px;
    border-radius:10px;
}
.checkout-left{
    flex:2;
}
.checkout-right{
    flex:1;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}
.checkout-item .item-info h3{
    font-size:18px;
    font-weight:500;
}

.checkout-item .item-info p{
    font-size:14px;
    color:#666;
}
.order-summary{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.order-summary.total{
    font-size:18px;
    font-weight:500;
}
.checkout-right button{
    width:100%;
    padding:10px;
    background:#28a745;
    color:#fff;
    border:none;
    border-radius:5px;
    font-size:16px;
    cursor:pointer;
}   
.checkout-right button:hover{
    background:#218838;
}
.btn-primary{
    background-color: #007bff;
    border-color: #007bff;
}
