/* =========================================================
   Yasal doküman tam-ekran modal + cookie banner + footer nav
   (Ayrı dosya: build otomatik minify etmediği için .min ile
    senkron derdi olmadan doğrudan yüklenir.)
   ========================================================= */

/* ===== Tam-ekran modal ===== */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

    .legal-modal.legal-modal--open {
        display: block;
    }

body.legal-modal-open {
    overflow: hidden;
}

.legal-modal__backdrop {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 16, 19, 0.75);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.legal-modal__container {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.legal-modal__header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
}

.legal-modal__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #151B26;
    font-weight: 700;
}

.legal-modal__close {
    flex: 0 0 auto;
    border: none;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    color: #c11e43;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
}

    .legal-modal__close:hover {
        color: #77081D;
    }

.legal-modal__body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 28px 56px;
    color: #151B26;
    font-size: 15px;
    line-height: 1.7;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    outline: none;
}

    .legal-modal__body h4 {
        margin: 24px 0 8px;
        font-size: 17px;
        color: #77081D;
        font-weight: 700;
    }

        .legal-modal__body h4:first-child {
            margin-top: 0;
        }

    .legal-modal__body p {
        margin: 0 0 12px;
    }

    .legal-modal__body ul {
        margin: 0 0 12px;
        padding-left: 22px;
    }

    .legal-modal__body li {
        margin-bottom: 4px;
    }

    .legal-modal__body a {
        color: #c11e43;
        text-decoration: underline;
    }

/* ===== KVKK / ETK onay satırları — cursor:pointer ===== */
.contact-form__row--check .form-check-input,
.contact-form__row--check label {
    cursor: pointer;
}

/* ===== Footer yasal link bloğu ===== */
.footer__legal-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer__legal-nav a {
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
        text-decoration: underline;
        cursor: pointer;
        opacity: 0.9;
    }

        .footer__legal-nav a:hover {
            opacity: 1;
        }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .legal-modal__header {
        padding: 14px 18px;
    }

    .legal-modal__title {
        font-size: 16px;
    }

    .legal-modal__body {
        padding: 18px 18px 44px;
        font-size: 14px;
    }
}
