/* Modern Variables */
:root {
    --primary: #89CFF0;      /* Light Sky Blue */
    --primary-dark: #2980B9; /* Darker blue for interactions */
    --secondary: #2C3E50;    /* Dark Navy for text */
    --accent: #27AE60;       /* Green for WhatsApp/Success */
    --bg-light: #F8FBFE;     /* Very light blue tint */
    --white: #ffffff;
    --gray: #95a5a6;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 12px;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--secondary);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bg-light {
    background-color: var(--bg-light);
}

/* Header & Nav */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* For mobile menu positioning */
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-dark);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.btn-header-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.btn-header-cta:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above the menu */
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    /* Clean laundry image */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(137, 207, 240, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white);
    margin-left: 5%; /* Align left for cleaner look */
}

/* Free Shipping Badge */
.badge-free-shipping {
    display: inline-block;
    background-color: #27AE60;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.rating-badge .stars i {
    color: #F1C40F;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(137, 207, 240, 0.4);
}

.btn-primary:hover {
    background-color: #72bcd4;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Features Bar */
.features-bar {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.features-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.feature-item.highlight-free {
    color: #27AE60;
    font-weight: 700;
}

.feature-item.highlight-free i {
    color: #27AE60;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Products Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-10px);
}

.icon-bg {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-card i {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.category-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.link-arrow {
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 10px; /* Slide effect */
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: left; /* Different alignment for variety */
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card.highlight-card {
    border-left: 4px solid #27AE60;
    background-color: #f0fdf4; /* Light green tint */
}

.service-card.highlight-card i, 
.service-card.highlight-card h4 {
    color: #27AE60;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: scale(1.05);
}

/* Payment Methods Section */
.payments {
    background-color: var(--white);
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-weight: 500;
    transition: 0.3s;
}

.payment-item:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.payment-item i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.payment-item:hover i {
    color: var(--primary-dark);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 50px;
    background-color: var(--secondary);
    color: var(--white);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.contact-info .subtitle {
    color: #bdc3c7;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 5px;
}

.info-item p {
    font-weight: 500;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 400px;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo h5 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Animation Utilities */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.pulse-anim {
    animation: pulse 2s infinite;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; } /* Slightly smaller for mobile */
    .hero-content { margin-left: 0; text-align: center; padding: 20px; }
    .hero-buttons { 
        flex-direction: column; /* Stack buttons on mobile */
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links, .btn-header-cta { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        z-index: 999;
        text-align: center;
        gap: 20px;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { padding: 30px; } /* Less padding on mobile */
    
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-direction: column; gap: 15px; } /* Stack footer links */
    
    .features-bar .container { 
        gap: 30px; 
        justify-content: center;
        flex-direction: column; /* Stack features */
        align-items: center;
    }

    .section-header h3 { font-size: 2rem; }
}
