/* İletişim Sayfası için Özel Stiller */
.contact-container {
    max-width: 900px;
}

.contact-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Form Stili */
.contact-form-column {
    flex: 1;
}

.contact-form {
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
    outline: none;
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

/* İletişim Bilgileri Stili */
.contact-info-column {
    flex: 1;
}

.contact-info-card {
    background: var(--bg-alt);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
}

.contact-info-card h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: var(--spacing-md);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 115, 170, 0.2);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Sosyal Medya */
.social-media {
    margin-top: var(--spacing-lg);
}

.social-media h3 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* SSS Önizleme */
.faq-preview {
    background: var(--bg-alt);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.faq-preview h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: var(--spacing-md);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 115, 170, 0.2);
}

.faq-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Başarı ve Hata Mesajları */
.success-message,
.error-message {
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.error-message {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
}

.success-message i,
.error-message i {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.success-message p,
.error-message p {
    margin-bottom: var(--spacing-md);
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-columns {
        grid-template-columns: 1fr;
    }
    
    .contact-info-column {
        order: -1; /* Mobilde bilgiler üstte görünsün */
    }
}