/* ═══════════════════════════════════════════════════════════════ */
/* Legal Pages — Gizlilik, Kullanım Koşulları, KVKK             */
/* ═══════════════════════════════════════════════════════════════ */

.legal-page {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ─── Section ─── */
.legal-section {
    margin-bottom: 40px;
}

.legal-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.15);
}

.legal-section-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(249, 115, 22, 0.12);
    flex-shrink: 0;
}

.legal-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-text strong {
    color: var(--text);
    font-weight: 700;
}

/* ─── Lists ─── */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.legal-list li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ─── Info Box ─── */
.legal-info-box {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.legal-info-box strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 6px;
}

.legal-info-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ─── Table ─── */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.legal-table th {
    background: var(--bg-surface);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-table td {
    color: var(--text-secondary);
}

.legal-table tr:hover td {
    background: rgba(249, 115, 22, 0.03);
}

/* ─── Contact Section ─── */
.legal-contact {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(59, 130, 246, 0.04));
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    margin-top: 48px;
}

.legal-contact h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-contact a {
    color: var(--primary);
    font-weight: 700;
}

.legal-contact a:hover {
    text-decoration: underline;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .legal-container {
        padding: 0 16px 60px;
    }

    .legal-section-title {
        font-size: 17px;
    }

    .legal-table {
        font-size: 13px;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }
}