:root{
    --primary-color: #74b9ff;
    --secondary-color: #333;
    --background-color: #3498db;
    --font-family-primary: "Noto Sans", sans-serif;
    --font-family-secondary: "Roboto", sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-fluid{
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
a{
    text-decoration: none;
}
ul{
    list-style-type: none;
    padding: 0;
}
body{
    font-family: var(--font-family-primary), sans-serif;
}
.hidden-item {
    display: none;
}
header{
    background-color: #333;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}
.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.header-container .logo a{
    font-size: 30px;
    font-weight: 800;
    font-family: var(--font-family-primary), sans-serif;
    color: var(--primary-color);
}
/* Hamburger Menu - Hidden on desktop, visible on mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.header-container .navigation{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-container .navigation .parent-navbar{
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-container .navigation ul li a{
    font-size: 18px;
    font-family: var(--font-family-secondary), sans-serif;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}
.topbar{
    background-color: #fff;
    border-bottom: 1px solid #fff;
}
.topbar-container{
    display: flex;
    justify-content: end;
    align-items: stretch;
}
.topbar-social-icons{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 30px;
}
.topbar-social-icons a img{
    width: 25px;
}
.topbar-contact-info{
    background-color: #333;
    padding: 10px 30px;
    display: flex;
    align-items: center;
}
.topbar-contact-info span{
    display: block;
}
.topbar-contact-info span a{
    color: #fff;
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
}
.header-container .navigation ul li a.active{
    color: var(--primary-color);
}
.header-container .navigation ul li a:hover{
    color: var(--primary-color);
}
.navigation ul li.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    background-color: #fff;
    min-width: 280px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
    border-radius: 4px;
}
.dropdown-menu li {
    padding: 8px 20px;
    display: block;
}

.dropdown-menu li a {
    text-transform: none !important;
    color: var(--secondary-color) !important;
}
.show-dropdown {
    display: block !important;
}
.navbar-buttons{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 50px;
}
.navbar-buttons .btn{
    padding: 10px 30px;
    font-size: 18px;
    font-family: var(--font-family-secondary), sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.navbar-buttons .login-button{
    color: #fff;
    background-color: var(--primary-color);
}
.navbar-buttons .btn:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.banner{
    background: url("../images/banner.jpg") no-repeat center center/cover fixed;
    height: calc(100vh - 123px);
    margin-top: 123px;
}
.banner-content{
    font-family: var(--font-family-primary), sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    gap: 40px;
    height: calc(100vh - 123px);
}
.banner-content h1{
    text-shadow: #c8c8c8 1px 1px 0px, #b4b4b4 0px 2px 0px, #a0a0a0 0px 3px 0px, rgba(140, 140, 140, 0.498039) 0px 4px 0px, #787878 0px 0px 0px, rgba(0, 0, 0, 0.498039) 0px 5px 10px;
    font-size: 76px;
    line-height: 1.3em;
}
.banner-content p{
    font-size: 18px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,0.8), 0 4px 10px rgba(0,0,0,0.45);
}
.banner-btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.banner-btns a{
    padding: 15px 40px;
    width: 341px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: var(--font-family-secondary), sans-serif;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}
.banner-btns a:hover{
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}
.find-clean-header{
    background-color: #333;
    padding: 14px 0;
}
.find-clean-header h2{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 84px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
    text-align: center;
}
.find-clean-header p{
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.find-clean-header a{
    font-size: 16px;
    color: var(--primary-color);
    text-align: center;
    display: block;
    margin-top: 20px;
}
.cleaning-services{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}
.cleaning-services .service-card{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    transition: transform 0.3s ease;
}
.cleaning-services .service-card img{
    width: 100px;
}
.cleaning-services .service-card h3{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 24px;
    color: var(--secondary-color);
}
.cleaning-services .service-card p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 16px;
    color: #555;
    text-align: center;
}
.cleaning-services .service-card a{
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--font-family-secondary), sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}
.cleaning-services .service-card a:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.cleaning-services .service-card:hover{
    transform: scale(1.05);
    border: 1px solid var(--primary-color);
}
.quote-button-services{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.quote-button-services p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
}
.quote-button-services p a{
    color: var(--primary-color);
}
.easy-steps{
    padding: 50px 0;
    background-color: #eeeeee;
}
.easy-steps h2{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.easy-steps-container{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    align-items: stretch;
}
.single-step{
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    position: relative;
    padding-bottom: 30px;
}
.single-step span{
    font-size: 56px;
    color: var(--primary-color);
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
    font-weight: 900;
}
.single-step p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 20px;
    color: var(--secondary-color);
    opacity: 80%;
    line-height: 1.5;
}
.single-step em{
    height: 4px;
    background-color: var(--primary-color);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.different-wrapper{
    display: flex;
}
.different-image{
    flex: 0 0 30%;
    width: 100%;
}
.different-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.different-content{
    flex: 1;
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}
.different-content h2{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 48px;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.different-content p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}
.different-grid{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.different-grid .different-grid-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.different-grid .different-grid-item h4{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 24px;
    color: var(--secondary-color);
}
.different-grid .different-grid-item p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 16px;
    color: #777;
    line-height: 28px;
}
.reviews{
    padding: 50px 0;
    background-color: var(--primary-color);
}
.reviews h2{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 48px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 900;
}
.reviews-slider-container{
    margin-bottom: 70px;
}
.review-slide{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    margin: 0 30px;
}
.review-slide ul{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}
.review-slide ul li img{
    width: 30px;
}
.reviews h3{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.review-slide p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}
.slick-prev:before, .slick-next:before{
    font-size: 30px !important;
}
.leave-feedback-btn{
    display: flex;
    justify-content: center;
}
.leave-feedback-btn a{
    padding: 10px 30px;
    background-color: transparent;
    border-radius: 30px;
    border: 1px solid #000;
    display: flex;
}
.leave-feedback-btn img{
    width: 20px;
}
.leave-feedback-btn a:hover{
    background-color: #fff;
    border-color: #fff;
}
.questions-form{
    padding: 100px 0;
    background: url("../images/questions-bg.jpg") no-repeat center center/cover fixed;
}
.question-wrapper{
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.questions-text{
    padding: 30px;
    background-color: #333;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    flex: 1;
}
.questions-text p a{
    color: var(--primary-color);
}
.question-form{
    padding: 30px;
    background-color: #333;
    flex: 1;
}
.question-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-two-cols{
    display: flex;
    align-items: center;
    gap: 10px;
}
.question-form form .form-control{
    height: 30px;
    background-color: transparent;
    font-size: 16px;
    padding-left: 10px;
    border: 0px;
    color: #fff;
    width: 100%;
    border-bottom: 1px solid #fff;
    font-family: var(--font-family-secondary), sans-serif;
}
.question-form form .form-control:focus{
    outline: none;
}
.question-form form textarea{
    height: 100px !important;
    font-family: var(--font-family-secondary), sans-serif;
}
.question-form .primary-btn{
    padding: 10px 30px;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    border: none;
}
.satisfaction-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    max-width: 900px;
    margin: 0 auto;
}
.satisfaction{
    padding: 60px 0;
}
.satisfaction-item{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.satisfaction-item p{
    color: #333;
    font-size: 18px;
    text-align: center;
}
.satisfaction-item img{
    width: 60px;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(12,minmax(0,1fr));
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
    position: relative;
}
footer{
    padding: 40px 0;
    background-color: #000;
}
.footer-grid{
    align-items: flex-start;
}
.footer-grid-col{
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: auto;
    grid-column: span 4/span 4;
}
.footer-grid-col h3{
    font-size: 36px;
    font-family: var(--font-family-primary), sans-serif;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
}
.footer-grid-col ul{
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.footer-grid-col ul li a, .footer-grid-col ul li, .footer-grid-col ul li a, footer p{
    font-size: 16px;
    font-family: var(--font-family-secondary), sans-serif;
    color: #fff;
    transition: 0.3s all;
}
.footer-grid-col ul li a:hover{
    color: var(--primary-color);
}
.footer-grid-col .social-icons{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-grid-col .social-icons a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
}
.footer-grid-col .social-icons a:hover{
    background-color: #fff;
}
.footer-grid-col .social-icons a img{
    width: 25px;
}
.footer-logo a{
    font-size: 32px;
    color: #fff;
    font-family: var(--font-family-primary), sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}
.footer-logo a b{
    color: var(--primary-color);
    font-weight: 900;
}
.footer-grid-col h5{
    font-size: 24px;
    font-family: var(--font-family-primary), sans-serif;
    color: #fff;
}
footer small {
    display: block;
    font-size: 14px;
    font-family: var(--font-family-primary), sans-serif;
    color: #fff;
    text-align: center;
}
footer hr{
    margin: 30px 0;
}
footer p{
    line-height: 1.6;
}
.seo-section{
    padding: 70px 0;
}
.seo-section-wrapper{
    display: flex;
    align-items: center;
    gap: 100px;
}
.seo-image{
    flex: 0 0 40%;
    max-width: 100%;
    height: 400px;
}
.seo-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seo-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.seo-content .navbar-buttons{
    margin: 0;
}
.seo-content h2{
    font-size: 36px;
    font-family: var(--font-family-primary), sans-serif;
    color: var(--secondary-color);
}
.seo-content h2 b{
    font-weight: 800;
    color: var(--primary-color);
}
.seo-content p{
    font-size: 16px;
    font-family: var(--font-family-secondary), sans-serif;
    color: #555;
    line-height: 1.8;
}
.about-us{
    margin-top: 123px;
}
.get-in-touch{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}
.get-in-touch p{
    font-size: 18px;
    font-family: var(--font-family-secondary), sans-serif;
    color: var(--secondary-color);
}
.about-us{
    background-color: #eee;
    padding-bottom: 50px;
}
.faq, .breezy-blue-wrapper{
    margin-top: 123px;
    padding: 50px 0;
}
.faq h1, .breezy-blue-wrapper h1{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.faq-wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.faq-item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item h3{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 24px;
    color: var(--secondary-color);
    position: relative;
    padding-right: 30px;
}
.faq-item p{
    font-family: var(--font-family-secondary), sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.faq .banner-btns a:hover{
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.faq .get-in-touch p{
    font-size: 30px;
    font-weight: 700;
}
.contact{
    margin-top: 123px;
    padding: 50px 0;
}
.contact h1 {
    font-family: var(--font-family-primary), sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.contact form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}
.contact form .form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.contact form label, .contact form p{
    font-size: 14px;
}
.contact form .form-control{
    height: 40px;
    border: 1px solid #eee;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
}
.contact form .form-control:focus{
    outline: none;
    border-color: var(--primary-color);
}
.form-group-wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
}
form .submit-button{
    padding: 15px 30px;
    font-size: 18px;
    font-family: var(--font-family-secondary), sans-serif;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.input-group{
    display: flex;
    align-items: center;
    gap: 10px;
}
.input-group input[type="checkbox"]{
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.checkbox-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact form textarea{
    height: 100px !important;
    resize: none;
    font-family: var(--font-family-secondary), sans-serif;
}
.standard-clean{
    padding: 50px 0;
    margin-top: 123px;
}
.standard-clean h1, .cleaning-comparison h2{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.clean-service-content{
    margin-top: 50px;
    display: flex;
    align-items: stretch;
    gap: 100px;
}
.clean-service-left{
    padding: 40px 30px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    flex: 1;
}
.clean-service-btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.clean-service-btns a{
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--font-family-secondary), sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid #fff;
    transition: all 0.3s ease;
}
.clean-service-btns a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.clean-service-left p, .clean-service-right p{
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}
.clean-service-right{
    padding: 40px 30px;
    background-color: #333;
    flex: 1;
}
.service-clean-right-row{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}
.service-clean-right-item{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.service-clean-right-item h3{
    font-family: var(--font-family-primary), sans-serif;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
.service-clean-right-item ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-clean-right-item ul li, .service-clean-right-item p{
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}
.service-clean-right-item ul li a, .service-clean-right-item a{
    color: var(--primary-color);
    text-decoration: underline;
}
.clean-service-right .book-now{
    display: flex;
    align-items: center;
    justify-content: center;
}
.clean-service-right .book-now a{
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--font-family-secondary), sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid #fff;
    transition: all 0.3s ease;
}
.clean-service-right .book-now a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.cleaning-comparison{
    padding-bottom: 50px;
}
.cleaning-comparison p, .table-row p{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
}
.comparison-table{
    max-width: 600px;
    margin: 40px auto 0 auto;
}
.comparison-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.comparison-icon{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.comparison-icon img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.table{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.table-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.table-row .icon{
    flex: 0 0 33%;
    text-align: center;
}
.table-row img{
    width: 30px;
}
.table-row p{
    margin: 0;
    flex: 0 0 33%;
}
.comparison-header-row{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    flex: 0 0 33%;
}
.breeze-header h2{
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}
.breeze-header p{
    font-size: 16px;
    color: #999;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}
.why-breeze-blue{
    margin-top: 30px;
}
.why-breeze-blue h2{
    font-size: 18px;
}
.why-breeze-blue ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}
.why-breeze-blue ul li{
    font-size: 15px;
    color: #555;
}
.breeze-columns{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
}