/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */


/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background: linear-gradient(#010101, #710B0B);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    height: 80px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff5252;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(1,1,1,0.6), rgba(113,11,11,0.6)),
                url("Gemini_Generated_Image_ybdxdcybdxdcybdx.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ddd;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #710B0B;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #a11212;
    transform: translateY(-3px);
}

/* Statistics Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 20px;
    text-align: center;
}

.stat h2 {
    font-size: 42px;
    color: #161512;
}

.stat p {
    font-size: 16px;
    color: #0a0808;
    margin-top: 5px;
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 60px 20px;
}

.section-title h2 {
    font-size: 42px;
    color: #11100a;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #161313;
}

/* Options Table */
.OPTIONS {
    padding: 40px 20px;
}

.OPTIONS h2 {
    text-align: center;
    font-size: 36px;
    color: #0e0d0b;
    margin-bottom: 20px;
}

.OPTIONS table {
    width: 90%;
    margin: 0 auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.OPTIONS th, .OPTIONS td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.OPTIONS th {
    background: #710B0B;
    color: white;
    font-weight: 600;
}

.OPTIONS tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

/* Car Items */
.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}

.item {
    background: linear-gradient(#010101, #710B0B);
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    color: white;
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item h2 {
    color: #ffcc00;
    margin: 15px 0 5px 0;
}

.item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.item ul li {
    margin: 5px 0;
    color: #ddd;
}

.item p {
    margin: 10px 0 15px 0;
    color: #ccc;
}

.item a {
    display: inline-block;
    padding: 12px 24px;
    background: #710B0B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 20px;
}

.item a:hover {
    background: #a11212;
}

/* Footer */
footer {
    background: #710B0B;
    color: white;
    padding: 20px;
    text-align: center;
}
/* About Us Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 20px;
    background: linear-gradient(#010101, #710B0B);
    color: white;
}

.about-content {
    max-width: 600px;
    margin: 20px;
}

.about-content h2 {
    font-size: 32px;
    color: #ffcc00;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #ccc;
}

.about-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.about-image {
    max-width: 500px;
    margin: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Responsive for About Section */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image, .about-content {
        margin: 20px 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(#010101, #710B0B);
    color: white;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1 1 400px;
    background: linear-gradient(#111, #710B0B);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.contact-info h2, .contact-form h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ddd;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: #222;
    color: white;
    font-size: 16px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form button {
    padding: 15px;
    background: #710B0B;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #a11212;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}

/* Offer page */
.offer-box {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    background: #710B0B;
    border-radius: 8px;
}

.offer-box p {
    margin-bottom: 10px;
    color: #ddd;
}

.offer-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.offer-box ul li {
    margin: 5px 0;
    color: #fff;
}

/* Car Details Page */
.car-details-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.car-details-left img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
}

.car-details-right {
    flex: 1;
    color: white;
}

.car-details-right h2 {
    margin-bottom: 15px;
    color: #ffcc00;
}

.car-details-right h3 {
    margin: 8px 0;
    font-weight: 500;
    color: #ccc;
}

.car-details-right .rent-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #710B0B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.car-details-right .rent-btn:hover {
    background: #ffcc00;
    color: #010101;
}

/* Responsive */
@media (max-width: 768px) {
    .car-details-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 900px) {
    header {
        padding: 10px 25px;
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .stats {
        gap: 35px;
        flex-wrap: wrap;
    }

    .OPTIONS table {
        width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    header img {
        height: 60px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav ul li a {
        display: block;
        padding: 10px;
    }

    .hero {
        height: 70vh;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-btn {
        padding: 12px 25px;
    }

    .stats {
        flex-direction: column;
        gap: 25px;
        padding: 35px 15px;
    }

    .stat h2 {
        font-size: 34px;
    }

    .section-title h2,
    .OPTIONS h2 {
        font-size: 30px;
    }

    .section-title p {
        font-size: 16px;
    }

    .OPTIONS {
        overflow-x: auto;
    }

    .OPTIONS table {
        min-width: 600px;
    }

    .OPTIONS th,
    .OPTIONS td {
        padding: 14px 10px;
    }
}