/*
Theme Name: Luxx (Static)
Theme URI: https://luxxcarpetcleaners.co.ke
Author: Luxx Carpet Cleaners
Description: WordPress theme for Luxx Carpet Cleaners — static pages with content exactly as in the original design.
Version: 1.0.0
Requires at least: 5.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: luxx-static
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
    flex-shrink: 0;
}

.logo-text {
    color: white;
    text-transform: capitalize;
}

.logo { font-size: 1.8rem; font-weight: 700; letter-spacing: 0.5px; }
.tagline { font-size: 0.9rem; opacity: 0.95; margin-bottom: 1rem; }

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
nav li { margin: 0; }

nav a {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

nav a:hover,
nav .current-menu-item a {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary { background: #25D366; color: white; }
.btn-primary:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-secondary { background: #0d9488; color: white; }
.btn-secondary:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    color: white;
}

.section-title {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #0d9488;
}

.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.4rem; color: #1a202c; margin-bottom: 1rem; }
.service-card p { color: #555; margin-bottom: 1rem; }
.service-card ul { list-style: none; padding-left: 0; }
.service-card li {
    padding: 0.4rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}
.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item { text-align: center; padding: 1.5rem; }
.feature-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.feature-item h3 { font-size: 1.3rem; color: #1a202c; margin-bottom: 0.8rem; }
.feature-item p { color: #666; font-size: 0.95rem; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.area-item {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1a202c;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.area-item:hover {
    border-color: #0d9488;
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method { text-align: center; }
.contact-icon { font-size: 3rem; margin-bottom: 1rem; }
.contact-method h3 { color: #1a202c; margin-bottom: 0.5rem; font-size: 1.2rem; }
.contact-method p { color: #555; font-size: 1rem; }
.contact-method a { color: #0d9488; text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.contact-method a:hover { color: #25D366; }

.info-box {
    background: #e6fffa;
    border-left: 4px solid #0d9488;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}
.info-box p { color: #1a202c; font-weight: 500; margin: 0; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid #f7fafc;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #0d9488;
}

.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}
.testimonial-info h4 { color: #1a202c; margin-bottom: 0.2rem; font-size: 1.1rem; }
.testimonial-stars { color: #fbbf24; font-size: 0.9rem; }
.testimonial-text { color: #4a5568; line-height: 1.7; font-style: italic; }

footer {
    background: #1a202c;
    color: white;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-content p { margin: 0.5rem 0; opacity: 0.9; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .logo-container,
    .logo-container a {
        flex-wrap: nowrap;
    }
    .logo-image {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    .logo { font-size: 1.35rem; }
    .tagline { font-size: 0.8rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 1.6rem; }
    nav a { font-size: 0.85rem; padding: 0.5rem 1rem; }
    .services-grid, .features-grid, .areas-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; }
}
