/* css/iletisim.css */

:root {
    --primary-color: #3ADEE4;
    --primary-dark: #2BBEC7;
}

/* HERO BÖLÜMÜ */
.contact-hero {
    background: linear-gradient(135deg, #d4fcff 0%, #ffffff 100%);
    padding: 160px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(58, 222, 228, 0.1);
}
.contact-hero h1 { font-size: 3rem; font-weight: 800; color: #1e293b; margin-bottom: 20px; }
.contact-hero p { font-size: 1.2rem; color: #6b7280; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* İÇERİK YAPISI (GRID) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol taraf dar, sağ taraf geniş */
    gap: 50px;
    margin-bottom: 80px;
}

/* SOL TARAF: BİLGİ KARTLARI */
.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eef2f6;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s;
}
.info-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }

.info-icon {
    width: 50px; height: 50px;
    background: #e0fcfd;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-content h4 { margin: 0 0 5px 0; font-size: 1.1rem; color: #333; font-weight: 700; }
.info-content p { margin: 0; color: #666; font-size: 0.95rem; line-height: 1.5; }
.info-content a { color: #666; text-decoration: none; transition: 0.3s; }
.info-content a:hover { color: var(--primary-color); }

/* SOSYAL MEDYA */
.social-media-container {
    display: flex; gap: 15px; margin-top: 30px;
}
.social-icon {
    width: 45px; height: 45px;
    background: #fff; color: #6b7280;
    border: 1px solid #e5e7eb; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
    font-size: 1.2rem;
}
.social-icon:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); transform: translateY(-3px); }

/* SAĞ TARAF: FORM */
.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(58, 222, 228, 0.08);
    border: 1px solid #eef2f6;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #4b5563; font-size: 0.9rem; }

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid transparent;
    background-color: #f8fafc;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    color: #333;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(58, 222, 228, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(58, 222, 228, 0.25);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(58, 222, 228, 0.35); }

/* HARİTA */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 20px;
    border: 1px solid #eef2f6;
}

/* MESAJ KUTUSU */
.alert-msg {
    padding: 15px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; font-size: 0.9rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #34d399; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #f87171; }

@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-hero { padding-top: 140px; }
    .contact-hero h1 { font-size: 2.5rem; }
}