/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Header */
.header {
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.btn-book {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ------------------------------- */
/* GRID (MAIN FIX) */
/* ------------------------------- */
.services {
  padding: 25px 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 15px 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto 20px;
}
/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #e50a0a;
  margin-top: 20px;
}

/* --------------------------------------- */
/* MOBILE — 3 icons per row */
/* --------------------------------------- */
@media (max-width: 600px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .service-card {
    padding: 12px 5px;
  }

  .icon {
    width: 38px;
    height: 38px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* --------------------------------------- */
/* TABLET — 3 icons per row */
/* --------------------------------------- */
@media (min-width: 600px) and (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    padding: 15px 10px;
  }

  .icon {
    width: 45px;
    height: 45px;
  }
}

/* --------------------------------------- */
/* DESKTOP — 3 icons per row */
/* --------------------------------------- */
@media (min-width: 1024px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    padding: 20px;
  }

  .icon {
    width: 65px;
    height: 65px;
  }
}
.search-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.search-box input {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 16px;
}

.search-box button {
    padding: 12px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
}

.search-box button:hover {
    background-color: #0056b3;
}
/* --------------------------------------------------- */
/* BOTTOM NAVIGATION MENU */
/* --------------------------------------------------- */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    padding: 8px 0;
    z-index: 999;
    text-decoration: none;
}

.nav-item {
    text-decoration: none;
    color: #6b6b6b;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
}

.nav-item i {
    font-size: 22px;
    transition: 0.3s;
}

/* Active state */
.nav-item.active,
.nav-item:hover {
    color: #007bff;
    font-weight: 600;
}

.nav-item.active i,
.nav-item:hover i {
    transform: scale(1.1);
}

/* Prevent content from hiding behind bottom nav */
body {
    padding-bottom: 80px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .nav-item i {
        font-size: 20px;
    }
    .nav-item span {
        font-size: 12px;
    }
}
/* login page */
/* Mobile responsiveness */
/* ===== REGISTER PAGE STYLING ===== */

.register-container {
    max-width: 380px;
    margin: 70px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}

.register-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.register-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #bfbfbf;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.register-container input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.3);
}

.btn-register {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.btn-register:hover {
    background: #0056b3;
}

.register-container p {
    margin-top: 12px;
    font-size: 15px;
}

.register-container a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
/* login page */
/* ===== LOGIN PAGE STYLING ===== */

.login-container {
    max-width: 380px;
    margin: 70px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.login-container h2 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: bold;
    color: #333;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #bfbfbf;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.login-container input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.3);
}

.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.btn-login:hover {
    background: #0056b3;
}

.login-container p {
    margin-top: 12px;
    font-size: 15px;
}

.login-container a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
 /* banner */
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 0px 0;
}

.banner-section .banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  padding: 20px;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-book-banner {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.btn-book-banner:hover {
  background-color: #333;
}
/* 2rows 3 colums data */
/* Make body and container use full width */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* IMAGE GRID */
.image-grid {
  width: 100%;
  max-width: 1200px;       /* center on big screens */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 columns on mobile/tablet */
  gap: 12px;
  padding: 12px 8px;       /* small, equal side padding */
}

/* Card */
.grid-item {
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  text-decoration: none;
  color: #222;
  padding: 10px;
}

/* Image */
.grid-item img {
  width: 100%;
  max-height: 130px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Title */
.grid-item p {
  margin: 10px 0 4px;
  font-size: 15px;
  font-weight: 600;
}

/* Desktop: 4 columns, still no side gap */
@media (min-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 16px 12px;
  }

  .grid-item img {
    max-height: 140px;
  }
}


/* 3 columns, 1 row on all devices */
/* Do not change layout of other sections */
.page-content {
  margin-bottom: 24px;          /* gap between last section and footer */
}

/* FOOTER */
/* GAP BELOW MAIN CONTENT */
.page-content {
  margin-bottom: 24px;
}

/* FOOTER */
.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 20px 16px 24px;
  font-size: 14px;
}

/* 1 row, 2 equal columns on ALL devices */
.footer-top {
  max-width: 1100px;
  margin: 0 auto 12px;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap:12px 40px;
}

/* Columns */
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-col p {
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 4px;
}

.footer-col a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Bottom line */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #1f2937;
  padding-top: 8px;
  font-size: 13px;
}
/* Option 1: margin below footer */
.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 20px 16px 24px;
  font-size: 14px;
  margin-bottom: 80px;      /* space after footer */
}
a {
  text-decoration: none;
  color: inherit;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

/* ============================================= */
/* HOME CLEANING SERVICE CARDS - COMPLETELY FIXED */
/* ============================================= */

.page-header {
    background: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
}

.page-header h1 {
    font-size: 22px;
    font-weight: bold;
}

.service-container {
    padding: 15px;
    background: #f5f5f5;
    margin-bottom: 80px;
}

.service-container > h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

/* ============================================= */
/* SERVICE CARD - MOBILE FIRST (DEFAULT) */
/* ============================================= */
.service-container .service-card {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    background: white;
    padding: 12px !important;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    gap: 10px !important;
    min-height: 120px;
}

/* LEFT SIDE - TEXT INFO */
.service-container .service-info {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.service-container .service-info h3 {
    font-size: 15px !important;
    font-weight: 600;
    margin: 0 0 6px 0 !important;
    color: #222;
    line-height: 1.3;
    word-wrap: break-word;
}

.service-container .service-info p {
    font-size: 13px !important;
    margin: 3px 0 !important;
    color: #555;
    line-height: 1.4;
}

.service-container .service-info strong {
    font-size: 15px;
    color: #000;
    font-weight: 700;
}

/* RIGHT SIDE - IMAGE */
.service-container .service-image {
    flex-shrink: 0 !important;
    width: 100px !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: static !important;
}

.service-container .service-image img {
    width: 140px !important;
    height: 140px !important;
    object-fit: cover !important;
    border-radius: 8px;
    display: block !important;
    margin-bottom: 5px;
}

.service-container .service-image p {
    font-size: 13px !important;
    text-align: center;
    margin: 0 !important;
    width: 100%;
}

.service-container .service-image strong {
    color: #000;
    font-weight: 600;
}

/* STYLING HELPERS */
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-left: 3px;
}

.green {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.details {
    color: #6f42c1;
    text-decoration: none;
    font-size: 13px;
    margin-top: 5px;
    display: inline-block;
}

.details:hover {
    text-decoration: underline;
}

/* ============================================= */
/* TABLET - 600px and UP */
/* ============================================= */
@media (min-width: 600px) {
    .service-container {
        padding: 20px;
    }

    .service-container > h2 {
        font-size: 24px;
    }

    .service-container .service-card {
        padding: 18px !important;
        gap: 15px !important;
    }

    .service-container .service-info h3 {
        font-size: 18px !important;
    }

    .service-container .service-info p {
        font-size: 15px !important;
    }

    .service-container .service-image {
        width: 140px !important;
    }

    .service-container .service-image img {
        width: 140px !important;
        height: 120px !important;
    }
}

/* ============================================= */
/* DESKTOP - 1024px and UP - 2 CARDS PER ROW */
/* ============================================= */
@media (min-width: 1024px) {
    .service-container {
        max-width: 1400px;
        margin: 0 auto 80px auto;
        padding: 30px;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        background: #f5f5f5;
    }

    .service-container > h2 {
        font-size: 28px;
        margin-bottom: 25px;
        grid-column: 1 / -1; /* Make heading span full width */
    }

    .service-container .service-card {
        padding: 25px !important;
        gap: 25px !important;
        align-items: center !important;
        margin-bottom: 0 !important;
    }

    .service-container .service-info {
        flex: 1 !important;
    }

    .service-container .service-info h3 {
        font-size: 20px !important;
    }

    .service-container .service-info p {
        font-size: 16px !important;
    }

    .service-container .service-image {
        width: 220px !important;
        flex-shrink: 0 !important;
    }

    .service-container .service-image img {
        width: 220px !important;
        height: 180px !important;
    }

    .service-container .service-image p {
        font-size: 15px !important;
    }
}
/* cart button */

.floating-cart {
    position: fixed;
    top: 1px;       /* change to bottom:20px if you want bottom */
    right: 20px;
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4a90e2; /* blue color */
    cursor: pointer;
    z-index: 1000;
}

.floating-cart:hover {
    transform: scale(1.1);
}

#cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #4a90e2;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}
 /*04-06-2026/
 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fa;
}

/* WHY CHOOSE US SECTION */
.why-choose{
    padding:50px 20px;
    background:#f5f7fa;
}

.container{
    max-width:1400px;
    margin:auto;
}

.why-choose h2{
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.subtitle{
    text-align:center;
    font-size:18px;
    color:#6b7280;
    margin-bottom:60px;
}

/* GRID */
.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CARD */
.card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:40px 25px;
    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* ICON BOX */
.icon{
    width:72px;
    height:72px;
    background:#eef2ff;
    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;
    margin-bottom:25px;
}

/* CARD TITLE */
.card h3{
    font-size:20px;
    font-weight:600;
    color:#111827;
    margin-bottom:10px;
}

/* CARD TEXT */
.card p{
    font-size:16px;
    color:#6b7280;
    line-height:1.5;
}

/* TABLET */
@media(max-width:992px){

    .features{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:768px){

    .why-choose{
        padding:50px 15px;
    }

    .why-choose h2{
        font-size:30px;
    }

    .subtitle{
        font-size:16px;
        margin-bottom:30px;
    }

    .features{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .card{
        min-height:180px;
        padding:25px 15px;
    }

    .icon{
        width:55px;
        height:55px;
        font-size:24px;
        margin-bottom:15px;
    }

    .card h3{
        font-size:16px;
    }

    .card p{
        font-size:13px;
    }
}


/* Home Appliances */

.category-section{
    padding:50px 20px;
}

.category-section h1{
    text-align:center;
    margin-bottom:40px;
}

.category-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.category-card{
    text-decoration:none;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.category-card h3{
    text-align:center;
    padding:15px;
    color:#333;
}

@media(max-width:768px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .category-card img{
        height:140px;
    }
}
/* WHY CHOOSE PJR */
/* WHY CHOOSE PJR */

.why-choose{
    padding:70px 20px;
    background:#f8f8f8;
    text-align:center;
}

.why-choose h2{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:60px;
}

.why-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.why-card{
    text-align:center;
}

.icon-circle{
    width:140px;
    height:140px;

    margin:0 auto 20px;

    border:6px solid #0d5db8;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:60px;
    background:#fff;
}

.why-card h3{
    font-size:28px;
    line-height:1.4;
    color:#444;
    font-weight:600;
}

/* Mobile Responsive */

@media(max-width:768px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .why-choose h2{
        font-size:28px;
    }

    .icon-circle{
        width:100px;
        height:100px;
        font-size:40px;
    }

    .why-card h3{
        font-size:18px;
    }
}
/* are you professional*/

.professional-section{
    text-align:center;
    padding:80px 20px;
    background:#f5f5f5;
}

.icon-box{
    font-size:60px;
    color:#4f7df3;
    margin-bottom:20px;
}

.professional-section h2{
    font-size:52px;
    color:#374151;
    margin-bottom:25px;
}

.professional-section p{
    max-width:900px;
    margin:0 auto 40px;
    font-size:24px;
    line-height:1.8;
    color:#667085;
}

.join-btn{
    display:inline-block;
    padding:16px 40px;
    border:2px solid #4f7df3;
    border-radius:10px;
    color:#4f7df3;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:0.3s;
}

.join-btn:hover{
    background:#4f7df3;
    color:#fff;
}

@media(max-width:768px){

    .professional-section h2{
        font-size:34px;
    }

    .professional-section p{
        font-size:18px;
    }
}
/* JOIN PJR PAGE */

.join-section{
    background:#f5f7fb;
    padding:60px 20px;
    min-height:100vh;
}

.join-container{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.join-container h1{
    text-align:center;
    color:#1f2937;
    margin-bottom:15px;
    font-size:36px;
}

.join-container p{
    text-align:center;
    color:#6b7280;
    margin-bottom:30px;
    line-height:1.6;
}

.join-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.join-form input,
.join-form select,
.join-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:8px;
    font-size:16px;
    outline:none;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus{
    border-color:#2563eb;
}

.join-form button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.join-form button:hover{
    background:#1d4ed8;
}

/* Mobile */

@media(max-width:768px){

    .join-container{
        padding:25px;
    }

    .join-container h1{
        font-size:28px;
    }

    .join-form input,
    .join-form select,
    .join-form textarea{
        font-size:15px;
    }
}
/* popup */
.popup{
    display:none !important;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.popup-content{
    background:#fff;
    width:90%;
    max-width:450px;
    padding:25px;
    border-radius:12px;
    position:relative;
}

.popup-content input{
    width:100%;
    padding:12px;
    margin:10px 0;
}

.popup-content button{
    width:100%;
    padding:12px;
    background:#0d5db8;
    color:white;
    border:none;
    border-radius:6px;
}

.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}
.popup{
    display:none !important;
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:rgba(0,0,0,0.7) !important;
    z-index:99999 !important;

    justify-content:center;
    align-items:center;
}

.popup-content{
    background:#fff;
    width:400px;
    padding:25px;
    border-radius:10px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    cursor:pointer;
    font-size:25px;
}