/* Test Drive Page */
.test-drive-page {
    background: #111;
}

/* Hero */
.test-drive-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
        url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?q=80&w=1800') center center/cover no-repeat;
}

.test-drive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.test-drive-hero-content h1 {
    font-size: 74px;
    line-height: 1;
    margin: 18px 0 28px;
}

.test-drive-hero-content p {
    color: #ddd;
    font-size: 22px;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 35px;
}

/* Main Section */
.test-drive-main {
    padding: 100px 0;
}

.test-drive-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 45px;
    align-items: start;
}

/* Sidebar */
.test-drive-sidebar {
    position: sticky;
    top: 110px;
}

.test-drive-sidebar-box {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 38px;
}

.test-drive-sidebar-box h2 {
    font-size: 34px;
    margin-top: 0;
    margin-bottom: 24px;
}

.test-drive-sidebar-box p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 24px;
}

.test-drive-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.test-drive-benefits li {
    padding: 14px 0;
    border-bottom: 1px solid #222;
    color: #ddd;
}

/* Form */
.test-drive-form-box {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 45px;
}

.test-drive-form-box h2 {
    font-size: 44px;
    margin-top: 0;
    margin-bottom: 20px;
}

.test-drive-form-box p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
}

.test-drive-form-box label {
    display: block;
    margin-bottom: 8px;
    color: #F5F0E8;
    font-weight: bold;
}

.test-drive-form-box input,
.test-drive-form-box select,
.test-drive-form-box textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.test-drive-form-box input:focus,
.test-drive-form-box select:focus,
.test-drive-form-box textarea:focus {
    outline: none;
    border-color: #C4622D;
}

/* Form Grid */
.test-drive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Success Message */
.booking-success {
    background: rgba(55,160,90,0.12);
    border: 1px solid rgba(55,160,90,0.35);
    color: #7ee09b;
    padding: 18px 22px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Booking Steps */
.test-drive-steps {
    padding: 100px 0;
    background: #0d0d0d;
}

.test-drive-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.test-drive-step-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 38px;
    transition: 0.35s ease;
}

.test-drive-step-card:hover {
    transform: translateY(-6px);
    border-color: #C4622D;
}

.test-drive-step-card span {
    color: #C4622D;
    font-size: 46px;
    font-weight: bold;
}

.test-drive-step-card h3 {
    font-size: 24px;
    margin: 22px 0 14px;
}

.test-drive-step-card p {
    color: #aaa;
    line-height: 1.8;
}

/* CTA */
.test-drive-cta {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 35%),
        #161616;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.test-drive-cta-inner {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.test-drive-cta-inner h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.test-drive-cta-inner p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 18px;
}

.test-drive-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media(max-width: 1200px) {

    .test-drive-layout {
        grid-template-columns: 1fr;
    }

    .test-drive-sidebar {
        position: relative;
        top: auto;
    }

}

@media(max-width: 1000px) {

    .test-drive-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px) {

    .test-drive-hero {
        min-height: 60vh;
    }

    .test-drive-hero-content h1 {
        font-size: 46px;
    }

    .test-drive-hero-content p {
        font-size: 18px;
    }

    .test-drive-grid,
    .test-drive-steps-grid {
        grid-template-columns: 1fr;
    }

    .test-drive-form-box {
        padding: 30px;
    }

    .test-drive-form-box h2 {
        font-size: 36px;
    }

    .test-drive-cta-inner h2 {
        font-size: 38px;
    }

}