/* Happy Cleaning - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #45b0e6;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #45b0e6;
}

/* Nav right container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-current {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border-radius: 8px;
}

.lang-current:hover {
    background: #f5f5f5;
}

.flag-icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
}

.lang-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0.5rem;
    min-width: 150px;
    z-index: 1000;
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f0f0f0;
}

.lang-option .flag-icon {
    font-size: 1.3rem;
}

.lang-option span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-close {
    display: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0;
    padding-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #45b0e6;
    padding-left: 2rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #45b0e6 0%, #ffffff 100%);
    color: white;
    padding: 4rem 2rem 6rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: #45b0e6;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.hero-quote {
    font-style: italic;
    font-size: 1rem;
    margin-top: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    color: #333;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(69,176,230,0.2);
    border-color: #45b0e6;
}

.service-img-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 2rem;
}

.service-img-container img {
    max-width: 160px;
    max-height: 160px;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #333;
}

.service-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-btn {
    display: inline-block;
    background: #ffd93d;
    color: #333;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #ffce00;
    transform: scale(1.05);
}

/* All Services Grid */
.all-services {
    background: white;
    padding: 4rem 2rem;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.all-service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.all-service-card:hover {
    border-color: #45b0e6;
    transform: translateY(-3px);
}

.all-service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.all-service-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.all-service-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Reviews Section */
.reviews {
    background: #f9fcff;
    padding: 4rem 2rem;
    text-align: center;
}

.rating-stars {
    color: #fbbc04;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.review-highlight {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 2rem auto;
    border-left: 4px solid #ffd93d;
}

.review-highlight p {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-card .stars {
    color: #fbbc04;
    margin-bottom: 0.5rem;
}

.review-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.review-card .author {
    font-weight: 600;
    color: #333;
}

.view-all-reviews {
    display: inline-block;
    background: #45b0e6;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.view-all-reviews:hover {
    background: #2a8fc9;
    transform: scale(1.05);
}

/* Pricing */
.pricing {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.price-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #45b0e6;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(69,176,230,0.2);
}

.price-card.featured {
    border-color: #45b0e6;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.price-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.price-card .subtext {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    min-height: 60px;
}

.price-card .special-text {
    color: #45b0e6;
    font-weight: 600;
}

.price-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
    font-style: italic;
}

.price-card .period {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.price-btn {
    display: inline-block;
    background: #45b0e6;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.price-btn:hover {
    background: #2a8fc9;
    transform: scale(1.05);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: white;
}

.map-section .section-title,
.map-section .section-subtitle {
    padding: 0 2rem;
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
    color: #333;
}

.contact-item a {
    color: #45b0e6;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin: 1rem 0;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    text-align: center;
}

.value-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.85rem;
    color: #666;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #45b0e6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ddd;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #45b0e6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .all-services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-grid,
    .all-services-grid,
    .pricing-grid,
    .about-values,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lang-current {
        font-size: 1.3rem;
        padding: 0.3rem;
    }
    
    .flag-icon {
        font-size: 1.3rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #333;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}