/* İletişim Sayfası Ana Stilleri */
#hero-iletisim {
    background-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%), url('../img/iletisim_hero.webp');
    justify-content: flex-end;
    text-align: right;
}

#hero-iletisim .hero-implant-content {
    max-width: 50%;
    text-align: right;
}

#contact-content {
    padding: 80px 0;
    background-color: #f8f9fa; /* Açık bir arka plan rengi */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch; /* Dikeyde hizalamak için flex-start'tan stretch'e çevrildi */
}

/* Sol Sütun - İletişim Bilgileri */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info .branch-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
}

.info-item i {
    font-size: 18px;
    color: var(--primary-color);
    width: 25px;
    margin-right: 15px;
}

/* Sağ Sütun - Form */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex; /* Esnek kutu modeli eklendi */
    flex-direction: column; /* Çocukları dikeyde sırala */
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Formun, sarmalayıcı içindeki tüm boşluğu doldurmasını sağlar */
}

.contact-form .form-group {
    margin-bottom: 20px;
}

/* Mesaj kutusunun grubunu dikeyde esnet */
.contact-form .form-group:last-of-type {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(38, 50, 56, 0.1);
}

.contact-form textarea {
    flex-grow: 1; /* Mesaj kutusunun, büyüyen grubu doldurmasını sağlar */
    min-height: 140px;
    resize: vertical;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #2c3e50; /* Footer rengi ile aynı yapıldı */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #34495e; /* Hover rengi biraz daha açık */
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
} 

/* Mobil için Hero Ayarlamaları */
@media (max-width: 768px) {
    #hero-iletisim {
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    #hero-iletisim .hero-implant-content {
        max-width: 90%;
        text-align: center;
    }
} 