/* İletişim Formu CSS */

.contact-page {
    /*  padding-top: 150px;*/
    background-color: #f5f5f5;
    min-height: 100vh;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #224a98;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1a3a7a;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* Sayfa Başlığı */
.contact-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #224a98;
    text-align: center;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #224a98;
    margin-bottom: 10px;
    font-family: "Bebas Neue", cursive;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Flash Mesajları */
.flash-messages {
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Wrapper */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group label .required {
    color: #dc3545;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #224a98;
    box-shadow: 0 0 0 3px rgba(34, 74, 152, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit,
.btn-reset {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit {
    background-color: #224a98;
    color: #fff;
}

.btn-submit:hover {
    background-color: #1a3a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 74, 152, 0.3);
}

.btn-reset {
    background-color: #6c757d;
    color: #fff;
}

.btn-reset:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* CAPTCHA Stilleri */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #224a98;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    white-space: nowrap;
}

.captcha-equals {
    font-size: 20px;
    color: #333;
}

.captcha-input {
    width: 100px;
    flex-shrink: 0;
}

.btn-refresh-captcha {
    background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-refresh-captcha:hover {
    background-color: #5a6268;
    transform: rotate(180deg);
}

.captcha-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.captcha-error i {
    font-size: 14px;
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #224a98;
    margin-bottom: 30px;
    font-family: "Bebas Neue", cursive;
    letter-spacing: 1px;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #224a98;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.6;
}

.info-content a {
    color: #224a98;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #1a3a7a;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info-section {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-title {
        font-size: 36px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit,
    .btn-reset {
        width: 100%;
        justify-content: center;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

