/* ===== Legal Pages Shared Styles ===== */

/* Navbar - transparent */

/* Legal Page Layout */
.legal-page {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: var(--bg-deep);
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Header */
.legal-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-gold);
}

.legal-header-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    margin-bottom: 1.5rem;
}

.legal-header-icon svg {
    color: var(--gold);
}

.legal-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.legal-header .last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.legal-header .last-updated span {
    color: var(--gold);
    font-weight: 600;
}

/* Effective Date Banner */
.effective-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    margin-bottom: 2.5rem;
}

.effective-banner svg {
    flex-shrink: 0;
    color: var(--gold);
}

.effective-banner p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.effective-banner strong {
    color: var(--gold-light);
}

/* Section */
.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.legal-section h2 .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    color: var(--gold);
    flex-shrink: 0;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin: 1.25rem 0 0.5rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
}

/* Highlight Box */
.highlight-box {
    padding: 1.25rem 1.5rem;
    background: rgba(212, 168, 67, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    margin: 1rem 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1rem;
}

.highlight-box strong {
    color: var(--gold-light);
}

/* Info Card */
.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
}

.info-card .info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 12px;
    color: var(--gold);
}

.info-card .info-content h4 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-card .info-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.data-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table td {
    padding: 0.65rem 1rem;
    border: 1px solid rgba(212, 168, 67, 0.08);
    color: var(--text-secondary);
    line-height: 1.5;
}

.data-table tr:hover td {
    background: rgba(212, 168, 67, 0.03);
}

/* Contact Section */
.legal-contact {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.legal-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.legal-contact p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-contact a.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.legal-contact a.contact-email:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Back to Home Link */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 2rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: rgba(212, 168, 67, 0.08);
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 80px;
    }

    .legal-container {
        padding: 0 1.25rem;
    }

    .legal-section h2 {
        font-size: 1.1rem;
    }

    .data-table {
        font-size: 1rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.5rem 0.75rem;
    }

    .info-card {
        flex-direction: column;
        gap: 0.75rem;
    }
}
