﻿/* HERO */
.dealer-hero {
    position: relative;
    background: url('../images/about/ev-road.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dealer-hero .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    }

.hero-content {
    position: relative;
    color: white;
    text-align: center;
}

    .hero-content h1 {
        font-size: 48px;
    }

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* BENEFITS */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

    .benefit-card img {
        height: 50px;
        margin-bottom: 10px;
    }

    .benefit-card:hover {
        transform: translateY(-8px);
    }

/* PROCESS */
.dealer-process {
    background: #f8fafc;
    padding: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
}

.step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* FORM */
.dealer-form {
    background: #111827;
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-text {
    color: white;
}

.form-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* INPUT */
.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: none;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
}

/* MOBILE */
@media(max-width:768px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
