/* DESIGN TOKENS */
:root {
    /* ── Text ─── */
    --ink: #0B0F19;
    /* near-black, slate-950 */
    --ink-soft: #1E293B;
    /* slate-800 */
    --ink-muted: #64748B;
    /* slate-500 */
    /* ── Surface ─── */
    --white: #FFFFFF;
    --sand: #F0F9FF;
    /* sky-50 */
    --sand-dark: #E0F2FE;
    /* sky-100 */
    /* ── Brand blues ─── */
    --blue-deep: #1D4ED8;
    /* blue-700 */
    --blue-mid: #2563EB;
    /* blue-600 */
    --blue-light: #DBEAFE;
    /* blue-100 */
    --sky: #0EA5E9;
    /* sky-500 */
    --sky-light: #BAE6FD;
    /* sky-200 */
    /* ── Legacy aliases (keep for footer etc.) ─── */
    --gold: #1D4ED8;
    --gold-light: #DBEAFE;
    --gold-vivid: #0EA5E9;
    /* ── Border ─── */
    --border: rgba(186, 230, 253, 0.7);
    /* sky-200/70 */
    --nav-h: 68px;
}

/* BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--border);
    transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

/* Accent stripe on scroll */
#site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-deep) 0%, var(--sky) 55%, #38BDF8 100%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
}

#site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 1px 0 var(--sky-light), 0 6px 28px rgba(15, 23, 42, .09);
}

#site-header.scrolled::before {
    opacity: 1;
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: var(--nav-h);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: height .3s ease, padding .3s ease;
}

@media (min-width: 640px) {
    .nav-inner {
        padding: 0 20px;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .nav-inner {
        padding: 0 24px;
        gap: 20px;
    }
}

@media (min-width: 1280px) {
    .nav-inner {
        padding: 0 32px;
        gap: 28px;
    }
}

@media (min-width: 1440px) {
    .nav-inner {
        padding: 0 40px;
        gap: 36px;
    }
}

/* — Logo ——————————————————————————————————— */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .12);
    overflow: hidden;
    background: #fff;
    border: 1px solid #E2E8F0;
}

.nav-logo:hover .logo-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .2);
    border-color: #BFDBFE;
}

.logo-text-block {
    display: none;
    flex-direction: column;
    line-height: 1.2;
}

@media (min-width: 480px) {
    .logo-text-block {
        display: flex;
    }
}

.logo-name {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: color .2s;
}

@media (min-width: 1280px) {
    .logo-name {
        font-size: 15.5px;
    }
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: .02em;
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .logo-sub {
        font-size: 10.5px;
    }
}

.nav-logo:hover .logo-name {
    color: var(--blue-deep);
}

/* — Nav Links ———————————————————————————————— */
.nav-links {
    display: none;
    align-items: center;
    gap: 3px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    height: 100%;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 3px;
    }
}

@media (min-width: 1200px) {
    .nav-links {
        gap: 5px;
    }
}

@media (min-width: 1366px) {
    .nav-links {
        gap: 8px;
    }
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border-radius: 9px;
    transition: color .2s, background .2s, box-shadow .2s;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    height: 36px;
}

@media (min-width: 1200px) {
    .nav-link {
        padding: 7px 11px;
        font-size: 13.5px;
        height: 38px;
    }
}

@media (min-width: 1280px) {
    .nav-link {
        font-size: 14px;
    }
}

.nav-link:hover {
    color: var(--blue-deep);
    background: #EFF6FF;
}

.nav-link.active {
    color: var(--blue-deep);
    background: var(--blue-light);
    font-weight: 700;
}

/* Chevron */
.nav-chevron {
    font-size: 9px;
    transition: transform .25s ease;
    opacity: .6;
}

.nav-chevron.rotated {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-chevron--sm {
    font-size: 9px;
    opacity: .45;
}

/* — Nav Dropdown container ——————————————————— */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* — Dropdown Panel ——————————————————————————— */
.dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #ffffff;
    border: 1px solid #DBEAFE;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, .13), 0 2px 8px rgba(15, 23, 42, .05);
    padding: 6px;
    z-index: 200;
    min-width: 220px;
}

.dropdown-panel--right {
    left: auto;
    right: 0;
    min-width: 240px;
}

.dropdown-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* Dropdown items with icon */
.dp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background .15s, color .15s;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.dp-item:hover {
    background: #EFF6FF;
    color: var(--blue-deep);
}

.dp-item--danger {
    color: #DC2626;
}

.dp-item--danger:hover {
    background: #FEF2F2;
    color: #B91C1C;
}

.dp-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--blue-mid);
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.dp-item:hover .dp-icon {
    background: #DBEAFE;
    color: var(--blue-deep);
}

.dp-item--danger .dp-icon {
    background: #FEF2F2;
    color: #EF4444;
}

.dp-item--danger:hover .dp-icon {
    background: #FEE2E2;
}

.dp-label {
    flex: 1;
    white-space: nowrap;
}

.dp-ext {
    font-size: 10px;
    opacity: .5;
    margin-left: 3px;
}

.dp-divider {
    height: 1px;
    background: #E0F2FE;
    margin: 5px 6px;
}

/* User card inside user dropdown */
.dp-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #F0F9FF;
    border-radius: 10px;
    margin-bottom: 2px;
}

.dp-user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.dp-user-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 160px;
}

.dp-user-email {
    font-size: 11px;
    color: var(--ink-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 160px;
}

/* — Right Side ———————————————————————————————— */
.nav-right {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .nav-right {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .nav-right {
        gap: 10px;
    }
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: #E2E8F0;
    margin: 0 4px;
    flex-shrink: 0;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid #CBD5E1;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    background: #ffffff;
    white-space: nowrap;
    height: 36px;
}

@media (min-width: 1280px) {
    .btn-ghost {
        padding: 7px 15px;
        font-size: 13px;
        height: 38px;
    }
}

.btn-ghost:hover {
    color: var(--blue-deep);
    background: #EFF6FF;
    border-color: #93C5FD;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .08);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid var(--blue-mid);
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    height: 36px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .24);
}

@media (min-width: 1280px) {
    .btn-primary {
        padding: 7px 18px;
        font-size: 13px;
        height: 38px;
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-deep), #1E40AF);
    border-color: var(--blue-deep);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .34);
    transform: translateY(-1px);
}

/* — User Trigger ——————————————————————————— */
.user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 12px 5px 5px;
    border-radius: 12px;
    border: 1.5px solid #E0F2FE;
    cursor: pointer;
    background: #ffffff;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
    height: 38px;
}

.user-trigger:hover {
    border-color: #93C5FD;
    background: #F0F9FF;
    box-shadow: 0 2px 10px rgba(14, 165, 233, .12);
}

.user-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-greeting {
    font-size: 9.5px;
    color: var(--ink-muted);
    font-weight: 500;
}

.user-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* — Hamburger ——————————————————————————————— */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--sky-light);
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    color: var(--ink);
    font-size: 20px;
    transition: all .2s;
    flex-shrink: 0;
}

.hamburger:hover {
    border-color: #93C5FD;
    background: #F0F9FF;
    color: var(--blue-deep);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* ═══════════════════════════════════════════
           MOBILE MENU
        ═══════════════════════════════════════════ */

/* Mobile accordion helpers */
.mobile-link--accordion {
    justify-content: space-between;
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.mobile-link--accordion.active {
    color: var(--blue-deep);
    background: #EFF6FF;
}

.mobile-link--danger {
    color: #DC2626 !important;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.mobile-link--danger:hover {
    background: #FEF2F2 !important;
}

.mobile-chevron {
    font-size: 11px;
    transition: transform .25s ease;
}

.mobile-chevron.rotated {
    transform: rotate(180deg);
}

.mobile-sub {
    padding: 4px 0 4px 52px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 2px solid #E0F2FE;
    margin: 2px 0 4px 28px;
}

.mobile-sub-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-muted);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: color .15s, background .15s;
}

.mobile-sub-link:hover {
    color: var(--blue-deep);
    background: #EFF6FF;
}

#mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sky-light);
    box-shadow: 0 12px 40px rgba(15, 23, 42, .12);
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
}

.mobile-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px 24px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-muted);
    text-decoration: none;
    transition: all .2s;
}

.mobile-link:hover {
    background: var(--sand);
    color: var(--ink);
}

.mobile-link i {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.mobile-link .badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    background: var(--gold-light);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 99px;
}

.mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 10px 0;
}

.mobile-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #EFF6FF;
    /* blue-50 */
    border: 1px solid #BFDBFE;
    /* blue-200 */
    border-radius: 14px;
    margin-bottom: 8px;
}

.mobile-avatar {
    width: 42px;
    height: 42px;
    background: var(--blue-deep);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
}

.mobile-user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.mobile-user-email {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 1px;
}

.mobile-auth-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 4px 0;
}

.mobile-btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.mobile-btn-ghost:hover {
    background: var(--sand);
}

.mobile-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--ink);
    text-decoration: none;
    border: 1.5px solid var(--ink);
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.mobile-btn-primary:hover {
    background: var(--ink-soft);
}

/* MAIN */
#main-content {
    padding-top: var(--nav-h);
    min-height: 100vh;
    background: #ffffff;
}

/* FOOTER */
#site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
    position: relative;
    overflow: hidden;
}

#site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-vivid) 0%, #2563EB 40%, transparent 100%);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 32px;
    }
}

.footer-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold-vivid);
}

.footer-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 18px;
    color: var(--white);
    line-height: 1.2;
}

.footer-title em {
    font-style: italic;
    color: var(--gold-vivid);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .45);
    max-width: 320px;
}

.footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(217, 119, 6, .15);
    border: 1px solid rgba(217, 119, 6, .25);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-vivid);
    letter-spacing: .03em;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 16px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-link i {
    font-size: 13px;
    width: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .06);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold-vivid);
    flex-shrink: 0;
    margin-top: 1px;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    transition: all .25s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.social-btn.tw:hover {
    background: #111827;
    border-color: #374151;
    color: #fff;
}

.social-btn.li:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

.social-btn.ig:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    border-color: transparent;
    color: #fff;
}

.social-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

/* Footer schedule block */
.footer-schedule {
    margin-top: 24px;
}

.footer-schedule-text {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin-top: 8px;
}

.footer-schedule-hours {
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, .6);
}

/* ═══════════════════════════════════════════
           UTILITIES
        ═══════════════════════════════════════════ */
.hero-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.card-hover {
    transition: transform .3s ease, box-shadow .3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, .1);
}

/* Page-load animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-inner {
    animation: fadeUp .5s ease both;
}

/* ═══════════════════════════════════════════
   GLOBAL PRINT STYLES
═══════════════════════════════════════════ */
@media print {
    @page {
        size: A4 portrait;
        margin: 6mm 8mm 6mm 8mm;
    }

    html, body {
        background: #ffffff !important;
        color: #0f172a !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    #main-content {
        margin: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        min-height: 0 !important;
        background: #ffffff !important;
    }

    #site-header,
    .nav-inner,
    #site-footer,
    .no-print,
    .hero-section,
    .summary-tables-section,
    nav,
    footer,
    header,
    a.sr-only,
    form {
        display: none !important;
        height: 0 !important;
        max-height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }
}