:root {
    --brand-blue: #2e3192;
    --brand-red: #ee1d24;
}

/* Page Hero */
.page-hero.dealer {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-hero.dealer h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-hero.dealer p {
    font-size: 18px;
    margin-top: 12px;
}

/* Benefits Section */
.benefits-section {
    background: #f9f9f9;
    padding: 70px 20px;
    text-align: center;
}

.benefits-section .section-title {
    color: var(--brand-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    color: var(--brand-red);
    font-size: 36px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--brand-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #555;
    font-size: 15px;
}

/* Dealer Form */
.dealer-form-section {
    padding: 70px 20px;
    text-align: center;
}

.dealer-form-section h2 {
    color: var(--brand-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dealer-form-section .form-intro {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
}

.dealer-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.dealer-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.dealer-form input,
.dealer-form select,
.dealer-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
}

.dealer-form input:focus,
.dealer-form select:focus,
.dealer-form textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 8px rgba(46, 49, 146, 0.2);
    outline: none;
}

.dealer-form textarea {
    margin-top: 15px;
    resize: none;
}

.dealer-form button {
    margin-top: 25px;
    width: 100%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.dealer-form button:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
}

.form-msg {
    color: green;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero.dealer h1 {
        font-size: 28px;
    }

    .benefits-section .section-title {
        font-size: 24px;
    }

    .dealer-form-section h2 {
        font-size: 24px;
    }
}