/* İLETİŞİM BANNER */
.contact-hero {
    height: 35vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1522858547137-f1dcec554f55?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero h1 span { color: #ff8c00; }

/* KONTEYNER VE GRİD */
.contact-container { padding: 80px 8%; background: #f8f9fa; }
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
}

/* FORM STİLİ */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box h2 { margin-bottom: 25px; }
.contact-form-box span { color: #ff8c00; }

.input-group { margin-bottom: 15px; }
.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 10px rgba(255,140,0,0.1);
}

.send-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.send-btn:hover { background: #ff8c00; }

/* BİLGİ KUTULARI VE HARİTA */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff8c00;
    background: #fff4e6;
    padding: 15px;
    border-radius: 15px;
    height: fit-content;
}

.map-box {
    margin-top: 30px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 20px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}
