* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lime: #c9ff32;
    --black: #0b0b0b;
    --dark: #111111;
    --gray: #777;
    --light: #f7f7f5;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: var(--light);
}

a {
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    padding: 22px 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(15px);
    z-index: 100;
}

.navbar-brand {
    color: white;
    font-size: 29px;
    font-weight: 800;
}

.navbar-brand span {
    color: var(--lime);
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-size: 14px;
}

.nav-button {
    background: white;
    color: #111;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
}


/* HERO */

.hero {
    min-height: 720px;
    position: relative;
    background-image: url('../images/scorpio-s11.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.45),
            rgba(0,0,0,.15)
        );
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-badge,
.eyebrow {
    color: var(--lime);
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.3);
    padding: 9px 15px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 100px);
    line-height: .92;
    letter-spacing: -5px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--lime);
}

.hero p {
    color: #ddd;
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    margin: 30px 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--lime);
    color: #111;
    padding: 16px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.secondary-button {
    border: 1px solid rgba(255,255,255,.4);
    color: white;
    padding: 16px 25px;
    border-radius: 50px;
}


/* SEARCH */

.search-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.search-item {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1;
}

.search-icon {
    font-size: 22px;
}

.search-item small {
    display: block;
    color: #999;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.search-item strong {
    font-size: 14px;
}

.search-divider {
    width: 1px;
    height: 45px;
    background: #ddd;
}

.search-button {
    background: #111;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
}


/* SECTIONS */

.fleet-section,
.why-section,
.cta-section {
    padding: 110px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.section-header h2,
.section-center h2 {
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 800;
    margin-top: 10px;
}

.view-all {
    color: #111;
    font-weight: 600;
}


/* CAR CARD */

.car-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: .3s;
}

.car-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.car-photo {
    height: 250px;
    position: relative;
    background: #ddd;
    overflow: hidden;
}

.car-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.car-card:hover img {
    transform: scale(1.06);
}

.car-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191919;
    color: var(--lime);
    font-size: 28px;
    font-weight: 800;
}

.available-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #222;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.car-body {
    padding: 24px;
}

.car-top {
    display: flex;
    justify-content: space-between;
}

.car-brand {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-top h3 {
    font-size: 23px;
    margin-top: 5px;
}

.rating {
    font-size: 13px;
    font-weight: 700;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 22px 0;
}

.specs span {
    background: #f2f2f2;
    padding: 7px 10px;
    border-radius: 7px;
    font-size: 11px;
}

.car-bottom {
    border-top: 1px solid #eee;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price strong {
    font-size: 22px;
}

.price small {
    color: #888;
}

.rent-button {
    background: #111;
    color: white;
    padding: 11px 17px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}


/* WHY */

.why-section {
    background: #111;
    color: white;
}

.section-center {
    text-align: center;
}

.feature-card {
    border: 1px solid #333;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.feature-card p,
.step p {
    color: #999;
    line-height: 1.7;
}


/* HOW */

.how-section {
    background: #f7f7f5;
    padding: 110px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 55px;
}

.step {
    background: white;
    padding: 35px;
    border-radius: 20px;
}

.step-number {
    color: #999;
    font-size: 13px;
    margin-bottom: 35px;
}

.step h3 {
    margin-bottom: 15px;
}


/* CTA */

.cta-box {
    background: #111;
    color: white;
    border-radius: 28px;
    padding: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-box h2 {
    font-size: 42px;
    margin-top: 10px;
}


/* FOOTER */

footer {
    background: #080808;
    color: white;
    padding: 65px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    font-size: 30px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--lime);
}

footer p {
    color: #888;
    margin-top: 15px;
}

footer h4 {
    margin-bottom: 20px;
}

footer a {
    display: block;
    color: #888;
    margin: 10px 0;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 20px;
    color: #666;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 768px) {

    .hero,
    .hero-container {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .search-wrapper {
        margin-top: 20px;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .search-button {
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }

    .section-header h2,
    .section-center h2 {
        font-size: 36px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: start;
        gap: 30px;
        padding: 35px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}