 /* ===== RESET & GLOBAL ===== */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
 }

 body {
   background: #f4fbfa;
   /* soft background */
   color: #1e2b2a;
   line-height: 1.5;
 }

 /* ===== HEADER (sticky, clean) ===== */
 .header {
   background: #ffffff;
   padding: 0.75rem 0;
   box-shadow: 0 6px 18px rgba(0, 100, 90, 0.06);
   position: sticky;
   top: 0;
   z-index: 10;
 }

 .container {
   width: 90%;
   max-width: 1280px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
 }

 /* LOGO */
 .logo {
   display: flex;
   align-items: center;
 }

 .logo-link {
   display: flex;
   align-items: center;
   gap: 10px;
   text-decoration: none;
 }

 .logo-img {
   width: 46px;
   height: 46px;
   object-fit: contain;
   border-radius: 8px;
 }

 .company-name {
   font-size: 1.5rem;
   font-weight: 700;
   color: #00897b;
   letter-spacing: 0.3px;
 }

 .logo-link:hover .company-name {
   color: #00695c;
 }

 /* SEARCH + LOCATION */
 .search-section {
   display: flex;
   align-items: center;
   gap: 12px;
   flex: 1 1 auto;
   max-width: 600px;
   margin: 0 1rem;
 }

 /* LOCATION */
 .location-box {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 0.9rem;
   background: #f0f7f6;
   padding: 0.4rem 1rem;
   border-radius: 40px;
   color: #11554e;
   cursor: pointer;
 }

 /* MOBILE LOCATION (hidden by default) */
 .mobile-location {
   display: none;
   padding: 0.6rem 1rem;
   background: #f0f7f6;
   font-size: 0.9rem;
   margin-top: 7px;
   margin-left: 10px;
   margin-right: 10px;
 }


 .location-box i {
   color: #0D6EFD;
   font-size: 1.1rem;
 }

 .search-box {
   flex: 1;
   max-width: 500px;
   display: flex;
   border: 1px solid #cae3df;
   border-radius: 50px;
   background: white;
   overflow: hidden;
   margin: 0 1rem;
 }

 .search-box input {
   flex: 1;
   padding: 0.7rem 1rem;
   border: none;
   outline: none;
   font-size: 0.95rem;
 }

 .search-box button {
   padding: 0.7rem 1.5rem;
   background: #00897b;
   color: white;
   border: none;
   cursor: pointer;
 }

 .search-box:focus-within {
   border-color: #00897b;
   box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.2);
 }


 .search-box button:hover {
   background: #00695c;
 }

 /* right menu */
 .nav-right {
   display: flex;
   align-items: center;
 }

 .call-btn {
   background: transparent;
   border: 1.5px solid #00897b;
   color: #00897b;
   padding: 0.6rem 1.5rem;
   border-radius: 40px;
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
   transition: 0.2s;
   margin: 5px;
 }

 .call-btn:hover {
   background: #00897b;
   color: white;
 }

 /* mobile toggle (hidden on desktop) */
 .menu-toggle {
   display: none;
   font-size: 1.9rem;
   cursor: pointer;
   color: #00695c;
   line-height: 1;
   margin-left: 0.5rem;
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {

   .desktop-location {
     display: none;
   }

   .menu-toggle {
     display: block;
   }

   .search-box {
     max-width: none;
   }

 }

 /* ===== HERO ===== */
 .hero {
   padding: 4rem 0;
   background: linear-gradient(145deg, #d6f0ec, #b5dfd9);
 }

 .hero-container {
   display: flex;
   align-items: center;
   gap: 3rem;
   flex-wrap: wrap;
 }

 .hero-content {
   flex: 1 1 400px;
 }

 .hero-content h1 {
   font-size: 2.7rem;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 1.2rem;
   color: #1c3b37;
 }

 .hero-content h1 span {
   color: #00897b;
   display: inline-block;
 }

 .hero-content p {
   font-size: 1.1rem;
   color: #2e4f4a;
   max-width: 550px;
   margin-bottom: 2rem;
 }

 .hero-buttons {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   margin-bottom: 2rem;
 }

 .primary-btn {
   background: #00897b;
   color: white;
   padding: 0.9rem 2.2rem;
   border-radius: 60px;
   font-weight: 600;
   text-decoration: none;
   transition: 0.2s;
   box-shadow: 0 8px 16px rgba(0, 137, 123, 0.25);
 }

 .primary-btn:hover {
   background: #00695c;
   transform: translateY(-2px);
 }

 .secondary-btn {
   border: 2px solid #00897b;
   background: transparent;
   padding: 0.85rem 2.2rem;
   border-radius: 60px;
   font-weight: 600;
   color: #00695c;
   text-decoration: none;
   transition: 0.2s;
 }

 .secondary-btn:hover {
   background: #00897b;
   color: white;
 }

 .hero-features {
   display: flex;
   gap: 2rem;
   flex-wrap: wrap;
   font-size: 1rem;
 }

 .hero-features div i {
   color: #00897b;
   margin-right: 0.5rem;
   font-size: 1.2rem;
 }

 .hero-image {
   flex: 1 1 350px;
   text-align: center;
 }

 .hero-image img {
   width: 100%;
   max-width: 520px;
   border-radius: 30px;
   box-shadow: 0 25px 40px -10px rgba(0, 100, 80, 0.35);
   transition: 0.35s ease;
 }

 .hero-image img:hover {
   transform: scale(1.02) rotate(0.5deg);
 }

 /* ===== ICON SECTION ===== */
 .icon-section {
   max-width: 1200px;
   margin: 5rem auto;
   padding: 0 5%;
   text-align: center;
 }

 .icon-section h2 {
   font-size: 2.3rem;
   font-weight: 700;
   color: #00695c;
   margin-bottom: 3rem;
 }

 /* ===== GRID ===== */
 .icon-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
 }

 /* ===== CARD ===== */
 .icon-card {
   background: #ffffff;
   border-radius: 24px;
   padding: 2rem 1rem;
   text-decoration: none;
   color: inherit;
   transition: all 0.3s ease;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
   border: 1px solid #e0f2f1;
 }

 .icon-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 137, 123, 0.15);
   border-color: #80cbc4;
 }

 .icon-card img {
   width: 70px;
   height: 70px;
   margin-bottom: 1rem;
 }

 .icon-title {
   font-size: 1rem;
   font-weight: 600;
   color: #004d40;
 }

 .extra-icon {
   display: none;
 }

 /* ===== EXPLORE BUTTON ===== */
 .explore-wrapper {
   margin-top: 3.5rem;
 }

 .explore-btn {
   background: #00695c;
   color: #ffffff;
   font-weight: 600;
   padding: 1rem 3rem;
   border-radius: 50px;
   text-decoration: none;
   font-size: 1.1rem;
   display: inline-block;
   transition: all 0.3s ease;
   box-shadow: 0 8px 20px rgba(0, 150, 136, 0.3);
 }

 .explore-btn:hover {
   background: linear-gradient(135deg, #009688, #00695c);
   transform: scale(1.05);
   box-shadow: 0 12px 25px rgba(0, 105, 92, 0.4);
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 992px) {
   .icon-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 576px) {
   .icon-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .icon-section h2 {
     font-size: 1.8rem;
   }
 }

 /* ===== SERVICES SLIDER (deals) ===== */
 .services-section {
   padding: 3rem 5% 4rem;
   background: white;
 }

 .section-header h2 {
   font-size: 2.2rem;
   color: #00695c;
   margin-bottom: 2rem;
 }

 .slider-container {
   max-width: 1300px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 0.5rem;
 }

 .slider {
   display: flex;
   gap: 1.5rem;
   overflow-x: auto;
   scroll-behavior: smooth;
   scrollbar-width: none;
   padding: 1rem 0.2rem;
 }

 .slider::-webkit-scrollbar {
   display: none;
 }

 .service-card {
   flex: 0 0 auto;
   width: 328px;
   height: 185px;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 12px 28px rgba(0, 100, 80, 0.15);
   transition: 0.25s;
 }

 .service-card:hover {
   transform: scale(1.02);
 }

 .service-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .slider-arrow {
   width: 44px;
   height: 44px;
   border-radius: 60px;
   background: white;
   border: 2px solid #00897b;
   color: #00897b;
   font-size: 2rem;
   font-weight: 400;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: 0.15s;
   line-height: 1;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 }

 .slider-arrow:hover {
   background: #00897b;
   color: white;
 }

 /* ===== MOST BOOKED + APPLIANCES (two identical sections) ===== */
 /* Section */
 .cleaning-section {
   padding: 3.5rem 5%;
   background: #f4fbfa;
 }

 .section-top {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   margin-bottom: 2rem;
 }

 .section-top h2 {
   font-size: 2rem;
   color: #00695c;
 }

 .see-all {
   text-decoration: none;
   font-weight: 600;
   color: #00897b;
   border-bottom: 2px solid transparent;
   transition: 0.2s;
 }

 .see-all:hover {
   border-bottom-color: #00897b;
 }

 /* Slider */
 .cleaning-slider {
   display: flex;
   gap: 1.8rem;
   overflow-x: auto;
   scrollbar-width: none;
   padding: 0.5rem 0.2rem;
 }

 .cleaning-slider::-webkit-scrollbar {
   display: none;
 }

 /* Card */
 .clean-card {
   min-width: 250px;
   background: white;
   border-radius: 24px;
   padding: 1rem;
   box-shadow: 0 10px 22px rgba(0, 100, 80, 0.08);
   transition: 0.3s;
   text-decoration: none;
   display: block;
   color: inherit;
 }

 .clean-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 14px 28px rgba(0, 100, 80, 0.15);
 }

 .clean-card img {
   width: 100%;
   height: 170px;
   object-fit: cover;
   border-radius: 18px;
   margin-bottom: 1rem;
 }

 .clean-card h4 {
   font-size: 1.1rem;
   font-weight: 600;
   margin-bottom: 0.4rem;
   color: #1e3b36;
 }

 .rating {
   font-size: 0.95rem;
   color: #f4b740;
   font-weight: 500;
   margin-bottom: 0.3rem;
 }

 .price {
   font-weight: 700;
   font-size: 1.2rem;
   color: #00695c;
 }

 /* ===== HOW FIXORA WORKS ===== */
 .premium-process {
   background: white;
   padding: 5rem 5%;
   text-align: center;
 }

 .process-wrapper h2 {
   font-size: 2.5rem;
   color: #00695c;
   margin-bottom: 0.8rem;
 }

 .process-desc {
   font-size: 1.2rem;
   color: #3f635c;
   margin-bottom: 4rem;
 }

 .timeline {
   display: flex;
   justify-content: space-between;
   gap: 1rem 2rem;
   flex-wrap: wrap;
   position: relative;
   max-width: 1100px;
   margin: 0 auto;
 }

 .timeline::before {
   content: '';
   position: absolute;
   top: 30px;
   left: 10%;
   right: 10%;
   height: 4px;
   background: linear-gradient(90deg, #b2dfdb, #00897b, #b2dfdb);
   z-index: 0;
   border-radius: 4px;
 }

 .timeline-step {
   flex: 1 1 190px;
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(2px);
   z-index: 2;
   padding: 1rem 0.5rem;
 }

 .circle {
   width: 60px;
   height: 60px;
   background: #00897b;
   color: white;
   font-size: 1.8rem;
   font-weight: 700;
   border-radius: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.2rem;
   box-shadow: 0 14px 22px #00897b55;
   transition: 0.25s;
 }

 .timeline-step:hover .circle {
   background: #00695c;
   transform: scale(1.08);
 }

 .timeline-step h3 {
   color: #11554e;
   margin-bottom: 0.5rem;
 }

 .timeline-step p {
   font-size: 0.95rem;
   color: #3a5e57;
 }

 /* ===== FOOTER ===== */
 .footer {
   background: #00695c;
   color: #e5f5f2;
   padding: 4rem 5% 1.5rem;
 }

 .footer-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 3rem;
   max-width: 1300px;
   margin: 0 auto;
 }

 .footer-col {
   flex: 1 1 200px;
 }

 .footer-logo {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 1rem;
 }

 .footer-logo img {
   width: 48px;
   height: 48px;
   border-radius: 12px;
   object-fit: cover;
 }

 .footer-logo h2 {
   font-size: 1.7rem;
   color: white;
 }

 .footer-col p,
 .footer-col li {
   font-size: 0.95rem;
   color: #ceece6;
 }

 .footer-col h3 {
   color: white;
   margin-bottom: 1.2rem;
   font-size: 1.3rem;
 }

 .footer-col ul {
   list-style: none;
 }

 .footer-col ul li {
   margin-bottom: 0.6rem;
 }

 .footer-col ul li a {
   color: #ceece6;
   text-decoration: none;
   transition: 0.2s;
 }

 .footer-col ul li a:hover {
   color: white;
   padding-left: 4px;
 }

 .footer-col i {
   margin-right: 0.6rem;
   color: #b2dfdb;
 }

 .social-icons {
   display: flex;
   gap: 0.8rem;
   margin-top: 1.5rem;
 }

 .social-icons a {
   background: #00897b;
   color: white;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: 0.2s;
   text-decoration: none;
   font-size: 1.2rem;
 }

 .social-icons a:hover {
   background: white;
   color: #00695c;
 }

 .footer-bottom {
   text-align: center;
   border-top: 1px solid #3f887b;
   padding-top: 2rem;
   margin-top: 3rem;
   font-size: 0.9rem;
   color: #b5dfd5;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 1000px) {
   .search-section {
     order: 3;
     max-width: 100%;
     margin: 1rem 0 0;
     flex-basis: 100%;
   }

   .container {
     justify-content: space-between;
   }
 }

 @media (max-width: 768px) {
   .search-section {
     display: none;
     /* hidden, toggled by menu button */
   }

   .menu-toggle {
     display: block;
   }

   .hero-content h1 {
     font-size: 2.2rem;
   }

   .timeline::before {
     display: none;
   }

   .timeline {
     flex-direction: column;
     align-items: center;
   }
 }

 @media (max-width: 480px) {
   .company-name {
     font-size: 1.2rem;
   }

   .logo-img {
     width: 38px;
     height: 38px;
   }

   .slider-arrow {
     display: none;
   }

   .call-btn {
     display: none;
   }
 }

 .search-error {
  border: 2px solid red;
}

/* ===== POPUP BACKGROUND ===== */
.location-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
  z-index: 9999;
}

/* ACTIVE STATE */
.location-popup.show {
  opacity: 1;
  visibility: visible;
}

/* ===== POPUP CARD ===== */
.popup-card {
  background: white;
  padding: 25px;
  width: 90%;
  max-width: 380px;
  border-radius: 14px;
  text-align: center;

  transform: scale(0.85);
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* SCALE ANIMATION */
.location-popup.show .popup-card {
  transform: scale(1);
}

/* BUTTON */
.popup-card button {
  margin-top: 15px;
  padding: 10px 38px;
  border: none;
  background: #1c3b37;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.popup-card h3 {
  margin-bottom: 10px;
}
