/* Custom Fonts and Basic Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bff; /* A nice, clean blue for car wash */
    --secondary-color: #1e3c72; /* Darker blue for contrast */
    --accent-color: #28a745; /* Green for WhatsApp/CTA */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --background-light: #ffffff;
    --background-dark: #121212;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f4f7f9; /* Light, clean background */
}

/* --- Header & Navigation --- */
header {
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    /* Use a placeholder image or a simple bubble icon style */
    border-radius: 50%; 
    background-color: var(--primary-color); 
}

.business-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 25px;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* --- Hero Section (Home) --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('background-carwash.jpg.avif') no-repeat center center/cover;
    height: 80vh; /* Make it prominent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #218838; /* Darker green */
    transform: translateY(-2px);
}

/* --- Convenience Steps Section --- */
.convenience-steps {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--background-light);
}

.convenience-steps h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.step-card {
    flex-basis: 30%;
    padding: 30px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #eaf1f7; /* Slightly darker background for contrast */
}

.services-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-card ul li {
    padding: 5px 0;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card.bike-wash {
    border-top-color: var(--accent-color); /* Highlight the bike wash */
}

/* --- Floating WhatsApp Icon --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 30px 5%;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info span {
    margin: 0 15px;
    display: inline-block;
    font-size: 0.9rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* --- Responsiveness for mobile views --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 5%;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .steps-grid {
        flex-direction: column;
    }

    .step-card {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        margin: 15px 0;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }

    .social-icons {
        margin-top: 10px;
    }
}