/* --- İLETİŞİM SAYFASI TASARIMI --- */

.contact-hero {
    background: linear-gradient(rgba(6, 57, 112, 0.9), rgba(6, 57, 112, 0.9)), url('../img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.contact-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.contact-hero h1 span { color: #ff8a42; }
.contact-hero .breadcrumb-simple { color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.contact-hero .breadcrumb-simple a { color: #fff; }

.contact-main { margin-top: -60px; padding-bottom: 80px; position: relative; z-index: 5; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Sol Taraf: İletişim Bilgileri */
.contact-info-side {
    background: #063970;
    padding: 60px 40px;
    color: #fff;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff8a42;
    flex-shrink: 0;
}

.info-item h3 { font-size: 1.1rem; margin-bottom: 5px; color: #ff8a42; }
.info-item p, .info-item a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; line-height: 1.6; }

.social-connect { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; transition: 0.3s;
}
.social-links a:hover { background: #ff8a42; transform: translateY(-3px); }

/* Sağ Taraf: Form */
.contact-form-side { padding: 60px; background: #fff; }
.modern-form h2 { font-size: 2rem; color: #063970; margin-bottom: 10px; }
.modern-form p { color: #666; margin-bottom: 35px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 20px; }

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    border-radius: 12px;
    font-family: inherit;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #063970;
    background: #fff;
    outline: none;
}

.submit-btn {
    background: #ff8a42;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.submit-btn:hover { background: #e07630; transform: scale(1.02); }

/* Harita */
.map-section iframe { width: 100%; height: 450px; border: none; display: block; }

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-main { margin-top: 30px; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-side { padding: 30px; }
}