/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* ===== Header ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #0b3d91;
    text-decoration: none;
}

.logo-coil {
    color: #0b3d91;
}

.logo-ards {
    color: #ff6b3c;
}

.logo2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
}

.logo2 .logo-coil {
    color: #ffffff;
}

.logo2 .logo-ards {
    color: #ff6b3c;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #0b3d91;
    color: #fff;
}

.btn-sm {
    background: #0b3d91;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-sm:hover {
    background: #ff6b3c;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    border-radius: 2px;
}

/* ===== Inventory Hero ===== */
.inventory-hero {
    background: url('../images/inventory.jpg') center/cover no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    color: #fff;
}

.inventory-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 145, 0.6);
}

.inventory-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Inventory Grid ===== */
.inventory-grid {
    padding: 4rem 2rem;
}

.inventory-grid .grid--4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.car-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.car-card__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.car-card__details {
    padding: 1rem 1.2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-card__details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #0b3d91;
    margin-bottom: 0.5rem;
}

.car-card__details p {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.car-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b3c;
    margin-bottom: 1rem;
}

.car-card__details .btn--sm {
    align-self: flex-start;
}

/* ===== Centered Inventory CTA ===== */
.center-btn {
    display: inline-block;
    margin: 3rem auto 0;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0b3d91;
    color: #0b3d91;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.center-btn:hover {
    background: #0b3d91;
    color: #fff;
}

/* ===== VIP CTA ===== */
.inventory-cta {
    background: #f4f7fb;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
}

.inventory-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0b3d91;
}

.inventory-cta p {
    font-family: 'Inter', sans-serif;
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.inventory-cta .cta__form input[type="email"] {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 250px;
    max-width: 80%;
    margin-right: 0.5rem;
}

.inventory-cta .cta__form button {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    background: #0b3d91;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.inventory-cta .cta__form button:hover {
    background: #ff6b3c;
}

/* ===== Why Coilards Section ===== */
.brand-story {
    padding: 4rem 2rem;
    text-align: center;
}

.brand-story h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.brand-story p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.brand-story .banks-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-story .banks-logos img {
    height: 50px;
    object-fit: contain;
}

/* ===== Footer ===== */
.footer {
    background: #0b3d91;
    color: #fff;
    padding: 3rem 2rem;
}

.footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 1rem;
}

.footer .footer-col {
    flex: 1 1 200px;
}

.footer .footer-col h4 {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #ff6b3c;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .inventory-grid .grid--4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 70px;
        right: 0;
        flex-direction: column;
        background: #fff;
        width: 220px;
        padding: 1rem;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-list.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .inventory-grid .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .inventory-grid .grid--4 {
        grid-template-columns: 1fr;
    }

    .inventory-hero {
        padding: 4rem 1rem;
    }
}