/* ===== RESET & BASE ===== */
/* ===== FOOTER READABILITY FIX ===== */
.footer .text-gray-300,
.footer .text-gray-400,
.footer .text-gray-500 { color: #e5e7eb !important; }
.footer .text-gray-500 { color: #d1d5db !important; }
.footer h3,
.footer h4 { color: #ffffff !important; }

/* ===== CACHE BUSTING ===== */
/* Version: 2.0 - Burgundy & Gold Theme */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #111827;
    background: #ffffff;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITIES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* ===== GRID SYSTEM ===== */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:col-span-3 { grid-column: span 3 / span 3; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\:gap-16 { gap: 4rem; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:max-w-4xl { max-width: 56rem; }
}

/* ===== SPACING ===== */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-13 { padding-left: 3.25rem; }
.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

/* ===== TYPOGRAPHY ===== */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.tracking-wide { letter-spacing: 0.025em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== COLORS ===== */
.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-slate-900 { color: #5c1212; }
.text-amber-400 { color: #e6c35c; }
.text-amber-500 { color: #d4af37; }
.text-amber-600 { color: #d4af37; }
.text-amber-700 { color: #b8960b; }
.text-amber-800 { color: #8a6d0b; }
.text-amber-100 { color: #faf3d7; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-green-900 { color: #14532d; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-slate-900 { background-color: #5c1212; }
.bg-slate-800 { background-color: #3d0c0c; }
.bg-amber-50 { background-color: #fdf8e8; }
.bg-amber-100 { background-color: #faf3d7; }
.bg-amber-600 { background-color: #d4af37; }
.bg-amber-700 { background-color: #b8960b; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-blue-50 { background-color: #eff6ff; }

/* ===== BORDERS ===== */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-800 { border-color: #1f2937; }
.border-amber-200 { border-color: #e6c35c; }
.border-amber-500 { border-color: #d4af37; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.border-red-500 { border-color: #ef4444; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ===== SHADOWS ===== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* ===== WIDTH / HEIGHT ===== */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

/* ===== POSITION ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.-top-4 { top: -1rem; }
.-left-2 { left: -0.5rem; }
.-left-3\.5 { left: -0.875rem; }
.-bottom-6 { bottom: -1.5rem; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ===== OPACITY / TRANSITIONS ===== */
.opacity-95 { opacity: 0.95; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* ===== FORMS ===== */
input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: inherit;
    background: #ffffff;
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}
input[type="checkbox"], input[type="radio"] {
    width: auto;
    padding: 0;
}
textarea { resize: vertical; min-height: 100px; }
label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.5rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #d4af37;
    color: #ffffff;
}
.btn-primary:hover { background: #b8960b; }
.btn-secondary {
    background: #5c1212;
    color: #ffffff;
}
.btn-secondary:hover { background: #3d0c0c; }
.btn-outline {
    background: transparent;
    color: #5c1212;
    border: 2px solid #5c1212;
}
.btn-outline:hover { background: #5c1212; color: #ffffff; }
.btn-white {
    background: #ffffff;
    color: #d4af37;
}
.btn-white:hover { background: #f3f4f6; }
.btn-green {
    background: #16a34a;
    color: #ffffff;
}
.btn-green:hover { background: #15803d; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.375rem 0.875rem; font-size: 0.875rem; }

/* ===== CARDS ===== */
.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}
.card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.navbar-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: #374151;
    font-weight: 500;
    transition: color 0.15s;
}
.nav-links a:hover { color: #d4af37; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.mobile-menu-btn { display: flex; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #374151;
    border-radius: 0.25rem;
}
.mobile-menu a:hover { background: #f9fafb; }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: #5c1212;
    color: #ffffff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #5c1212, #3d0c0c, #5c1212);
    opacity: 0.95;
}
.hero-inner {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 6rem 1rem;
}
@media (min-width: 1024px) { .hero-inner { padding: 8rem 2rem; } }

/* ===== FOOTER ===== */
.footer {
    background: #5c1212;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}
.footer a { color: #d1d5db; transition: color 0.15s; }
.footer a:hover { color: #e6c35c; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== STICKY MOBAR ===== */
.sticky-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 0.75rem;
    gap: 0.5rem;
    z-index: 50;
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}
@media (min-width: 768px) { .sticky-mobile-bar { display: none; } }

/* ===== PROSE / CONTENT ===== */
.prose h1 { font-size: 1.875rem; font-weight: 700; color: #5c1212; margin-bottom: 1rem; margin-top: 2rem; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: #5c1212; margin-bottom: 0.75rem; margin-top: 1.5rem; }
.prose h3 { font-size: 1.25rem; font-weight: 700; color: #5c1212; margin-bottom: 0.5rem; margin-top: 1.25rem; }
.prose p { margin-bottom: 1rem; color: #374151; line-height: 1.625; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: #374151; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; color: #374151; }
.prose a { color: #d4af37; text-decoration: underline; }
.prose a:hover { color: #b8960b; }
.prose strong { font-weight: 600; color: #5c1212; }
.prose blockquote { border-left: 4px solid #d4af37; padding-left: 1rem; font-style: italic; color: #4b5563; margin: 1rem 0; }

/* ===== ADMIN LAYOUT ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f3f4f6;
}
.admin-sidebar {
    width: 16rem;
    background: #5c1212;
    color: #ffffff;
    flex-shrink: 0;
    display: none;
}
@media (min-width: 1024px) { .admin-sidebar { display: block; } }
.admin-sidebar-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 1.5rem;
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: #3d0c0c;
    color: #ffffff;
}
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.admin-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}
@media (min-width: 768px) { .admin-content { padding: 2rem; } }

/* ===== TABLES ===== */
.table-container { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead { background: #f9fafb; border-bottom: 1px solid #e5e7eb; }
th { text-align: left; padding: 0.75rem 1rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: #6b7280; letter-spacing: 0.05em; }
td { padding: 0.75rem 1rem; border-bottom: 1px solid #e5e7eb; color: #374151; }
tbody tr:hover { background: #f9fafb; }

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-amber { background: #faf3d7; color: #8a6d0b; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-gray { background: #f3f4f6; color: #374151; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 0.25rem; margin-top: 2rem; }
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    min-width: 2.5rem;
}
.pagination a { color: #374151; background: #ffffff; }
.pagination a:hover { background: #f9fafb; }
.pagination span { color: #6b7280; background: #f9fafb; cursor: default; }
.pagination .active { background: #fdf8e8; color: #d4af37; border-color: #d4af37; }

/* ===== ALERTS ===== */
.alert { border-radius: 0.5rem; border: 1px solid; padding: 1rem; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-warning { background: #fefce8; border-color: #e6c35c; color: #854d0e; }
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}
.login-box {
    width: 100%;
    max-width: 28rem;
    padding: 1.5rem;
}
.login-card {
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item { border: 1px solid #e5e7eb; border-radius: 0.5rem; overflow: hidden; margin-bottom: 0.75rem; }
.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #5c1212;
    cursor: pointer;
    text-align: left;
}
.accordion-header:hover { background: #f9fafb; }
.accordion-body { padding: 0 1.5rem 1rem; color: #374151; line-height: 1.625; display: none; }
.accordion-item.active .accordion-body { display: block; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-icon { transition: transform 0.2s; width: 1.25rem; height: 1.25rem; color: #9ca3af; flex-shrink: 0; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 1.5rem; border-left: 4px solid #d4af37; }
.timeline-item { position: relative; padding-left: 2rem; padding-bottom: 3rem; }
.timeline-dot {
    position: absolute;
    left: -0.875rem;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: #d4af37;
    border-radius: 50%;
    border: 4px solid #ffffff;
}

/* ===== MISC ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
[x-cloak] { display: none !important; }
/* Admin sidebar mobile behavior */
@media (max-width: 1023px) {
    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        z-index: 60;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block !important;
    }
    .admin-sidebar.active {
        transform: translateX(0);
    }
}

/* Overlay when sidebar is open on mobile */
@media (max-width: 1023px) {
    .admin-sidebar.active::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
}