/* =========================================
   İLETİŞİM SAYFASI STİLLERİ
   ========================================= */

/* İletişim Bilgi Kutusu */
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-left: 4px solid var(--accent); /* Sol taraf sarı çizgi */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-icon-box {
    min-width: 50px;
    height: 50px;
    background-color: rgba(34, 64, 154, 0.05); /* Primary rengin çok açığı */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.contact-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-1000);
}

.contact-text p, .contact-text a {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
}

/* Google Harita */
.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #eee; /* Yüklenene kadar gri zemin */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- İLETİŞİM FORMU --- */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    border-top: 5px solid var(--primary); /* Üst taraf lacivert çizgi */
}

.form-header { margin-bottom: 30px; }
.form-header h3 { font-size: 1.8rem; margin-bottom: 10px; }

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--accent); /* Odaklanınca sarı kenarlık */
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.1);
}

textarea.form-control {
    resize: vertical; /* Sadece dikey boyutlandırma */
    min-height: 120px;
}

/* Zorunlu Alan İşareti */
.required-star { color: red; margin-left: 3px; }

/* Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper { padding: 25px; margin-top: 30px; }
}