/* Housekeeping Landing Page Styles */
/* ==================================== */

/* Design Tokens */
:root {
    --color-primary: #8B7355;
    --color-accent: #D4A574;
    --color-light-bg: #F5F3F0;
    --color-text-dark: #2C2C2C;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-success: #27AE60;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ============================= */
/* Hero Section - Housekeeping */
/* ============================= */

.housekeeping-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.housekeeping-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.housekeeping-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.housekeeping-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.housekeeping-hero-text {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.housekeeping-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.housekeeping-hero-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.housekeeping-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* ============================= */
/* Solutions Section */
/* ============================= */

.housekeeping-solutions {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--color-accent);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.solution-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.solution-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================= */
/* Gallery Section */
/* ============================= */

.housekeeping-gallery {
    padding: 6rem 2rem;
    background-color: var(--color-light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background-color: #f0f0f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 115, 85, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.gallery-zoom-icon {
    font-size: 3rem;
    color: white;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1.2);
}

/* Lightbox */
.housekeeping-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.housekeeping-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-content {
    flex: 1;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.65rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
}

/* ============================= */
/* Services Section - Featured */
/* ============================= */

.housekeeping-services-featured {
    position: relative;
    width: 100%;
    padding: 6rem 2rem;
    background: #ffffff;
    overflow: hidden;
}


.services-featured-layout {
    display: grid;
    grid-template-columns: 1.5fr 1.3fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .services-featured-layout {
        grid-template-columns: 1.3fr 1.3fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-featured-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: auto;
    }

    .housekeeping-services-featured {
        padding: 4rem 2rem;
    }
}

.services-featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    object-fit: contain;
    transition: var(--transition);
}

.featured-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.services-featured-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 100%;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================= */
/* Services Section */
/* ============================= */

.housekeeping-services {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--color-text-dark);
}

.service-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.service-text {
    flex: 1;
}

/* ============================= */
/* Video Section */
/* ============================= */

.housekeeping-video {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.video-container {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.video-iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.video-iframe:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .housekeeping-video {
        padding: 4rem 0;
    }

    .video-iframe {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 480px) {
    .housekeeping-video {
        padding: 3rem 0;
    }

    .video-container {
        padding: 0 0.75rem;
    }

    .video-iframe {
        border-radius: 8px;
    }
}

/* ============================= */
/* Why Choose Section */
/* ============================= */

.housekeeping-why-choose {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.housekeeping-why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/housekeeping/8.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.housekeeping-why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1;
    pointer-events: none;
}

.housekeeping-why-choose .container {
    position: relative;
    z-index: 2;
}

.housekeeping-why-choose .section-header h2 {
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.housekeeping-why-choose .section-header p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: white;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card:hover .benefit-icon {
    color: var(--color-primary);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: white;
}

/* ============================= */
/* Process Section - Timeline */
/* ============================= */

.housekeeping-process {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 769px) {
    .process-timeline {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: start;
    }
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.timeline-content h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
}

.timeline-arrow {
    color: var(--color-accent);
    font-size: 2rem;
    display: none;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .timeline-arrow {
        display: flex;
    }
}

/* ============================= */
/* Benefits Feature Section */
/* ============================= */

.housekeeping-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
}

.benefits-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.feature-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================= */
/* FAQ Section */
/* ============================= */

.housekeeping-faq {
    padding: 6rem 0;
    background-color: var(--color-light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: var(--color-light-bg);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================= */
/* Testimonials Section */
/* ============================= */

.housekeeping-testimonials {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--color-accent);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.star {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--color-text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.testimonial-position {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin: 0 0 0.25rem 0;
}

.testimonial-company {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* ============================= */
/* Final CTA Section */
/* ============================= */

.housekeeping-final-cta {
    position: relative;
    padding: 6rem 0;
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6B5344 100%);
    z-index: 0;
}

.housekeeping-final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================= */
/* Section Header Styles */
/* ============================= */

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.housekeeping-services-featured .section-header h2 {
    color: var(--color-primary);
}

.housekeeping-services-featured .section-header p {
    color: var(--color-text-light);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================= */
/* Button Styles */
/* ============================= */

.btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background-color: #C49564;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* ============================= */
/* Animations */
/* ============================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* Responsive Design */
/* ============================= */

@media (max-width: 768px) {
    .housekeeping-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-columns {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .housekeeping-why-choose {
        padding: 4rem 0;
    }

    .lightbox-container {
        flex-direction: column;
        width: 95%;
    }

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        bottom: -60px;
    }

    .lightbox-prev {
        left: 0;
    }

    .lightbox-next {
        right: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .housekeeping-hero-title {
        font-size: 1.8rem;
    }

    .housekeeping-hero-description {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .solutions-grid,
    .benefits-grid,
    .testimonials-grid {
        gap: 1.5rem;
    }

    .solution-card,
    .benefit-card,
    .testimonial-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }

    .housekeeping-why-choose {
        padding: 5rem 0;
    }

    .housekeeping-why-choose .section-header h2 {
        font-size: 1.6rem;
    }

    .housekeeping-why-choose .section-header p {
        font-size: 0.9rem;
    }

    .benefit-card {
        padding: 1.75rem 1rem;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }
}
