/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #565656;
}

h1,
h2,
h3 {
    line-height: 130%;
    font-family: 'Montserrat', sans-serif;
    color: #afaeae;
}

/* .header */
.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background: #fff;

}

.logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo span {
    color: #1ebbf0;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
}

.header__center a {
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #212222;
    font-weight: 500;
    text-decoration: none;
}

.nav-links li:hover a {
    color: #1ebbf0;
}

.burger-menu {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

.header-contact p {
    margin-bottom: 10px;
}

.header button {
    background: #26A69A;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}



.hero h1 {
    font-size: 3em;
}

.hero .badges img {
    width: 50px;
    margin: 10px;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
}

/* Professional Services */
.professional-services {
    padding: 50px 0px;
    text-align: center;
}

.services-images img {
    width: 30%;
    margin: 10px;
}

/* Booking Guide */
.booking-guide {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

/* Top Rated */
.top-rated {
    padding: 50px 20px;
    text-align: center;
}

.rated-images img {
    width: 23%;
    margin: 10px;
}

/* Move Out Guide */
.move-out-guide {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.move-out-images img {
    width: 30%;
    margin: 10px;
}

/* Bond Guarantee */
.bond-guarantee {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

/* Vacate Cleaning */
.vacate-cleaning {
    padding: 50px 20px;
    text-align: center;
}

.vacate-images img {
    width: 30%;
    margin: 10px;
}

/* Checklist */
.checklist {
    padding: 50px 20px;
    text-align: center;
}

.checklist__items {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.checklist__item {
    background: #f5f5f5;
    padding: 20px;
    width: 30%;
}

.checklist__item img {
    width: 100%;
}

.hero__buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero__content {
    max-width: 900px;
}

.hero__content p {
    text-align: start;
    color: #ffffff;
    font-size: 20px;
}

.button {
    white-space: nowrap;
    height: fit-content;
    background: #26A69A;
    background: var(--the7-btn-bg, transparent linear-gradient(135deg, #1ebbf0 30%, #39dfaa 100%));
    color: #fff;
    border: none;
    text-decoration: none;
    display: flex;
    width: fit-content;
    font-weight: 700;
    padding: 15px 30px;
}

/* Extra Services */
.extra-services {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.extra-images img {
    width: 45%;
    margin: 10px;
}

/* Pricing */
.pricing {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

/* Why Choose */
.why-choose {
    padding: 50px 20px;
    text-align: center;
}

.why-choose ul {
    list-style: none;
    margin-top: 20px;
}

/* Booking CTA */
.booking-cta {
    padding: 50px 20px;
    text-align: center;
}

.booking-cta button {
    background: #26A69A;
    color: #fff;
    border: none;
    padding: 10px 20px;
}

/* Testimonials Slider */
.testimonials {
    padding: 50px 20px;
    text-align: center;
}

.testimonial-slider {
    margin-top: 20px;
}

.swiper-slide {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

/* Local Cleaners */
.local-cleaners {
    padding: 50px 20px;
    text-align: center;
}

.local-cleaners img {
    width: 100%;
    max-width: 500px;
}

/* FAQs */
.faqs {
    padding: 50px 20px;
    text-align: center;
}

.faq__items {
    margin-top: 20px;
}

.faq__item {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.footer__content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer__copyright {
    font-size: 0.8em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
        z-index: 99;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background: linear-gradient(#26A69A, #fff);
        color: #fff;
        flex-direction: column;
        padding-top: 60px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
        top: 80px;
        text-align: center;
        display: block;
        width: 100%;
        z-index: 98;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .services-images img,
    .rated-images img,
    .move-out-images img,
    .vacate-images img,
    .extra-images img {
        width: 100%;
    }

    .checklist__items {
        flex-direction: column;
    }

    .checklist__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2em;
    }
}

.header__top {
    width: 100%;

    background-color: #efefef;
}

.header__top .container {
    display: flex;
    gap: 20px;
    padding: 5px;
    width: 100%;
    justify-content: space-between;
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.header__toplist span {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #1f1e1e;
}

.header__center {
    width: 100%;
}

.header__center .container {
    display: flex;
    width: 100%;
    padding: 10px 0;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.header__toplist {
    display: flex;
    gap: 10px;
    align-items: center;
}

.professional-services .container {
    display: flex;
    gap: 45px;
}

.services-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.services-img {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.professional-services__content {
    display: flex;
    flex: 1;
    flex-direction: column;

}

.professional-services__content h2 {
    font-size: 34px;
    line-height: 110%;
    margin-bottom: 30px;
    text-align: start;
    color: #787878;
}

.professional-services__content p {
    text-align: start;
}

.header__topsocial {
    display: flex;

    color: #1ebbf0;
    gap: 10px;
    align-items: center;
}

.header__topsocial i {
    color: #1ebbf0;
}

.booking-guide {
    padding: 50px 0;
    background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
}

.booking-guide .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}

.booking-guide h2 {
    font-size: 40px;
    color: #fff;
}

.booking-guide p {
    color: #fff;
    text-align: start;
}

.checklist {
    background-color: rgb(244, 244, 244);
}

.checklist h2 {
    color: #787d85;
    font-size: 34px;
    text-align: center;
}

.checklist p {
    color: #787d85;
    margin-bottom: 40px;
}

.checklist__item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.checklist__item h3 {
    color: #787d85;
    margin-top: 20px;
    font-size: 24px;
    text-transform: uppercase;
}

.checklist__item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.checklist__item {
    background-color: #fff;
}

.checklist__item:nth-child(2n+1) {
    background-color: #00c9e8;
}

.extra-services h2 {
    font-size: 34px;
    text-align: start;
    margin-bottom: 10px;
}

.extra-services__list {
    display: flex;
    margin-top: 40px;
    gap: 50px;
}

.extra-services__ul li {
    color: #444444;
    margin-bottom: 10px;
    text-align: start;
}

.extra__img img {
    width: 100%;
}

.extra-services__ul {
    flex: 1;
    list-style: none;
}

.extra-services p {
    color: #565656;
    text-align: start;
}

.extra__img {
    flex: 1;
}

.pricing {
    background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
}

.pricing h2 {
    text-align: start;
    font-size: 40px;
    margin-bottom: 10px;
    color: #fff;
}

.pricing p {
    color: #fff;
    text-align: start;
}

.why-choose h2 {
    text-align: start;
    font-size: 40px;
    margin-bottom: 10px;
}

.why-choose p {
    text-align: start;
}

.why-choose li {
    text-align: start;
    margin-bottom: 10px;
}

.why-choose li i {
    margin-right: 10px;
    color: #00c9e8;
}

.booking-cta {
    background-color: rgb(242, 242, 242);
}

.booking-cta .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.booking-cta h2 {
    text-align: start;
    font-size: 40px;
    margin-bottom: 20px;
}

.booking-cta p {
    text-align: start;
}

.stars {
    color: #f5c518;
    /* золотий колір */
    margin-bottom: 8px;
    font-size: 1rem;
}

.testimonials h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.local-cleaners .container {
    display: flex;
    gap: 50px;
}

.local-cleaners img {
    max-width: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-cleaners h2 {
    text-align: start;
    font-size: 40px;
}

.local-cleaners p {
    text-align: start;
}

.faq__item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    margin: 0;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 16px;
    color: #444;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    /* або більше, якщо потрібно */
}

.faq__question .icon {
    transition: transform 0.3s ease;
}

.faq__item.active .icon {
    transform: rotate(45deg);
    /* робить + на × */
}

.faq__items {
    display: grid;
    column-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
}

.faqs h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.faqs p {
    margin-bottom: 30px;
}

.faq__answer {
    text-align: start;
}

footer {
    background-color: #1a1c20;
}

footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

footer p {}

.footer__section {
    flex: 1;
}

.footer__content {
    display: flex;
    gap: 50px;
}

.footer__copy-list,
footer ul {
    list-style: none;

}

.footer__section ul li {
    text-align: start;
}

footer a {
    color: #c9c6c6;
    text-decoration: none;
    list-style: none;
}

.footer__section {
    flex: 1;
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
}

footer p {
    color: #c9c6c6;
    text-align: start;
    margin-bottom: 20px;
}

.footer__social {
    margin-top: 30px;
}

.footer__copyright {
    font-size: 16px;
}

.footer__copy {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__copy-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.header__center.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    right: 0;
    background: white;
    /* або інший колір */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .professional-services .container {
        display: flex;
        gap: 45px;
        flex-direction: column;
    }

    .extra-services__list {
        display: flex;
        margin-top: 40px;
        gap: 50px;
        flex-direction: column-reverse;
    }

    .booking-cta .container {
        display: flex;
        gap: 50px;
        align-items: center;
        flex-direction: column;
    }

    .local-cleaners .container {
        display: flex;
        gap: 50px;
        flex-direction: column;
    }

    .faq__items {
        display: grid;
        column-gap: 50px;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer__content {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
    }

    .header__center .container {
        display: flex;
        width: 100%;
        padding: 10px;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }
}

.about h1 {
    font-size: 32px;
    padding: 50px 0;
    text-align: center;
}

.about .container {
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.about__items {
    display: flex;
    margin-bottom: 40px;
    gap: 50px;
}

.about__item {
    flex: 1;
}

.about__item img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.hero.service {
    height: 100%;
    padding: 50px 0;
}

.hero.service h1 {
    color: #fff;
}

.hero.service p {
    color: #fff;
}

.servivce-item h2 {
    text-align: center;
    font-size: 34px;
    line-height: 133%;
    margin-bottom: 10px;
}

.servivce-item h3 {
    text-align: start;
    font-size: 32px;
    line-height: 133%;
    margin-bottom: 10px;
}

.servivce-item p {
    text-align: start;
}

.servivce-item__items {
    display: flex;
    margin-top: 40px;
    gap: 50px;
}

.servivce-item .container {
    padding: 35px 15px;
}

.servivce-item__item {
    flex: 1;
  
}

.servivce-item__item img {
    width: 100%;
    height: auto;
}

.servivce-item .button {
    margin: 40px auto 0;
}

.servivce-item__well {
    background-color: #e0e0e0;
}

.servivce-item__grids {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.servivce-item__grid {
    flex: 1;
      background-color: #fff;
    padding: 20px;
}
ul li {
    margin-bottom: 10px;
    list-style: none;
  }
  
  ul li i {
    color:#1ebbf0;
    margin-right: 8px;
  }
  .check__flex .container{
    display: flex;
    gap:40px;
    align-items: center;

  }
.check__flex.blue{
    background-color: rgb(0, 214, 229);
}
.check__flex.green{
    background-color:rgb(0, 211, 183);
}
.check__flex h2{
    color: #fff;
    text-align: start;
    line-height: 130%;
    font-size: 34px;
}
.check .container{
    padding: 70px 0;
}
.check__items{
    display: flex;
    gap: 50px;
}
.check__item{
    flex: 1;
}
.check__item img{
    border-radius: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.check__item ul{
    padding: 0;
    margin-top: 30px;
    list-style: none;
}
.check__item ul li{
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}
.hero.check{
    height: auto;
padding: 70px 0;
background: rgb(0, 211, 183);
}
.hero.check h1{
    color: #fff;
}
.check__flex.blue p{
color: #fff;
}
.check h3{
    margin-bottom: 20px;
}
.check__flex.green i{
  color: #fff;
}
.check__flex.blue p,
.check__flex.blue h3,
.check__flex.blue li,
.check__flex.blue i {
   color: #fff;
}
.check__flex.green p,
.check__flex.green h3,
.check__flex.green li,
.check__flex.green i {
   color: #fff;
}
.blogs .container{
    display: flex;
margin-top: 50px;
margin-bottom: 50px;
}
.hero.blog{
    height: auto;
    padding: 70px 0;
    background-color: rgb(170 170 170 / 10%);
}
.blogs__item img{
    width: 200px;
    min-width: 200px;
    height: 135px;
    object-fit: cover;
}
.blogs__item{
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: rgb(170 170 170 / 10%);
}
.blogs__item-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.blogs__item-content h3{
    font-size: 20px;
    color: #000;
}
.blogs__item a{
 color: #212222;
}
.blogs__items{
    width: 77%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 30px;
    border-right: 1px solid #444;
}
.social{
    display: flex;
    gap: 10px;
    align-items: center;
}
.blogcontact{
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 30px;
}
.blogcontact a{
    color: #212222;
}
.blogcontact h4{

}
.blogcontact span{

}
.blogcontact span strong{
    
}
.blogs__item-content a{

}
.blog img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 50px;
}
.blog p,
.blog h3,
.blog li{
    margin-bottom: 10px;
}
.blog ul li{
    list-style:circle;
    padding-left: 0px;
}
.blog ul{
    padding-left: 20px;
}
.blog h3{
    font-size: 20px;
}
.hero.blog h1{
font-size: 34px;
line-height: 130%;
}
.cleaning-form {
    max-width: 100%;
    margin: auto;
    display: flex
;

    gap: 15px;
    flex-wrap: wrap;
}
  
  .cleaning-form label {
    font-weight: bold;
    width: 100%;
  }
  
  .cleaning-form input,
  .cleaning-form select,
  .cleaning-form textarea,
  .cleaning-form button {
    padding: 8px;
    font-size: 16px;
    width: fit-content;
    box-sizing: border-box;
  }
  .cleaning-form input,
  .cleaning-form select{
    width: 44%;
  }
  .cleaning-form textarea{
    width: 100%;
  }
  .contact {
    width: 77%;
}
p span,
label span {
    color: #f70808;
}
.cleaning-form button{
    cursor: pointer;
    padding: 20px;
}
@media screen and (max-width:768px) {
    .header__top .container {
        display: flex
    ;
        gap: 20px;
        padding: 5px;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .header__top .container {
        display: flex
    ;
        gap: 20px;
        padding: 5px;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .hero__content {
        max-width: 900px;
        padding: 15px;
    }
    .booking-guide h2 {
        font-size: 32px;
     
    }
    .local-cleaners h2 {
        text-align: start;
        font-size: 32px;
    }
    .servivce-item__items

 {
    display: flex
;
    margin-top: 40px;
    gap: 30px;
    flex-direction: column-reverse;
}
.servivce-item__grids {
    display: flex
;
    gap: 30px;
    margin-top: 50px;
    flex-direction: column;
}
.about .container {
    display: flex
;
    padding: 40px 15px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.about__items {
    display: flex
;
    margin-bottom: 40px;
    padding: 15px;
    gap: 50px;
    flex-direction: column-reverse;
}
.blogs .container {
    display: flex
;
gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    flex-direction: column;
}
.blogs__items {
    width: 100%;
    display: flex
;
    flex-direction: column;
    gap: 30px;
    padding-right: 0px;
    border-right: 0px solid #444;
}
.blogcontact {
    width: 100%;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0px;
}
.blogs__item {
    display: flex
;
    gap: 20px;
    padding: 20px;
    background-color: rgb(170 170 170 / 10%);
    flex-direction: column;
}
.blogs__item img {
    width: 100%;
    min-width: 200px;
    height: 205px;
    object-fit: cover;
}
.check__flex .container {
    display: flex
;
    gap: 40px;
    align-items: center;
    padding: 70px 15px;
    flex-direction: column;
}
.check__items {
    display: flex
;
    gap: 50px;
    flex-direction: column-reverse;
}
.check .container {
    padding: 70px 15px;
}
.contact {
    width: 100%;
}
.cleaning-form input, .cleaning-form select {
    width: 100%;
}
input[type="radio"] {
    width: fit-content;
}
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
  }
  
  .cookie-banner p {
    margin: 0;
  }
  
  .cookie-banner a {
    color: #00aced;
    text-decoration: underline;
  }
  
  .cookie-banner button {
    background: #00aced;
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
  }