/* Modern İletişim Sayfası Stilleri */
.contact-info-wrapper {
    margin-bottom: 30px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-title i {
    color: #4a90e2;
    font-size: 1.3rem;
}

.contact-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: #f8f9fa;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2e5f8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-content {
    flex: 1;
}

.contact-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a90e2;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-content a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Form Kartı */
.contact-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: box-shadow 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-title i {
    color: #4a90e2;
}

/* Modern Form Grupları */
.modern-form-group {
    margin-bottom: 25px;
}

.modern-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.modern-label i {
    color: #4a90e2;
    font-size: 0.9rem;
}

.modern-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

.validation-message {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
}

/* Form Footer */
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.btn-modern-submit {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2e5f8f 100%);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-modern-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #2e5f8f 0%, #357abd 50%, #4a90e2 100%);
}

.btn-modern-submit:active {
    transform: translateY(0);
}

.btn-modern-submit i {
    font-size: 0.9rem;
}

.required-info {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.required-info i {
    color: #4a90e2;
}

.required-info b {
    color: #e74c3c;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 !important;
    }

    .page-header .title {
        font-size: 1.8rem !important;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1rem;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-modern-submit {
        width: 100%;
        justify-content: center;
    }

    .modern-input,
    .modern-textarea {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-content {
        text-align: center;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.contact-form-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-form-card {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Erişilebilirlik İyileştirmeleri */
.modern-input:focus,
.modern-textarea:focus,
.btn-modern-submit:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

/* Yüklenme Durumu */
.btn-modern-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

