/* Bayi/Servis Başvuru Sayfası Stilleri */
.honda-dealer-application-container {
    padding: 0 0 60px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

.dealer-application-header {
    margin-top: 120px;
    margin-bottom: 40px;
}

.dealer-application-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.dealer-application-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #CC0000;
}

.dealer-application-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Stilleri */
.dealer-application-form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}

.form-group {
    flex: 1;
    padding: 0 10px;
    margin-bottom: 15px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 1rem;
    color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    padding: 10px 0;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 0.85rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
}

.form-checkbox label {
    font-weight: normal;
    line-height: 1.5;
}

.required {
    color: #CC0000;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.dealer-application-button {
    display: inline-block;
    background-color: #CC0000;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dealer-application-button:hover {
    background-color: #AA0000;
}

/* Başarı ve Hata Mesajları */
.dealer-application-success,
.dealer-application-error {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.dealer-application-success {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.dealer-application-error {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

.success-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.dealer-application-success h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2e7d32;
}

.whatsapp-button-container {
    margin-top: 30px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
}

.whatsapp-button i {
    margin-right: 8px;
}

/* Anasayfa Bayi/Servis Başvuru Bölümü Stilleri */
.honda-dealer-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin: 40px 0;
}

.dealer-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center; /* İçeriği ortala */
}

.dealer-section-text {
    max-width: 800px;
    margin: 0 auto; /* Metni ortala */
}

.dealer-section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    text-align: center; /* Başlığı ortala */
}

.dealer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Çizgiyi ortala */
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #CC0000;
}

.dealer-section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    text-align: center; /* Açıklamayı ortala */
}

/* Buton stilleri */
.dealer-section-buttons {
    display: flex;
    justify-content: center; /* Butonları ortala */
    gap: 20px;
    margin-top: 30px;
}

.dealer-button,
.service-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #CC0000; /* Honda kırmızısı */
    color: white;
    border: none;
    min-width: 200px; /* Minimum genişlik */
}

.dealer-button:hover,
.service-button:hover {
    background-color: #AA0000; /* Hover durumunda daha koyu kırmızı */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .honda-dealer-application-container {
        padding: 0 15px 40px;
    }
    
    .dealer-application-header {
        margin-top: 80px;
    }
    
    .dealer-application-title {
        font-size: 2rem;
    }
    
    .dealer-application-description {
        font-size: 1rem;
    }
    
    .dealer-application-form {
        padding: 20px;
    }
    
    .honda-dealer-section {
        padding: 40px 15px;
    }
    
    .dealer-section-title {
        font-size: 1.8rem;
    }
    
    .dealer-section-description {
        font-size: 1rem;
    }
    
    .dealer-section-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .dealer-button,
    .service-button {
        width: 100%;
        max-width: 300px; /* Mobilde maksimum genişlik */
    }
}
