 /* Üst Bilgileri Yan Yana Getiren Konteyner */
.contact-cards-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    max-width: 900px; /* Form genişliği ile eşitledik */
    margin: 40px auto;
    padding: 0;
    width: 100%;
}

.small-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-circle i {
    color: #fff;
}

/* ORTA FORM KUTUSU */
.form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px; 
    margin: 0 auto !important;
    display: block !important;
}

.talep-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

/* --- SAĞA UZATMA VE HİZALAMA DÜZELTMESİ --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütun */
    gap: 15px;
    width: 100%; /* Formun içine tam yayılmasını sağlar */
}

/* Tüm inputları ve textarea'yı sağa kadar uzatır */
.form-grid input, 
.form-grid textarea {
    width: 100% !important;
    box-sizing: border-box; /* Padding'in kutuyu dışarı taşırmasını engeller */
}

/* Mesaj Konusu ve Mesaj alanını 2 sütuna tam yayar */
input[name="Konu"], 
.talep-form textarea {
    grid-column: span 2 !important;
}