* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #e6e6e6;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    gap: 3rem;
    transform: translateX(0);
    transition: transform 0.8s ease;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4CAF50;
}

/* Adjust hamburger menu position for mobile */
.hamburger {
    display: none;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.5s;
}

/* Header/Hero Section */
header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('Assets/BeetleHero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0;
    margin-top: 60px;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Services Section */
#services {
    padding: 4rem 2rem;
    background-color: #fff;
    margin: 2rem;
    border-radius: 10px;
}

.service-category {
    margin-bottom: 2rem;
}

.service-category h3 {
    position: relative;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.service-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 2px;
}

.service-category h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: #ddd;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-card h6 {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-card > p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: -1.2rem;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2E7D32;
    text-align: center;
    margin: 1.5rem 0;
}

.service-card .price::before {
    content: '$';
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 2px;
}

.service-card .disclaimer,
.service-card .note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 4rem 2rem;
    margin: 2rem;
    border-radius: 10px;
    text-align: center;
}

#about h2 {
    position: relative;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 2px;
}

#about h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: #ddd;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

#about p:last-child {
    margin-bottom: 0;
}

#about strong {
    color: #2E7D32;
    font-weight: 600;
}

#about .highlight {
    background: linear-gradient(transparent 60%, rgba(76, 175, 80, 0.1) 40%);
    padding: 0 4px;
}

/* Contact Section */
.contact {
    background: #343a40;
    color: white;
    padding: 50px 0;
    text-align: center;
    margin: 2rem;
    border-radius: 10px;
}

.contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #0f0;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Floating Action Button */
.floating-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-button {
    width: 60px;
    height: 60px;
    background: #333;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.fab-button:hover {
    background: #0f0;
}

.fab-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.fab-options.show {
    display: flex;
}

.fab-option {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.fab-option:hover {
    transform: scale(1.05);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        justify-content: flex-start;
    }
    
    nav ul {
        display: none;
        transform: translateX(100%);
    }
    
    nav ul.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 0;
        width: 250px;
        height: calc(100vh - 60px);
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateX(0);
    }
    
    .hamburger {
        display: block;
    }

    .bar {
        transition: all 0.5s ease;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    section {
        margin: 0.5rem;
    }

    .floating-menu {
        bottom: 20px;
        right: 20px;
    }

    #services, 
    #about,
    #gallery,
    .contact {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .container {
        padding: 10px;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0;
        width: 100%;
    }

    header {
        margin-top: 60px;
    }
}

/* Gallery Section */
#gallery {
    background-color: #fff;
    padding: 4rem 2rem;
    margin: 2rem;
    border-radius: 10px;
}

#gallery h2 {
    position: relative;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

#gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    border-radius: 2px;
}

#gallery h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: #ddd;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    min-width: 100%;
    padding: 0 1rem;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 300px;
    }
    
    .gallery-nav {
        padding: 0.5rem;
        font-size: 1rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #43A047, #2E7D32);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}
