/* =======================================================
    LOREFIX İLETİŞİM SAYFASI (iletisim.css)
======================================================= */

/* Sayfa Arka Planı ve Düzen */
.contact-body {
    background-color: #f8f9fa;
    padding-bottom: 50px;
}

/* Üst Başlık Alanı */
.contact-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Ana Grid Yapısı */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Sol: Bilgi, Sağ: Harita ve Form */
    gap: 30px;
    padding: 0 20px;
}

/* --- SOL SÜTUN: FİRMA VE YETKİLİ --- */
.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: fit-content;
}

.official-info {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.official-info img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f7ff;
    margin-bottom: 15px;
}

.official-info h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.official-info span {
    color: #007bff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: #f0f7ff;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.contact-item .text h4 {
    font-size: 0.8rem;
    color: #888;
}

.contact-item .text p {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* --- SAĞ SÜTUN: HARİTA VE FORM --- */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Harita Alanı */
.map-container {
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 350px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Form Alanı */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-card h3 {
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f1f1f1;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #007bff;
    background: #fdfdff;
}

.btn-submit {
    background: #007bff;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        order: 2; /* Bilgiler mobilde alta gelsin */
    }
    
    .content-right {
        order: 1; /* Form ve Harita mobilde üste çıksın */
    }
}