/* ================================
   İLETİŞİM SAYFASI ÖZEL CSS
================================ */

/* Sayfa Genel Yapısı */
body {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Navbar Boşluğu ve Breadcrumb */
.breadcrumb {
    margin-top: 73px !important;
    background-color: #f8fbff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

/* Ana Grid Yapısı */
.contact-section {
    padding: 60px 0;
    flex: 1; /* İçerik az olsa bile footer'ı aşağıda tutar */
    color: #0f172a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Sol Taraf: İletişim Bilgileri */
.contact-kicker {
    display: inline-flex;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(55, 158, 216, 0.08);
    color: #1b5f94;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #0f172a;
}

.contact-info .blue-text {
    color: #379ed8;
}

.contact-info p {
    font-size: 17px;
    color: #556274;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #379ed8;
    font-size: 20px;
    border: 1px solid rgba(55, 158, 216, 0.1);
}

.info-content span {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-content a {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: #379ed8;
}

/* Sağ Taraf: Form Tasarımı */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eef4fb;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #379ed8;
    box-shadow: 0 0 0 4px rgba(55, 158, 216, 0.1);
}

/* Gönder Butonu */
.contact-form .btn.primary {
    width: 100%;
    height: 55px;
    background: #379ed8;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.contact-form .btn.primary:hover {
    background: #1d69a3;
    transform: translateY(-2px);
}

/* Footer & Copyright Yerleşimi */
.footer {
    margin-top: auto;
}

.copyright {
    margin-bottom: 0 !important;
}

/* ================================
   MOBİL UYUMLULUK (Responsive)
================================ */
@media (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info h1 {
        font-size: 32px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}