/*
|--------------------------------------------------------------------------
| Oluşturulma Tarihi : 05.07.2026
| Değişiklik Tarihi  : 05.07.2026
| Yaratan            : Özgür Elibol
| Dokümanın Amacı    : Sosyal medya işleri popup talep formu ve form sayfası
|                      için izole stil dosyasıdır.
|--------------------------------------------------------------------------
*/

.social-inline-contact-disabled {
    display: none !important;
}

/* Popup */

.social-request-modal-open {
    overflow: hidden;
}

.social-request-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
    padding: 24px;
}

.social-request-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-request-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.74);
    backdrop-filter: blur(8px);
}

.social-request-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(860px, 100%);
    height: min(88vh, 850px);
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 34px 120px rgba(0, 0, 0, 0.40);
}

.social-request-modal-header {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 22px;
    background: #08111f;
    color: #ffffff;
}

.social-request-modal-header strong {
    font-size: 17px;
}

.social-request-modal-header button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.social-request-modal iframe {
    width: 100%;
    height: calc(100% - 64px);
    border: 0;
    background: #ffffff;
}

/* Form Page */

.social-request-form-page {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #0f172a;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.13), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 54%, #fff7ed 100%);
}

.social-request-form-shell {
    width: min(820px, calc(100% - 28px));
    margin: 0 auto;
    padding: 34px 0;
}

.social-request-form-card {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.social-request-form-head {
    padding: 30px 30px 24px;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 34%),
        linear-gradient(135deg, #08111f, #111827 58%, #1e293b);
    color: #ffffff;
}

.social-request-form-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #fbbf24;
    font-weight: 900;
}

.social-request-form-head h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.social-request-form-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.social-request-form {
    padding: 30px;
    display: grid;
    gap: 18px;
}

.social-request-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.social-request-form label {
    display: block;
    font-weight: 900;
    color: #111827;
}

.social-request-form input,
.social-request-form select,
.social-request-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.social-request-form textarea {
    resize: vertical;
    min-height: 110px;
}

.social-request-form input:focus,
.social-request-form select:focus,
.social-request-form textarea:focus {
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.social-request-kvkk {
    display: flex !important;
    gap: 12px;
    align-items: flex-start;
    font-weight: 500 !important;
    color: #475569 !important;
    line-height: 1.55;
}

.social-request-kvkk input {
    width: auto !important;
    margin-top: 4px !important;
    flex: 0 0 auto;
}

.social-request-kvkk a {
    color: #f97316;
    font-weight: 900;
}

.social-request-submit {
    border: 0;
    min-height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: #111827;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

.social-request-alert {
    margin: 22px 30px 0;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 800;
    line-height: 1.55;
}

.social-request-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.social-request-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.social-request-close-note {
    padding: 0 30px 30px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.hidden-field {
    display: none !important;
}

@media (max-width: 768px) {
    .social-request-modal {
        padding: 10px;
    }

    .social-request-modal-dialog {
        height: 92vh;
        border-radius: 22px;
    }

    .social-request-modal-header {
        height: 58px;
        padding: 0 16px;
    }

    .social-request-modal-header strong {
        font-size: 14px;
    }

    .social-request-modal iframe {
        height: calc(100% - 58px);
    }

    .social-request-form-shell {
        width: min(100% - 18px, 820px);
        padding: 16px 0;
    }

    .social-request-form-grid {
        grid-template-columns: 1fr;
    }

    .social-request-form,
    .social-request-form-head {
        padding: 22px;
    }

    .social-request-alert {
        margin: 18px 22px 0;
    }

    .social-request-close-note {
        padding: 0 22px 22px;
    }
}


/* FORMU DOLDUR BUTON RENK DÜZELTMESİ - STEP 7 */

.contact-section .contact-buttons button.btn.btn-outline,
.contact-section .contact-buttons #openSocialRequestForm {
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: none !important;
}

.contact-section .contact-buttons button.btn.btn-outline:hover,
.contact-section .contact-buttons #openSocialRequestForm:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fbbf24 !important;
    border-color: rgba(251, 191, 36, 0.52) !important;
    transform: translateY(-2px);
}

.contact-section .contact-buttons button.btn.btn-outline:focus,
.contact-section .contact-buttons #openSocialRequestForm:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18) !important;
}
