:root {
  --bg: #ffffff;
  --paper: #f6f6f6;
  --text: #1c1c1c;
  --muted: #6e6e6e;
  --line: rgba(0, 0, 0, .12);

  /* accent قريب من vibe Editorial */
  --accent: #f26b6b;

  --radius: 10px;
  --sidew: 320px;
}

h1,
h2,
h3 {
  color: #4f5b6f;
  margin: 10px 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;  
  font-weight: 700;
}


.third h3 {
  color: #4f5b6f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 35px;
  
}

.third img {
  width: 100%;
  border-radius: 10px;
}


h2 {
  color: #4f5b6f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 35px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

.wrap {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.side {
  width: var(--sidew);
  background: var(--paper);
  border-right: 1px solid var(--line);
  position: fixed;
}

.side__inner {

  height: 100vh;
  overflow: auto;
  padding: 28px 24px;
}

/* .side__search input{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  outline:none;
} */
.widget {
  margin-top: 0;
}

.widget__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 15px 0 14px 0;
  color: #e60000;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.menu li {
  border-bottom: 1px solid var(--line);
}

.menu a {
  display: block;
  padding: 12px 0;
}

.menu a:hover {
  color: var(--accent);
}



.mini {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.mini:last-child {
  border-bottom: none;
}

.mini__img {
  height: 58px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(242, 107, 107, .40), rgba(0, 0, 0, .06));
}

.mini__txt h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.mini__txt p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.contact {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.ico {
  width: 22px;
  display: inline-block;
}

.side__foot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Main */
.main {
  flex: 1;
  min-width: 0;
  padding: 28px 40px;
  margin-left: var(--sidew);
}

/* Top header */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 28px;
}

.brand strong {
  font-weight: 900;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.social a:hover {
  color: var(--accent);
  border-color: rgba(242, 107, 107, .6);
}

.hamb {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Banner */
.banner {
  display: grid;
  grid-template-columns: 1.7fr 2fr;
  gap: 26px;
  align-items: center;
  padding: 10px 0 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.banner h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
  color: #4f5b6f;
  font-family: 'Montserrat', sans-serif;
}

.banner__kicker {
  margin: 10px 0 0;
  color: #4f5b6f;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.9;
}

.banner__img {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/carpet-clean.webp);
  background-size: cover;
  background-position: center;
}

.banner__img2 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/carpet-stain-removal.webp);
  background-size: cover;
  background-position: center;
}

.banner__img3 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/rug-cleaning.webp);
  background-size: cover;
  background-position: center;
}

.banner__img4 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/upholstery-cleaning.webp);
  background-size: cover;
  background-position: center;
}

.banner__img5 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/tile-grout-cleaning.webp);
  background-size: cover;
  background-position: center;
}

.banner__img6 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/air-duct-cleaning.webp);
  background-size: cover;
  background-position: center;
}

.banner__img7 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/air-vent.webp);
  background-size: cover;
  background-position: center;
}


.banner__img8 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/dryer-vent-cleaning.webp);
  background-size: cover;
  background-position: center;
}

.banner__img9 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/contact.webp);
  background-size: cover;
  background-position: center;
}

.banner__img10 {
  width: 100%;
  max-width: 800px;
  height: 480px;
  border-radius: var(--radius);
  background-image: url(../img/service-locations.webp);
  background-size: cover;
  background-position: center;
}




.bar {
  width: 86px;
  height: 3px;
  margin-top: 30px;
  background: #f52c30;
  border-radius: 99px;
  margin-bottom: 14px;
}


/* Buttons */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  font-size: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 17px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.btn--primary {
  border-color: #f42c31;
  color: #4f5b6f;
  background: rgba(242, 107, 107, .10);
}

.btn--small {
  padding: 9px 12px;
}

.btn--block {
  display: flex;
  width: 100%;
  margin-top: 12px;
}

/* Sections */
.section {
  margin: 34px 0;
}

.section__head {
  display:inline-block;
  padding-bottom:6px;
  border-bottom:3px solid var(--accent);
  line-height:1.2;
  
}

.section__head h2{
  margin: 0 0 15px 0;
}

.section-faq {
  margin: 30px 0;
  padding: 50px 0;
  background-image: url(../img/back-faq.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.section-1 {
  margin: 20px 0;
  padding: 20px 0;
}



/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feat {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feat__ico {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 107, 107, .35);
  background: rgba(242, 107, 107, .08);
  font-size: 20px;
}

.feat h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.feat p {
  margin: 0;
  line-height: 1.7;
}

/* services */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.service {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.service__img1 {
  height: 200px;
  background-image: url(../img/service1.webp);
}

.service__img2 {
  height: 200px;
  background-image: url(../img/service2.webp);
}

.service__img3 {
  height: 200px;
  background-image: url(../img/service3.webp);
}

.service__img4 {
  height: 200px;
  background-image: url(../img/service4.webp);
}

.service__img5 {
  height: 200px;
  background-image: url(../img/service5.webp);
}

.service__img6 {
  height: 200px;
  background-image: url(../img/service6.webp);
}



.service__body {
  padding: 14px;
}

.service__body h3 {
  margin: 0 0 8px;
}

.service__body p {
  margin: 0 0 12px;
  line-height: 1.7;
}

/* FAQ */
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 14px;
}

.faq {
  width: 70%;
  margin: auto;
  color: #4f5b6f;
}

.faq-title {
  width: 70%;
  margin: auto;
}


.faq details+details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 10px 0 0;
  line-height: 1.7;
}

/* Form */
/* .form{ display:grid; gap: 12px; max-width: 860px; }
.form__row{
  display:grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
label span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
input, textarea, select{
  width:100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:#fff;
  outline:none;
}
textarea{ resize: vertical; } */

.footer {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 30px;
}

/* Mobile drawer sidebar */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 90;
}

/* .no-scroll{ overflow:hidden; } */


.info-section {
  display: flex;
  gap: 15px;
  padding: 20px;
}

.info-box {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
}

.info-box h2 {
  margin-bottom: 10px;
}

.info-box p {
  line-height: 1.6;
}




.icon-red {
  color: #e60000;
  margin-inline-end: 8px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin: 10px 0;
}

.contact-info {
  font-size: 15px;
}





.section {
  padding: 10px 2%;
}


.section-title {
  text-align: center;
  font-size: 35px;
  margin-bottom: 50px;
}


.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}


.text-box p {
  line-height: 1.8;
  color: #555;
}

.image-box img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px;
}

.offer img {
  width: 100%;
  border-radius: 10px;
  display: block;
}


@media (max-width:900px) {
  .info-section {
    flex-direction: column;
  }

  .section-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

}

@media (max-width: 980px) {
  .hamb {
    display: inline-block;
  }

  .social {
    display: none;
  }

  .side {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: min(360px, 92vw);
    transform: translateX(-110%);
    transition: transform .2s ease;
  }

  .side--open {
    transform: translateX(0) !important;
  }

  .main {
    padding: 20px 16px;
  }

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

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

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

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

}

@media (max-width: 980px) {
  .banner h1 {
    margin: 0;
    font-size: 25px;
    line-height: 1.1;
    color: #4f5b6f;
  }

  .banner__kicker {
    margin: 10px 0 0;
    color: #4f5b6f;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
  }

  .btn {
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 17px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 700;
  }

  .btn--primary {
    border-color: #f42c31;
    color: #4f5b6f;
    background: rgba(242, 107, 107, .10);
  }

  .banner p {

    width: 100%;
  }

  .banner__img {
    width: 100%;
    border-radius: var(--radius);

  }

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

}


.section {
  width: 90%;
  margin: auto;
  padding: 50px 0;
}

.row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.image,
.text {
  flex: 1;
}

.image img {
  width: 100%;
  border-radius: 10px;
}

/* .text h2 {
  margin-bottom: 10px;
  font-size: 28px;
} */

.text p {
  line-height: 1.6;
  color: #555;
}


@media (max-width:768px) {


  .row {
    flex-direction: column;
    text-align: center;
  }

  .row.reverse {
    flex-direction: column;
  }

  .container {
    flex-direction: column;
  }

  .main {
    flex: 1;
    min-width: 0;
    padding: 28px 5px;
    margin-left: 0;
  }
}

.container {
  display: flex;
  gap: 20px;
  width: 90%;
  margin: auto
}

.box {
  flex: 1;
  margin-top: 30px;
  min-height: 300px;
  background-color: #e9e9e9;
  border: 0;
  border-radius: 15px;
}

.map {
  width: 100%;
  height: 60vh;
  border: 0;
  border-radius: 15px;
  background-color: #fff;
}




/* form */
.CUS {

  padding: 0;
  border-radius: 30px;
}

.half {
  width:48%;
  display:inline-block;
  margin:1%;
}

.CUS p {
  padding: 0;
}

form.CUS input.subject {
  display: none;
}

.CUS .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.CUS .form-row p {
  flex: 1;
  margin: 0;
}

.CUS textarea {
  width: 100%;
  height: 120px;
  font-size: 15px;
  padding-left: 10px;
  padding-top: 10px;
  border: 1px solid #020202;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #f52b31;
  background-color: #ffffff;
}

.CUS .submit {
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  border: 1px solid #d4d4d4;
  background-color: #f52b31;
  color: #161515;
}

.CUS input,
.CUS select {
  width: 50%;
  font-size: 15px;
  border: 1px solid #f52b31;
  border-radius: 10px;
  box-sizing: border-box;
  font-weight: normal;
  padding: 10px;
  margin: 5px 0;
  background-color: #ffffff;

}

.CUS label {
  font-size: 15px;
  display: block;
  margin-top: 10px;
  font-weight: bold;
  text-align: left;
  color: #3b3b3b;
}

.CUS legend {
  font-size: 20px;
  text-align: left;
  color: #3b3b3b;
}

form.CUS,
.CUS fieldset {
  border: none;
}

.CUS input.half,
.CUS select.half {
  width: 48% !important;
  display: inline-block;
  vertical-align: top;
  margin: 5px 1%;
  box-sizing: border-box;
}

.CUS input.half,
.CUS select.half {
  float: left;
  width: 48% !important;
}

.CUS p::after {
  content: "";
  display: block;
  clear: both;
}


@media only screen and (max-width:500px) {
  .CUS .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .CUS .form-row p {
    flex: 1 0 100%;
    width: 100%;
  }
}


.arrow{
  display:inline-block;
  width:6px;
  height:6px;
  border-top:2px solid #e60000;
  border-right:2px solid #e60000;
  transform: rotate(45deg);
  margin-left:5px;
  margin-bottom: 3px;
}



/* before-after */
.ba {
      --pos: 50%;
      position: relative;
      width: min(900px, 100%);
      aspect-ratio: 16 / 9;
      margin: 40px auto;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,.15);
      background: #111;
      user-select: none;
      touch-action: none; 
    }
     .tag {
      position: absolute;
      top: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      font: 600 13px/1 system-ui, -apple-system, Segoe UI, Arial;
      color: #fff;
      background: rgba(0,0,0,.45);
      z-index: 2;
      backdrop-filter: blur(6px);
    }
    .tag.before { right: 12px; }
    .tag.after  { left: 12px; }

    .ba img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    
   .ba img.after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

    
    .ba::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--pos);
      width: 2px;
      background: rgba(255,255,255,.9);
      transform: translateX(-1px);
      z-index: 3;
    }

    
    .handle {
      position: absolute;
      top: 50%;
      left: var(--pos);
      transform: translate(-50%, -50%);
      z-index: 4;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 8px 20px rgba(0,0,0,.25);
      display: grid;
      place-items: center;
    }

    .handle svg { width: 22px; height: 22px; opacity: .8; }

    
    .ba input[type="range"]{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      opacity:0;
      cursor: ew-resize;
      z-index:5;
    }
.ba img { z-index: 1; }
.tag { z-index: 6; }
.ba::before { z-index: 3; }
.handle { z-index: 4; }
.ba input[type="range"] { z-index: 5; }
    



.locations-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  color: #222;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: #e60000;
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.location-item:active {
  transform: scale(0.98);
}


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


@media (max-width: 767px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .location-item {
    min-height: 50px;
    font-size: 14px;
    padding: 10px 12px;
  }
}


@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
   