/* css/iletisim_style.css (Tamamen Yenilenmiş Sürüm) */

/* Sayfa Başlığı */
.iletisim-header-bg {
    background: linear-gradient(rgba(13, 71, 161, 0.88), rgba(25, 118, 210, 0.8));
    padding: 60px 0;
    color: var(--white-color);
}

.iletisim-header-bg h1 {
    font-size: 3rem;
    font-weight: 800;
}

.iletisim-header-bg p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Ana İletişim Bölümü */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

/* GÜNCELLENDİ: Sol Taraftaki İletişim Bilgileri */
.contact-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-card {
    display: flex;
    align-items: center;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    color: var(--dark-color);
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow);
    border-color: var(--accent-color);
}

.info-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.info-card span {
    font-size: 1rem;
    color: var(--grey-color);
}

/* GÜNCELLENDİ: Sağ Taraftaki İletişim Formu */
.contact-form {
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative; /* İkonları konumlandırmak için */
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-color);
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px; /* İkon için solda boşluk */
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fdfdfd;
}

.form-group textarea {
    padding: 15px 15px 15px 45px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.2);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--accent-color);
}

.contact-form .cta-button {
    width: 100%;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}
.contact-form .cta-button:hover {
     background-color: #ef6c00;
}

/* YENİ: İletişim Sayfası Servis Bölgeleri */
.contact-bolge-section {
    padding: 80px 0;
}
.contact-bolge-section .bolge-etiketi {
    background-color: var(--white-color);
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.contact-bolge-section .bolge-etiketi:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.contact-bolge-section .bolge-etiketi i {
    margin-right: 8px;
}


/* GÜNCELLENDİ: Harita Alanı */
.map-section {
    padding: 0;
    line-height: 0;
}
.map-section iframe {
    filter: grayscale(100%); /* Haritayı siyah-beyaz yap */
    transition: filter 0.5s ease;
}
.map-section iframe:hover {
    filter: grayscale(0%); /* Üzerine gelince renklendir */
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        margin-top: 50px;
    }
}