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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
}

/* Floating Side Logos */
.side-logo {
    position: fixed;
    width: 200px;
    height: auto;
    z-index: 100;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.side-logo:hover {
    opacity: 1;
}

.side-logo-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.side-logo-right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.side-logo.hidden {
    opacity: 0;
    pointer-events: none;
}

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

/* Navigation */
nav {
    background: #fff;
    border-bottom: 2px solid #ff0000;
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-container a {
    color: #1f1513;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 4px;
}

.nav-container a:hover {
    color: #fff;
    background: #ff0000;
}

/* Header */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: #ff0000;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    background: #1f1513;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f4f4f4;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: #1f1513;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Areas Served Section */
.areas-served {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

.areas-served h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.areas-served p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.areas-list li {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    font-weight: bold;
    color: #1f1513;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

.contact-item h3 {
    color: #1f1513;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1400px) {
    .side-logo {
        width: 150px;
    }

    .side-logo-left {
        left: 10px;
    }

    .side-logo-right {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 100%;
    }

    header h1 {
        font-size: 2rem;
    }

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

    .hero h2 {
        font-size: 1.5rem;
    }

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

    .service-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide side logos on mobile */
    .side-logo {
        display: none;
    }
}
