/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: #0a0a0a;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: black;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .logo {
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}
.navbar ul li a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: url('hero-car.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 3.5rem;
    color: #f39c12;
    text-shadow: 0 0 15px #f39c12;
}
.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-top: 10px;
}
.cta-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 25px;
    font-size: 1rem;
    color: black;
    background: #f39c12;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.cta-btn:hover {
    background: #e67e22;
}

/* Featured Cars Section */
.featured-cars {
    padding: 50px 20px;
    background: #121212;
    text-align: center;
}
.featured-cars h2 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 30px;
}
.cars-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.car {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.car img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.car h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.car p {
    color: #bbb;
    font-size: 0.9rem;
}
.car:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background: #121212;
    text-align: center;
}
.contact-section h2 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
}
.contact-section p {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 30px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}
.submit-btn {
    padding: 10px 20px;
    background: #f39c12;
    border: none;
    color: #000;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}