/* ═══════════════════════════════════════
   KFE İletişim Formu — esf-iletisim.css
   ═══════════════════════════════════════ */

.esf-iletisim-wrap {
    max-width: 960px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Başlık ─────────────────────────────── */
.esf-iletisim-header {
    text-align: center;
    margin-bottom: 36px;
}
.esf-iletisim-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0D1B2A;
    margin-bottom: 10px;
}
.esf-iletisim-header p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ── İki Kolon Layout ───────────────────── */
.esf-iletisim-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

/* ── Form Kartı ─────────────────────────── */
.esf-iletisim-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}

/* ── Form Alanları ──────────────────────── */
.esf-iletisim-field {
    margin-bottom: 20px;
}
.esf-iletisim-field label:not(.esf-checkbox) {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}
.esf-iletisim-field label span {
    color: #F97316;
    font-style: normal;
}
.esf-iletisim-field .esf-opt {
    font-weight: 400;
    color: #9ca3af;
    font-size: 12px;
}

.esf-iletisim-field input[type=text],
.esf-iletisim-field input[type=tel],
.esf-iletisim-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}
.esf-iletisim-field input:focus,
.esf-iletisim-field textarea:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.esf-iletisim-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* ── Gönder Butonu ──────────────────────── */
.esf-iletisim-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #F97316;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, transform .1s;
    margin-top: 4px;
    font-family: inherit;
}
.esf-iletisim-btn:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

/* ── Başarı Mesajı ──────────────────────── */
.esf-iletisim-success {
    text-align: center;
    padding: 40px 20px;
    color: #16a34a;
}
.esf-iletisim-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.esf-iletisim-success p  { color: #6b7280; }

/* ── Sağ Kolon ──────────────────────────── */
.esf-iletisim-info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── İletişim Kartları ──────────────────── */
.esf-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s, transform .15s;
}
.esf-info-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transform: translateY(-1px);
}

/* WhatsApp kartı */
.esf-info-card--whatsapp {
    background: #25D366;
    border-color: #25D366;
    cursor: pointer;
}
.esf-info-card--whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
}

/* İkonlar */
.esf-info-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.esf-info-icon--orange {
    background: #fff7ed;
    color: #F97316;
}
.esf-info-icon--orange svg { stroke: #F97316; }
.esf-info-icon--white {
    background: rgba(255,255,255,.25);
    color: #fff;
}

/* Metin */
.esf-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.esf-info-label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}
.esf-info-value {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    word-break: break-word;
    line-height: 1.4;
}
.esf-info-value:hover { color: #F97316; }
.esf-info-sub {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
}
.esf-info-sub:hover { color: #F97316; }

.esf-info-arrow {
    flex-shrink: 0;
    margin-left: auto;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .esf-iletisim-layout {
        grid-template-columns: 1fr;
    }
    .esf-iletisim-form-card { padding: 20px; }
    .esf-iletisim-header h2 { font-size: 24px; }
    .esf-iletisim-info-col { order: -1; }
}
