        /* Base/Mobile Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.4;
            font-size: 16px;
        }

        .navbar {
            background: #333;
            color: white;
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar h1 {
            font-size: 1.5rem;
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url(images/photo-1503376780353-7e6692767b70.avif);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 2rem 1rem;
            color: white;
        }

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

        .fleet {
            padding: 2rem 1rem;
            background: #f4f4f4;
        }

        .car-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .car-card {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .contact {
            padding: 2rem 1rem;
            background: #333;
            color: white;
        }

        /* Tablet Styles */
        @media (min-width: 600px) {
            body {
                font-size: 17px;
            }

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

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

            .navbar h1 {
                font-size: 1.75rem;
            }
        }

        /* Desktop Styles */
        @media (min-width: 900px) {
            .hero {
                padding: 4rem 2rem;
            }

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

            .car-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .contact {
                padding: 4rem 2rem;
            }
        }

        /* Common Components */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 1rem;
            font-size: 1rem;
        }

        input, button {
            width: 100%;
            padding: 0.75rem;
            margin: 0.5rem 0;
            border: none;
            border-radius: 4px;
        }

        .contact {
    padding: 2rem 1rem;
    background: #333;
    color: white;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 750px;
    margin: 0 auto;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-link:hover {
    background: rgba(255,255,255,0.2);
}

@media (min-width: 600px) {
    .contact-methods {
        flex-direction: row;
        justify-content: center;
    }
}
/* Car Image Styles */
.car-image-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    z-index: 10;
}

.car-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image {
    transform: scale(1.05);
}

/* Existing styles remain, add these modifications */
.car-card {
    overflow: hidden;
}

.car-features {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

@media (min-width: 600px) {
    .car-image-container {
        padding-top: 66.66%; /* 3:2 aspect ratio for tablet */
    }
}

@media (min-width: 900px) {
    .car-image-container {
        padding-top: 56.25%; /* 16:9 for desktop */
    }
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 999;
    font-size: 0.9rem;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

.carousel {
    position: relative;
}

.carousel-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev {
    left: 8px;
}

.carousel-btn.next {
    right: 8px;
}

.carousel-btn:focus {
    outline: none;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero-card {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: white;
}

.hero-card.cars {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/S-class-Mercedes.avif");
}

.hero-card.machines {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/crane.jpeg");
}

.hero-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-card h2 {
    font-size: 2rem;
}

.hero-card p {
    font-size: 1.1rem;
}

/* Desktop */
@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }
}