/* Color Palette */
:root {
    --primary-blue: #001BEA;
    --secondary-blue: #01B3F2;
    --light-blue: #96ECFC;
    --dark-grey: #545454;
    --light-grey: #737373;
    --accent-grey: #666666;
    --white: #ffffff;
    --text-light: #f0f0f0;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--dark-grey);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--dark-grey);
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid var(--secondary-blue);
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Mobile Service Banner */
.mobile-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--light-blue);
}

.mobile-banner p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    background-color: rgba(115, 115, 115, 0.85);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: bold;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    margin-top: 10px;
}

/* Services Section */
.services {
    background-color: var(--light-grey);
    padding: 80px 20px;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 40px;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-text h3 {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
    text-align: center;
}

.service-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.8;
}



/* Gallery Section */
.gallery {
    background-color: var(--dark-grey);
    padding: 80px 20px;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 40px;
}

.before-after {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.before-after img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    background-color: var(--light-grey);
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-detail {
    font-size: 1.2rem;
}

.contact-detail a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-blue);
}

.whatsapp-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-grey);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark-grey);
    padding: 30px 20px;
    text-align: center;
}

footer p {
    color: var(--text-light);
    font-size: 1rem;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-banner p {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero-content {
        padding: 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.6rem;
    }

    .service-text h3 {
        font-size: 1.3rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-text p {
        font-size: 1rem;
    }

    .before-after {
        gap: 15px;
    }

    .before-after img {
        min-width: 250px;
    }

    .logo {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .mobile-banner p {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.4rem;
    }

    .service-text h3 {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 280px;
    }

    .whatsapp-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}
