/* Housekeeping Page Styles */

/* Hero Section */
.housekeeping-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #001f3f 0%, #0d2847 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
    position: relative;
    overflow: hidden;
}

.housekeeping-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/ab.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.housekeeping-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.8) 0%, rgba(13, 40, 71, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-feature {
    text-align: center;
}

.hero-feature i {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 0.8rem;
}

.hero-feature h4 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

/* About Housekeeping Section */
.about-housekeeping {
    padding: 100px 0;
    background: #ffffff;
}

.about-hk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-hk-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.5rem;
}

.about-hk-text h2 .highlight {
    color: #FFA500;
}

.about-hk-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quality-points {
    display: grid;
    gap: 1.2rem;
    margin-top: 2rem;
}

.quality-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quality-point:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.1);
    transform: translateX(10px);
}

.quality-point i {
    font-size: 1.8rem;
    color: #FFA500;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.quality-point-text h4 {
    font-size: 1.2rem;
    color: #001f3f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quality-point-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-hk-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 31, 63, 0.15);
}

/* Our Services Section */
.our-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 31, 63, 0.12);
    border-top-color: #FFA500;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Other Solutions Section */
.other-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #001f3f 0%, #0d2847 100%);
}

.other-solutions .section-title {
    color: #ffffff;
}

.other-solutions .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-10px);
}

.solution-item i {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.solution-item:hover i {
    transform: scale(1.1);
    color: #FF6347;
}

.solution-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.solution-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA Section */
.housekeeping-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    position: relative;
    overflow: hidden;
}

.housekeeping-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(0, 31, 63, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-cta-primary {
    background: #001f3f;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.3);
}

.btn-cta-primary:hover {
    background: #0d2847;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 31, 63, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #001f3f;
    border: 2px solid #001f3f;
}

.btn-cta-secondary:hover {
    background: #001f3f;
    color: #ffffff;
    transform: translateY(-3px);
}

.cta-contact-info {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #001f3f;
}

.cta-contact-item i {
    font-size: 1.5rem;
}

.cta-contact-item a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-contact-item a:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-hk-content {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .housekeeping-hero {
        padding: 120px 20px 60px;
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }

    .about-housekeeping {
        padding: 60px 0;
    }

    .about-hk-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hk-image img {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .housekeeping-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .housekeeping-hero {
        padding: 100px 15px 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-feature i {
        font-size: 2rem;
    }

    .hero-feature h4 {
        font-size: 1rem;
    }

    .about-hk-text h2 {
        font-size: 2rem;
    }

    .about-hk-text p {
        font-size: 1rem;
    }

    .about-hk-image img {
        height: 280px;
    }

    .quality-point {
        padding: 1rem;
    }

    .quality-point i {
        font-size: 1.5rem;
    }

    .quality-point-text h4 {
        font-size: 1.1rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
