/* ═══════════════════════════════════════
   PRIVACY POLICY — Chethi Batik 2026
   Premium Legal Page Styling
   ═══════════════════════════════════════ */

.legal-page {
    background-color: var(--bg);
}

/* ─── Legal Hero ─── */
.legal-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: #fff;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 10%, rgba(211, 47, 47, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 90%, rgba(211, 47, 47, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--red);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--red);
    font-style: italic;
}

/* ─── Breadcrumbs ─── */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.breadcrumbs a:hover {
    color: var(--red);
}

.breadcrumbs .sep {
    opacity: 0.4;
}

.breadcrumbs .current {
    color: var(--text-main);
    font-weight: 600;
}

/* ─── Content Section ─── */
.legal-content-section {
    padding: 6rem 0 10rem;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4rem;
    box-shadow: var(--shadow-light);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
}

.legal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-meta {
    display: flex;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-meta p {
    margin: 0;
}

.legal-meta strong {
    color: var(--text-main);
}

/* ─── Typography ─── */
.legal-body {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.legal-body p {
    margin-bottom: 1.5rem;
}

.legal-body h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 3.5rem 0 1.5rem;
}

.legal-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 2.5rem 0 1rem;
}

.legal-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.legal-body li {
    margin-bottom: 0.75rem;
}

.legal-body strong {
    color: var(--text-main);
}

.legal-contact-box {
    background: var(--bg-2);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 4rem;
    border: 1px solid var(--border);
}

.legal-contact-box p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.legal-contact-box p:last-child {
    margin-bottom: 0;
}

.legal-contact-box i {
    width: 24px;
    color: var(--red);
    font-size: 1.1rem;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .legal-hero {
        padding: 8rem 0 4rem;
    }

    .legal-card {
        padding: 2.5rem 1.5rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .legal-body h3 {
        font-size: 1.5rem;
    }

    .legal-contact-box {
        padding: 1.5rem;
    }
}
