/* ======================================================
   İLETİŞİM SAYFASI — CSS
   faldunyam.com ana teması ile birebir uyumlu
   (mor rgb(75,64,95) + pembe #cc88b8 + monospace)
====================================================== */

.iletisim-wrap {
    max-width: 760px;
    margin: 50px auto 70px;
    padding: 0 18px;
    font-family: monospace;
}

/* ---- Başlık ---- */
.iletisim-baslik {
    text-align: center;
    color: rgb(75, 64, 95);
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.iletisim-altbaslik {
    text-align: center;
    color: #4b405f;
    font-family: monospace;
    font-size: 16px;
    margin-bottom: 35px;
}

/* ---- E-posta bilgi kutusu ---- */
.iletisim-bilgi {
    background-color: #cc88b8;
    border: solid 2px rgb(75, 64, 95);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    margin-bottom: 28px;
    box-shadow: 0 6px 18px rgba(75, 64, 95, 0.25);
}

.iletisim-bilgi .zarf-ikon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgb(75, 64, 95);
    margin-bottom: 12px;
}

.iletisim-bilgi .zarf-ikon i {
    font-size: 26px;
    color: #fff;
}

.iletisim-bilgi .bilgi-etiket {
    color: rgb(75, 64, 95);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.iletisim-bilgi a {
    display: inline-block;
    text-decoration: none;
    color: rgb(75, 64, 95);
    font-size: 21px;
    font-weight: bold;
    font-family: monospace;
    transition: color 0.2s ease;
}

.iletisim-bilgi a:hover {
    color: #fff;
}

/* ---- Form kartı ---- */
.iletisim-form {
    background-color: rgb(233, 217, 236);
    border: solid 2px rgb(75, 64, 95);
    border-radius: 14px;
    padding: 34px;
    box-shadow: 0 6px 18px rgba(75, 64, 95, 0.2);
}

.iletisim-form .form-grup {
    margin-bottom: 20px;
}

.iletisim-form label {
    display: block;
    font-weight: bold;
    color: rgb(75, 64, 95);
    font-family: monospace;
    font-size: 15px;
    margin-bottom: 6px;
}

.iletisim-form .form-control {
    font-family: monospace;
    border: 1px solid rgb(75, 64, 95);
    border-radius: 8px;
    padding: 11px 14px;
    background-color: #fff;
    color: #2b2540;
    width: 100%;
}

.iletisim-form .form-control::placeholder {
    color: #9b93ad;
}

.iletisim-form .form-control:focus {
    outline: none;
    border-color: rgb(216, 129, 238);
    box-shadow: 0 0 0 0.2rem rgba(216, 129, 238, 0.3);
    background-color: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ---- Güvenlik sorusu (captcha) ---- */
.captcha-input {
    max-width: 200px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* ---- Gönder butonu ---- */
.iletisim-buton-wrap {
    text-align: center;
    margin-top: 8px;
}

.iletisim-gonder {
    background-color: rgb(75, 64, 95);
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    font-size: 16px;
    border: none;
    padding: 12px 42px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 10px rgba(75, 64, 95, 0.3);
}

.iletisim-gonder:hover {
    background-color: rgb(216, 129, 238);
}

.iletisim-gonder:active {
    transform: translateY(1px);
}

/* ---- Bilgilendirme mesajları ---- */
.iletisim-alert {
    text-align: center;
    font-family: monospace;
    font-weight: bold;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 26px;
}

.iletisim-alert.basarili {
    background-color: #d6f5df;
    color: #1c6b35;
    border: 2px solid #8fd6a6;
}

.iletisim-alert.hata {
    background-color: #fadddd;
    color: #8a2230;
    border: 2px solid #f0a3ab;
}

/* ---- Mobil ---- */
@media screen and (max-width: 576px) {
    .iletisim-form { padding: 22px; }
    .iletisim-wrap { margin: 30px auto 50px; }
    .iletisim-gonder { width: 100%; }
}
