* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #572c00;
}

.logo span {
    color: #000;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #572c00;
}

/* BUTTON */
.btn-primary {
    background: #572c00;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #084298;
}

/* MOBILE MENU ICON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE ONLY BUTTON */
.mobile-btn {
    display: none;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .desktop-btn {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    background: url("images/car-13.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
    background: #572c00;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #084298;
}

/* MODAL */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.booking-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 18px;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
}

.booking-box h2 {
    margin-bottom: 20px;
    text-align: center;
}

/* FORM */
.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.full-btn {
    width: 100%;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* COMMON */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 50px;
}

/* ================= INTRO CONTENT ================= */
.intro-content {
    background: #ffffff;
    padding: 90px 20px;
}

.intro-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.intro-points {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px;
}

.intro-points li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #111;
}

/* IMAGE */
.intro-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .intro-text h2 {
        font-size: 2rem;
    }
}

/* WHY US */
.why-us {
    background: #f8f9fc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.why-card span {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* POPULAR CARS */
.popular-cars {
    background: #ffffff;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.car-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 25px;
    transition: 0.3s;
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-card h3 {
    margin: 15px 0 5px;
    font-size: 1.3rem;
}

.car-card p {
    font-weight: 600;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .why-grid,
    .car-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* CITIES */
.cities {
    background: #f8f9fc;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.city-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.city-card:hover {
    transform: translateY(-6px);
}

.city-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #572c00;
}

/* TESTIMONIALS */
.testimonials {
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-weight: 700;
    color: #572c00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .city-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* COMMON SECTION */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #111;
}

/* ================= CARS SECTION ================= */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.car-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.car-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-info h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.car-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #572c00;
    margin-bottom: 12px;
}

.car-details {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    color: #555;
}

.car-details span {
    background: #f1f3f6;
    padding: 6px 12px;
    border-radius: 20px;
}

/* BUTTON */
.btn-secondary {
    background: #572c00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #084298;
}

/* ================= LOCATIONS SECTION ================= */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
}

.location-card:hover {
    transform: translateY(-8px);
}

.location-card h3 {
    font-size: 1.4rem;
    color: #572c00;
    margin-bottom: 12px;
}

.location-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .cars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .cars-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 2rem;
    }

    .car-image img {
        height: 180px;
    }
}

/* ================= FOOTER ================= */
footer {
    background: #0f172a;
    /* dark navy */
    color: #cbd5e1;
    margin-top: 80px;
}

footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px 30px;
}

/* FOOTER GRID */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #ffffff;
    position: relative;
}

.footer-section h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #572c00;
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 2px;
}

/* LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* ADDRESS TEXT */
.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .container {
        padding: 50px 20px 25px;
    }
}