/* ============================================
   CLEANING SERVICES PAGE STYLES
   ============================================ */

.connect-icon-image{
    max-width: 280px;
   }
/* Hero Section */
.cleaning-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/images/Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    overflow: hidden;
}

.cleaning-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 57, 158, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.cleaning-hero-section .container {
    position: relative;
    z-index: 2;
}

.cleaning-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cleaning-hero-subtitle {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cleaning-hero-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cleaning-hero-btn:hover {
    background: white;
    color: #00399E;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cleaning-hero-tool {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 2;
    max-width: 300px;
    animation: floatTool 6s ease-in-out infinite;
}

@keyframes floatTool {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.cleaning-hero-tool img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Our Mission Section */
.cleaning-mission-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cleaning-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: black;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cleaning-mission-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

.cleaning-mission-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cleaning-mission-image:hover {
    transform: translateY(-5px);
}

.cleaning-mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Offerings Section */
.cleaning-services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.cleaning-services-images {
    position: relative;
    padding: 20px 0;
}

.service-image-top {
    position: relative;
    z-index: 2;
    margin-bottom: -80px;
    margin-left: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-image-top:hover {
    transform: translateY(-5px);
}

.service-image-bottom {
    position: relative;
    z-index: 1;
    margin-left: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-image-bottom:hover {
    transform: translateY(-5px);
}

.service-image-top img,
.service-image-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

.cleaning-services-content {
    padding-left: 40px;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 57, 158, 0.1);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 57, 158, 0.15);
    border-color: rgba(0, 57, 158, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00399E 0%, #0056b3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 57, 158, 0.25);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 57, 158, 0.35);
}

.service-item-wrapper {
    margin-bottom: 2.5rem;
}

.service-item-wrapper:last-child {
    margin-bottom: 0;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.service-icon-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    object-fit: contain;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: black;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.service-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-left: 75px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cleaning-hero-title {
        font-size: 3.5rem;
    }

    .cleaning-hero-subtitle {
        font-size: 1.5rem;
    }

    .cleaning-hero-tool {
        max-width: 250px;
        right: 3%;
    }

    .cleaning-section-title {
        font-size: 2.5rem;
    }

    .cleaning-services-content {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    .cleaning-hero-section {
        min-height: 70vh;
        padding: 100px 0 80px;
    }

    .cleaning-hero-title {
        font-size: 3rem;
    }

    .cleaning-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .cleaning-hero-tool {
        max-width: 200px;
        right: 2%;
        bottom: 10%;
    }

    .cleaning-mission-section {
        padding: 80px 0;
    }

    .cleaning-section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .cleaning-mission-text {
        font-size: 1.05rem;
    }

    .cleaning-mission-section .row {
        flex-direction: column-reverse;
    }

    .cleaning-mission-image {
        margin-bottom: 2rem;
    }

    .cleaning-services-section {
        padding: 80px 0;
    }

    .cleaning-services-section .row {
        flex-direction: column;
    }

    .cleaning-services-images {
        margin-bottom: 3rem;
        padding: 0;
    }

    .service-image-top {
        margin-bottom: -60px;
    }

    .service-image-bottom {
        margin-left: 40px;
    }

    .cleaning-services-content {
        padding-left: 0;
    }

    .service-item {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .cleaning-hero-section {
        min-height: 60vh;
        padding: 80px 0 60px;
    }

    .cleaning-hero-title {
        font-size: 2.5rem;
    }

    .cleaning-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cleaning-hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .cleaning-hero-tool {
        max-width: 150px;
        right: 5%;
        bottom: 5%;
    }

    .cleaning-mission-section {
        padding: 60px 0;
    }

    .cleaning-section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .cleaning-mission-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .cleaning-services-section {
        padding: 60px 0;
    }

    .service-image-top {
        margin-bottom: -40px;
    }

    .service-image-bottom {
        margin-left: 30px;
    }

    .service-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .service-header {
        gap: 12px;
        margin-bottom: 0.875rem;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 62px;
    }
}

@media (max-width: 576px) {
    .cleaning-hero-section {
        min-height: 50vh;
        padding: 60px 0 50px;
    }

    .cleaning-hero-title {
        font-size: 2rem;
    }

    .cleaning-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .cleaning-hero-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .cleaning-hero-tool {
        max-width: 120px;
        right: 3%;
        bottom: 3%;
    }

    .cleaning-mission-section {
        padding: 50px 0;
    }

    .cleaning-section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cleaning-mission-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cleaning-services-section {
        padding: 50px 0;
    }

    .cleaning-services-images {
        margin-bottom: 2rem;
    }

    .service-image-top {
        margin-bottom: -30px;
    }

    .service-image-bottom {
        margin-left: 20px;
    }

    .service-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-item-wrapper {
        margin-bottom: 2rem;
    }

    .service-header {
        gap: 10px;
        margin-bottom: 0.75rem;
    }

    .service-icon-img {
        width: 45px;
        height: 45px;
    }

    .service-title {
        font-size: 1.35rem;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 55px;
    }
    .cleaning-services-content {
        margin-top: 20px;
    }
}

/* Connect App Section (match Home page design) */
.cleaning-connect-section {
    position: relative;
    padding: 30px 0;
    overflow: visible;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #00399E !important;
}

.cleaning-connect-logo {
    margin-bottom: 2rem;
}

.cleaning-connect-logo img {
    max-width: 200px;
    height: auto;
}

.cleaning-connect-title {
    font-size: 3rem;
    font-weight: 450;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-top: 10px !important;
}

.cleaning-connect-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cleaning-connect-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cleaning-app-btn {
    background: white !important;
    padding: 12px 20px;
    border-radius: 11px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none !important;
}

.cleaning-app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: white !important;
}

.cleaning-app-btn img {
    height: 35px;
    width: auto;
    display: block;
    padding: 4px;
}

.connect-screens-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    position: static;
    display: block;
    margin: -20px auto 0 auto;
}

/* 1920px desktop: match requested positioning */
@media (min-width: 1900px) and (max-width: 1999px) {
    .connect-screens-image {
        margin-top: -152px;
    }
}

@media (max-width: 900px) {
    .connect-screens-image {
        display: block;
        margin-top: 40px !important;
    }
}

@media (max-width: 576px) {
    .connect-screens-image {
        display: none !important;
        /* margin-top: 40px; */
    }
    .connect-icon-image{
        width: 70%;
    }

    .cleaning-connect-buttons {
        flex-direction: row;
        width: 100%;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .cleaning-app-btn {
        width: auto;
        flex: 1 1 0;
        display: flex;
        justify-content: center;
    }

    .cleaning-app-btn img {
        height: 28px;
        margin: 0;
    }
    .cleaning-connect-section {
        min-height: 400px;
    }
}

@media (max-width: 992px) {
    .cleaning-connect-title {
        font-size: 1.75rem;
    }

    .cleaning-connect-description {
        font-size: 0.95rem;
    }

    .cleaning-connect-logo img {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .cleaning-connect-title {
        font-size: 1.5rem;
    }

    .cleaning-connect-description {
        font-size: 0.9rem;
    }

    .cleaning-connect-logo img {
        max-width: 160px;
    }

    .cleaning-app-btn img {
        height: 30px;
    }
}

/* Popular Projects Carousel Section */
.cleaning-projects-section {
    padding-top: 100px;
    background-color: #f8f9fa;
}

.projects-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-carousel-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* align-items: center; */
}

.projects-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin: 0;
    line-height: 1.2;
}

.projects-see-all-link {
    font-size: 1rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.projects-see-all-link:hover {
    color: black;
    text-decoration: underline;
}

.projects-carousel-nav {
    display: flex;
    gap: 10px;
}

.projects-carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00399E;
    border: 2px solid #00399E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.projects-carousel-nav-btn:hover:not(.disabled) {
    background: white;
    color: #00399E;
    border-color: #00399E;
}

.projects-carousel-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.projects-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.projects-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.projects-carousel-slide {
    flex: 0 0 auto;
    min-width: 350px;
}

.projects-carousel-slide .project-card {
    height: 100%;
    margin: 0;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

/* Responsive Styles for Projects Carousel */
@media (max-width: 1200px) {
    .projects-carousel-title {
        font-size: 2.25rem;
    }

    .projects-carousel-slide {
        min-width: 320px;
    }
}

@media (max-width: 992px) {
    .cleaning-projects-section {
        padding: 80px 0;
    }

    .projects-carousel-header {
        margin-bottom: 2.5rem;
    }

    .projects-carousel-title {
        font-size: 2rem;
    }

    .projects-carousel-slide {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .cleaning-projects-section {
        padding: 60px 0;
    }

    .projects-carousel-header {
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-carousel-title {
        font-size: 1.75rem;
    }

    .projects-carousel-nav {
        align-self: flex-end;
    }

    .projects-carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .projects-carousel-slide {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .cleaning-projects-section {
        padding: 50px 0;
    }

    .projects-carousel-title {
        font-size: 1.5rem;
    }

    .projects-see-all-link {
        font-size: 0.9rem;
    }

    .projects-carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .projects-carousel-slide {
        min-width: 100%;
    }

    .projects-carousel-track {
        gap: 16px;
    }
}