*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f5f9ff;
  color:#111827;
  overflow-x:hidden;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:85px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  z-index:1000;
  border-bottom:1px solid #e5e7eb;
}

/* LOGO */

.logo-box{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-box img{
  width:54px;
  height:54px;
  object-fit:cover;
  border-radius:50%;
  background:#071133;
  padding:4px;
  box-shadow:0 6px 18px rgba(37,99,235,.25);
}

.logo-text{
  display:flex;
  flex-direction:column;
}

.logo-text h1{
  font-size:32px;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-2px;
  line-height:1;
}

.logo-text h1 span{
  color:#2563eb;
}

.logo-text p{
  font-size:6px;
  letter-spacing:3px;
  color:#64748b;
  margin-top:6px;
  font-weight:700;
}

/* HAMBURGER */

.hamburger{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#eff6ff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.hamburger div{
  width:24px;
  height:18px;
  position:relative;
}

.hamburger span{
  position:absolute;
  width:100%;
  height:3px;
  background:#111827;
  border-radius:10px;
  left:0;
}

.hamburger span:nth-child(1){
  top:0;
}

.hamburger span:nth-child(2){
  top:7px;
  width:75%;
  right:0;
  left:auto;
}

.hamburger span:nth-child(3){
  bottom:0;
}

/* HERO */

.hero{
  padding:125px 18px 120px;
}

.card{
  background:white;
  border-radius:35px;
  padding:35px 25px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.tag{
  display:inline-block;
  background:#dbeafe;
  color:#2563eb;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.title{
  font-size:52px;
  line-height:1;
  font-weight:800;
  color:#0f172a;
  margin-bottom:20px;
}

.title span{
  color:#2563eb;
}

.subtitle{
  color:#64748b;
  font-size:18px;
  line-height:1.7;
  margin-bottom:35px;
}

.btn{
  width:100%;
  border:none;
  height:64px;
  border-radius:20px;
  background:#2563eb;
  color:white;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(37,99,235,.3);
}

/* BOTTOM NAV */

.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:82px;
  background:white;
  border-top:1px solid #e5e7eb;
  display:flex;
  justify-content:space-around;
  align-items:center;
  z-index:1000;
}

.nav-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:#64748b;
  font-weight:500;
  text-decoration:none;
}

.nav-item svg{
  width:25px;
  height:25px;
}

.nav-item.active{
  color:#2563eb;
}

.nav-item.active .icon-wrap{
  background:#dbeafe;
}

.icon-wrap{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* MENU */

.menu-overlay{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,.4);
  backdrop-filter:blur(8px);
  z-index:9999;
  transition:.45s ease;
  display:flex;
  justify-content:flex-end;
}

.menu-overlay.active{
  right:0;
}

.menu-box{
  width:72%;
  max-width:290px;
  height:100%;
  background:white;
  padding:24px 22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:-10px 0 40px rgba(0,0,0,.12);
}

.menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.menu-top h2{
  font-size:30px;
  font-weight:800;
  color:#0f172a;
}

.menu-top h2 span{
  color:#2563eb;
}

.menu-top button{
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:#eff6ff;
  color:#111827;
  font-size:22px;
}

.menu-links{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:35px;
}

.menu-links a{
  text-decoration:none;
  color:#111827;
  font-size:18px;
  font-weight:600;
  padding:14px 14px;
  border-radius:18px;
}

.active-menu{
  background:#2563eb;
  color:white !important;
}

.estimate-btn{
  color:#2563eb !important;
  font-weight:700;
}

/* HELP BOX */

.help-box{
  background:#071133;
  border-radius:26px;
  padding:20px;
  color:white;
}

.help-box p{
  font-size:15px;
  opacity:.7;
  margin-bottom:10px;
}

.help-box a{
  color:#60a5fa;
  font-size:20px;
  font-weight:700;
  text-decoration:none;
}

/* FOOTER */

.main-footer{
  background:#071133;
  color:white;
  padding:50px 24px 100px;
  margin-top:60px;
}

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

.footer-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.footer-icon{
  min-width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(37,99,235,.15);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-icon i{
  color:#2563eb;
  font-size:24px;
}

.footer-item h3{
  font-size:22px;
  margin-bottom:8px;
  color:white;
}

.footer-item p{
  color:#cbd5e1;
  font-size:17px;
  line-height:1.7;
}

/* FOOTER LOGO */

.footer-text-logo{
  background:white;
  padding:14px 18px;
  border-radius:16px;
  display:inline-flex;
  flex-direction:column;
  margin-top:45px;
  margin-bottom:24px;
}

.footer-text-logo h2{
  font-size:34px;
  font-weight:800;
  line-height:1;
  letter-spacing:-2px;
  color:#0f172a;
}

.footer-text-logo h2 span{
  color:#2563eb;
}

.footer-text-logo p{
  margin-top:8px;
  font-size:11px;
  letter-spacing:3px;
  color:#64748b;
  font-weight:700;
}

/* SOCIAL */

.social-links{
  display:flex;
  gap:14px;
  margin-top:20px;
}

.social-links a{
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  text-decoration:none;
  font-size:20px;
}

/* QUICK LINKS */

.footer-links{
  margin-top:45px;
}

.footer-links h2,
.footer-map h2{
  font-size:32px;
  margin-bottom:24px;
}

.footer-links a{
  display:block;
  color:#cbd5e1;
  text-decoration:none;
  margin-bottom:18px;
  font-size:20px;
}

/* MAP */

.footer-map{
  margin-top:45px;
}

/* COPYRIGHT */

.copyright{
  margin-top:45px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#cbd5e1;
  font-size:18px;
  text-align:center;
}

.copyright span{
  color:#2563eb;
  font-weight:700;
}

/* DEVELOPER CREDIT */

.developer-credit{
  text-align:center;
  margin-top:6px;
  font-size:14px;
  color:#94a3b8;
  padding-bottom:10px;
}

.developer-credit a{
  color:#2563eb;
  text-decoration:none;
  font-weight:700;
}

/* MOBILE */

@media(max-width:480px){

  .logo-box img{
    width:48px;
    height:48px;
  }

  .logo-text h1{
    font-size:26px;
  }

  .logo-text p{
    font-size:9px;
    letter-spacing:2px;
  }

  .title{
    font-size:42px;
  }

  .subtitle{
    font-size:16px;
  }

  .footer-links h2,
  .footer-map h2{
    font-size:28px;
  }
}

/* ABOUT SECTION */

.about-section{
  padding:40px 24px 20px;
  margin-top: 60px;
}

.about-box{
  background:white;
  border-radius:35px;
  padding:35px 25px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.about-tag{
  display:inline-block;
  background:#dbeafe;
  color:#2563eb;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
}

.about-title{
  font-size:42px;
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
  margin-bottom:18px;
}

.about-title span{
  color:#2563eb;
}

.about-text{
  color:#64748b;
  font-size:18px;
  line-height:1.8;
}

/* MOBILE */

@media(max-width:480px){

  .about-section{
    padding:30px 18px 10px;
  }

  .about-title{
    font-size:34px;
  }

  .about-text{
    font-size:16px;
  }

}

/* WHY SECTION */

.why-section1{
  padding:40px 24px;
}

.why-title{
  font-size:48px;
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
  margin-bottom:30px;
  letter-spacing:-2px;
}

.why-title span{
  color:#2563eb;
  display:block;
}

.why-text{
  color:#64748b;
  font-size:18px;
  line-height:1.9;
  margin-bottom:24px;
}

/* MOBILE */

@media(max-width:480px){

  .why-section{
    padding:30px 18px;
  }

  .why-title{
    font-size:38px;
  }

  .why-text{
    font-size:16px;
    line-height:1.8;
  }

}

/* SERVICES LIST */

.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 20px;
  margin-top:40px;
  padding: 0px 6px;
}

.service-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:600;
  color:#0f172a;
  line-height:1.5;
  padding: 0px 16px;
  margin :6px;
}

.service-item i{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:50%;
  border:2px solid #84cc16;
  color:#84cc16;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-style:normal;
  font-weight:800;
}

/* OFFICE BOX */

.office-box{
  margin:45px 6px 0;
  background:#f8fafc;
  border-radius:28px;
  padding:28px 24px;
  border:1px solid #e5e7eb;
}

.office-box h3{
  font-size:28px;
  color:#0f172a;
  margin-bottom:14px;
  font-weight:800;
}

.office-box p{
  font-size:17px;
  line-height:1.8;
  color:#64748b;
}

/* MOBILE */

@media(max-width:480px){

  .service-list{
    gap:20px 14px;
    padding:0 2px;
  }

  .service-item{
    font-size:15px;
  }

  .office-box{
    margin-top:40px;
    padding:24px 20px;
  }

  .office-box h3{
    font-size:24px;
  }

  .office-box p{
    font-size:15px;
  }

}

/* WHY SECTION */

.why-section{
  background:#071133;
  padding:70px 24px;
  margin-top:60px;
}

.why-top{
  text-align:center;
  margin-bottom:50px;
}

.why-tag{
  display:inline-block;
  background:rgba(37,99,235,.18);
  color:#60a5fa;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
}

.why-top h2{
  font-size:46px;
  line-height:1.2;
  font-weight:800;
  color:white;
  margin-bottom:20px;
}

.why-top h2 span{
  color:#2563eb;
}

.why-top p{
  color:#94a3b8;
  font-size:19px;
  line-height:1.8;
}

/* GRID */

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

/* CARD */

.why-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
  border-radius:32px;
  padding:34px 24px;
  text-align:center;
  backdrop-filter:blur(8px);
}

.why-icon{
  width:86px;
  height:86px;
  margin:0 auto 24px;
  border-radius:26px;
  background:rgba(132,204,22,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
}

.why-card h3{
  color:white;
  font-size:32px;
  font-weight:800;
  margin-bottom:16px;
}

.why-card p{
  color:#94a3b8;
  font-size:18px;
  line-height:1.8;
}

/* MOBILE */

@media(max-width:480px){

  .why-section{
    padding:60px 18px;
  }

  .why-top h2{
    font-size:36px;
  }

  .why-top p{
    font-size:16px;
  }

  .why-grid{
    gap:18px;
  }

  .why-card{
    padding:28px 18px;
    border-radius:26px;
  }

  .why-icon{
    width:72px;
    height:72px;
    font-size:30px;
    border-radius:22px;
  }

  .why-card h3{
    font-size:24px;
  }

  .why-card p{
    font-size:15px;
    line-height:1.7;
  }

}

/* TESTIMONIAL SECTION */

.testimonial-section{
  padding:70px 24px;
  background:#f8fafc;
  overflow:hidden;
}

.testimonial-top{
  text-align:center;
  margin-bottom:45px;
}

.testimonial-top h2{
  font-size:44px;
  font-weight:800;
  color:#071133;
  margin-bottom:16px;
}

.testimonial-top h2 span{
  color:#2563eb;
}

.testimonial-top p{
  color:#64748b;
  font-size:18px;
  line-height:1.8;
}

/* SLIDER */

.testimonial-slider{
  display:flex;
  gap:22px;
  width:max-content;
  animation:slideTestimonial 28s linear infinite;
}

/* CARD */

.testimonial-card{
  width:320px;
  background:white;
  border-radius:30px;
  padding:28px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  flex-shrink:0;
}

.client-info{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}

.client-img{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#2563eb;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:700;
}

.client-info h3{
  font-size:22px;
  color:#071133;
  margin-bottom:4px;
}

.client-info span{
  color:#64748b;
  font-size:14px;
}

.testimonial-card p{
  color:#475569;
  font-size:17px;
  line-height:1.9;
}

/* AUTO SLIDE */

@keyframes slideTestimonial{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* MOBILE */

@media(max-width:480px){

  .testimonial-section{
    padding:60px 18px;
  }

  .testimonial-top h2{
    font-size:34px;
  }

  .testimonial-top p{
    font-size:16px;
  }

  .testimonial-card{
    width:290px;
    padding:24px;
  }

  .testimonial-card p{
    font-size:15px;
  }

}

/* CEO SECTION */

.ceo-section{
  padding:70px 24px;
  background:#071133;
}

.ceo-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  border-radius:36px;
  padding:40px 28px;
  text-align:center;
  backdrop-filter:blur(10px);
}

/* IMAGE */

.ceo-image{
  width:170px;
  height:170px;
  margin:0 auto 28px;
  border-radius:50%;
  padding:5px;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  box-shadow:0 10px 40px rgba(37,99,235,.35);
}

.ceo-image img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  border:5px solid #071133;
}

/* TAG */

.ceo-tag{
  display:inline-block;
  background:rgba(37,99,235,.15);
  color:#60a5fa;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
}

/* TEXT */

.ceo-content h2{
  font-size:42px;
  color:white;
  font-weight:800;
  margin-bottom:12px;
}

.ceo-content h2 span{
  color:#2563eb;
}

.ceo-content h4{
  color:#cbd5e1;
  font-size:20px;
  font-weight:600;
  margin-bottom:22px;
}

.ceo-content p{
  color:#94a3b8;
  font-size:18px;
  line-height:1.9;
  max-width:700px;
  margin:auto;
}

/* MOBILE */

@media(max-width:480px){

  .ceo-section{
    padding:60px 18px;
  }

  .ceo-card{
    padding:34px 22px;
    border-radius:30px;
  }

  .ceo-image{
    width:140px;
    height:140px;
  }

  .ceo-content h2{
    font-size:32px;
  }

  .ceo-content h4{
    font-size:17px;
  }

  .ceo-content p{
    font-size:15px;
    line-height:1.8;
  }

}

/* CTA SECTION */

.cta-section{
  padding:70px 24px;
  background:#f5f9ff;
}

.cta-box{
  background:#071133;
  border-radius:36px;
  padding:50px 28px;
  text-align:center;
}

.cta-box h2{
  color:white;
  font-size:46px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:20px;
}

.cta-box p{
  color:#cbd5e1;
  font-size:19px;
  line-height:1.8;
  margin-bottom:36px;
}

/* BUTTONS */

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.call-btn,
.contact-btn{
  height:62px;
  padding:0 28px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  transition:.3s;
}

.call-btn{
  background:#2563eb;
  color:white;
}

.contact-btn{
  background:white;
  color:#071133;
}

.call-btn:hover,
.contact-btn:hover{
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:480px){

  .cta-section{
    padding:60px 18px;
  }

  .cta-box{
    padding:40px 22px;
    border-radius:30px;
  }

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

  .cta-box p{
    font-size:16px;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .call-btn,
  .contact-btn{
    width:100%;
    font-size:16px;
  }

}

/* FAQ SECTION */

.faq-section{
  padding:70px 24px;
  background:#f5f9ff;
}

.faq-top{
  text-align:center;
  margin-bottom:45px;
}

.faq-top h2{
  font-size:46px;
  font-weight:800;
  color:#071133;
  line-height:1.2;
}

.faq-top h2 span{
  color:#2563eb;
}

/* FAQ BOX */

.faq-container{
  background:white;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.faq-item{
  border-bottom:1px solid #e5e7eb;
}

.faq-item:last-child{
  border-bottom:none;
}

/* QUESTION */

.faq-question{
  width:100%;
  background:none;
  border:none;
  outline:none;
  padding:28px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  font-size:24px;
  font-weight:700;
  color:#071133;
  cursor:pointer;
}

.faq-question span{
  font-size:34px;
  color:#2563eb;
}

/* ANSWER */

.faq-answer{
  display:none;
  padding:0 26px 28px;
}

.faq-answer p{
  color:#64748b;
  font-size:18px;
  line-height:1.9;
  margin-bottom:16px;
}

.faq-answer ul{
  padding-left:20px;
  margin-bottom:16px;
}

.faq-answer li{
  color:#071133;
  font-size:17px;
  margin-bottom:10px;
  line-height:1.7;
}

/* ACTIVE */

.faq-item.active .faq-answer{
  display:block;
}

/* MOBILE */

@media(max-width:480px){

  .faq-section{
    padding:60px 18px;
  }

  .faq-top h2{
    font-size:36px;
  }

  .faq-question{
    font-size:20px;
    padding:24px 20px;
  }

  .faq-question span{
    font-size:28px;
  }

  .faq-answer{
    padding:0 20px 24px;
  }

  .faq-answer p,
  .faq-answer li{
    font-size:15px;
  }

}

/* CONTACT HERO */

.contact-hero{
  padding:140px 24px 40px;
  background:#f5f9ff;
}

.contact-box{
  max-width:900px;
  margin:auto;
}

.contact-box h1{
  font-size:60px;
  font-weight:800;
  color:#071133;
  margin-bottom:30px;
  line-height:1.1;
}

.contact-box h1 span{
  color:#2563eb;
}

.contact-box p{
  font-size:21px;
  line-height:2;
  color:#64748b;
  margin-bottom:28px;
}

/* MOBILE */

@media(max-width:480px){

  .contact-hero{
    padding:120px 18px 30px;
  }

  .contact-box h1{
    font-size:44px;
    margin-bottom:24px;
  }

  .contact-box p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
  }

}

/* CONTACT ITEMS */

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-bottom:40px;
}

.contact-icon{
  min-width:72px;
  height:72px;
  border-radius:22px;
  background:rgba(37,99,235,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:6px;
}

.contact-icon i{
  color:#2563eb;
  font-size:28px;
}

.contact-text h3{
  font-size:34px;
  color:#071133;
  margin-bottom:10px;
  font-weight:800;
}

.contact-text p,
.contact-text a{
  color:#64748b;
  font-size:21px;
  line-height:1.8;
  text-decoration:none;
}

/* MOBILE */

@media(max-width:480px){

  .contact-item{
    gap:16px;
    margin-bottom:34px;
  }

  .contact-icon{
    min-width:58px;
    height:58px;
    border-radius:18px;
  }

  .contact-icon i{
    font-size:22px;
  }

  .contact-text h3{
    font-size:24px;
  }

  .contact-text p,
  .contact-text a{
    font-size:17px;
    line-height:1.7;
  }

}

/* FORM */

.form-section{
  padding:70px 24px;
}

.form-box{
  background:white;
  border-radius:36px;
  padding:40px 26px;
  box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.form-top{
  margin-bottom:35px;
}

.form-top h2{
  font-size:42px;
  font-weight:800;
  color:#071133;
  margin-bottom:12px;
}

.form-top h2 span{
  color:#2563eb;
}

.form-top p{
  color:#64748b;
  font-size:18px;
  line-height:1.8;
}

.input-box{
  margin-bottom:24px;
}

.input-box label{
  display:block;
  margin-bottom:10px;
  font-weight:700;
  color:#071133;
}

.input-box input,
.input-box textarea{

  width:100%;
  border:none;
  outline:none;

  background:#f8fafc;

  border:2px solid #e2e8f0;

  border-radius:18px;

  padding:18px 20px;

  font-size:16px;

  transition:.3s;
}

.input-box textarea{
  min-height:160px;
  resize:none;
}

.input-box input:focus,
.input-box textarea:focus{

  border-color:#2563eb;
  background:white;
}

.submit-btn{

  width:100%;
  height:62px;

  border:none;

  border-radius:18px;

  background:#2563eb;

  color:white;

  font-size:18px;

  font-weight:700;

  cursor:pointer;
}

#formStatus{
  margin-top:18px;
  text-align:center;
  font-weight:600;
  color:#2563eb;
}

/* MOBILE */

@media(max-width:480px){

  .form-section{
    padding:60px 18px;
  }

  .form-box{
    padding:34px 20px;
  }

  .form-top h2{
    font-size:34px;
  }

}

/* CLEANING SECTION */

.cleaning-section{
  padding:70px 24px;
  background:#f5f9ff;
}

.cleaning-container{
  max-width:1000px;
  margin:auto;
}

.cleaning-tag{
  display:inline-block;
  background:#dbeafe;
  color:#2563eb;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:24px;
}

.cleaning-container h2{
  font-size:54px;
  line-height:1.1;
  font-weight:800;
  color:#071133;
  margin-bottom:28px;
}

.cleaning-container h2 span{
  color:#2563eb;
  display:block;
}

.cleaning-container p{
  color:#64748b;
  font-size:19px;
  line-height:2;
  margin-bottom:28px;
}

.cleaning-call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:64px;
  padding:0 28px;
  border-radius:18px;
  background:#2563eb;
  color:white;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  margin-top:10px;
}

/* MOBILE */

@media(max-width:480px){

  .cleaning-section{
    padding:60px 18px;
  }

  .cleaning-container h2{
    font-size:38px;
  }

  .cleaning-container p{
    font-size:16px;
    line-height:1.9;
  }

  .cleaning-call-btn{
    width:100%;
    font-size:16px;
  }

}

/* DEEP CLEAN SECTION */

.deep-clean-section{
  padding:70px 24px;
  background:#f5f9ff;
}

/* IMAGE */

.deep-clean-image{
  width:100%;
  margin-bottom:50px;
}

.deep-clean-image img{
  width:100%;
  border-radius:36px;
  object-fit:cover;
  display:block;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* CONTENT */

.deep-clean-tag{
  display:inline-block;
  background:#dbeafe;
  color:#2563eb;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:24px;
}

.deep-clean-content h2{
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  color:#071133;
  margin-bottom:28px;
}

.deep-clean-content h2 span{
  color:#2563eb;
  display:block;
}

.deep-clean-content p{
  color:#64748b;
  font-size:18px;
  line-height:2;
  margin-bottom:28px;
}

/* MOBILE */

@media(max-width:480px){

  .deep-clean-section{
    padding:60px 18px;
  }

  .deep-clean-image{
    margin-bottom:38px;
  }

  .deep-clean-content h2{
    font-size:38px;
  }

  .deep-clean-content p{
    font-size:16px;
    line-height:1.9;
  }

}

/* WHY SECTION */

.why-section{
  padding:70px 24px;
  background:#071133;
}

/* IMAGE */

.why-image,
.why-bottom-image{
  width:100%;
  margin-bottom:50px;
}

.why-image img,
.why-bottom-image img{
  width:100%;
  border-radius:36px;
  display:block;
  object-fit:cover;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
}

/* CONTENT */

.why-tag{
  display:inline-block;
  background:rgba(255,255,255,.1);
  color:#2563eb;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:24px;
}

.why-content h2{
  font-size:54px;
  line-height:1.1;
  font-weight:800;
  color:white;
  margin-bottom:28px;
}

.why-content h2 span{
  color:#2563eb;
  display:block;
}

.why-content p{
  color:#cbd5e1;
  font-size:18px;
  line-height:2;
  margin-bottom:26px;
}

/* GRID */

.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:50px;
  margin-bottom:55px;
}

/* CARD */

.why-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  padding:26px 20px;
}

.why-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:rgba(132,204,22,.15);
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:20px;
  font-weight:700;
}

.why-card h3{
  color:white;
  font-size:22px;
  margin-bottom:14px;
  line-height:1.4;
}

.why-card p{
  color:#94a3b8;
  font-size:15px;
  line-height:1.8;
}

/* MOBILE */

@media(max-width:480px){

  .why-section{
    padding:60px 18px;
  }

  .why-content h2{
    font-size:38px;
  }

  .why-content p{
    font-size:16px;
    line-height:1.9;
  }

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

  .why-card h3{
    font-size:20px;
  }

}