/* LiamAClark.com - Hockey Player & Official */

:root {
    --navy: #1B2A4A;
    --navy-light: #243656;
    --navy-dark: #111d33;
    --ice-blue: #4A90D9;
    --ice-blue-light: #6BA3E0;
    --ice-blue-pale: #dce8f7;
    --red: #C8102E;
    --red-dark: #A00D24;
    --red-light: #f8d7dd;
    --gold: #D4A843;
    --ice-white: #F0F4F8;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
    --gray-800: #343A40;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    overflow-x: hidden;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes progressFill {
    from { width: 0; }
}

.animate-in { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ========== NAVBAR ========== */
.navbar-main {
    background: var(--navy);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    z-index: 1050;
}
.navbar-main.scrolled {
    padding: 0.5rem 0;
    background: rgba(27, 42, 74, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-brand { font-weight: 700; letter-spacing: 0.5px; font-size: 1.2rem; }
.navbar-brand .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--ice-blue), var(--red));
    border-radius: 8px;
    margin-right: 10px;
    font-size: 0.9rem;
}
.navbar-dark .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.2s;
}
.navbar-dark .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-dark .nav-link:hover { color: #fff !important; }
.navbar-dark .nav-link:hover::after { width: 60%; }
.navbar-dark .nav-link.active { color: #fff !important; }
.navbar-dark .nav-link.active::after { width: 60%; }
.btn-nav-cta {
    background: var(--red);
    color: white !important;
    border-radius: 50px;
    padding: 0.4rem 1.2rem !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--red);
    transition: all 0.3s;
}
.btn-nav-cta:hover { background: transparent; color: var(--red) !important; }
.btn-nav-cta::after { display: none !important; }

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 70%, var(--ice-blue) 100%);
    color: white;
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(74,144,217,0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(200,16,46,0.08) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--ice-white), transparent);
    pointer-events: none;
}
.hero-ice-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}
.hero-section .lead {
    font-size: 1.35rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; }
.hero-buttons { animation: fadeInUp 0.8s ease 0.4s both; }
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 2rem; font-weight: 800; display: block; }
.hero-stat-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    z-index: 2;
}
.hero-scroll-indicator a { color: rgba(255,255,255,0.5); font-size: 1.5rem; }

/* ========== SECTION STYLING ========== */
.section-heading {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    letter-spacing: -0.3px;
}
.section-subheading { color: var(--gray-600); font-size: 1.05rem; max-width: 550px; margin: 0 auto 0.5rem; }
.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--ice-blue), var(--red));
    margin-bottom: 2rem;
    border-radius: 2px;
}

/* ========== DUAL TRACK CARDS ========== */
.track-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}
.track-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
}
.track-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.track-card-player::before { background: linear-gradient(90deg, var(--ice-blue), var(--ice-blue-light)); }
.track-card-official::before { background: linear-gradient(90deg, var(--red), var(--red-dark)); }
.track-card .card-body { padding: 2.5rem 2rem; }
.track-card .track-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}
.track-card:hover .track-icon { transform: scale(1.1) rotate(-5deg); }
.track-card-player .track-icon { background: var(--ice-blue-pale); color: var(--ice-blue); }
.track-card-official .track-icon { background: var(--red-light); color: var(--red); }
.track-card h3 { font-weight: 700; margin-bottom: 1rem; color: var(--navy); }
.track-card p { color: var(--gray-600); line-height: 1.7; }
.track-card .track-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.track-card .track-features li {
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}
.track-card .track-features li i {
    width: 20px;
    margin-right: 8px;
}
.track-card-player .track-features li i { color: var(--ice-blue); }
.track-card-official .track-features li i { color: var(--red); }

/* ========== NEWS CARDS ========== */
.news-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    height: 100%;
    background: white;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.news-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.news-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .card-img-top { transform: scale(1.05); }
.news-card .card-img-overlay-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
}
.news-card .card-img-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--ice-blue) 100%);
    position: relative;
}
.news-card .card-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}
.news-card .card-body { padding: 1.5rem; }
.news-card .card-title { font-weight: 700; font-size: 1.1rem; line-height: 1.4; }
.news-card .card-title a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.news-card .card-title a:hover { color: var(--ice-blue); }
.news-card .card-excerpt { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
.news-card .card-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
}
.news-card .read-time { font-size: 0.8rem; color: var(--gray-600); }
.news-card .read-time i { color: var(--ice-blue); }

/* Category Badges */
.badge-player { background-color: var(--ice-blue); }
.badge-official { background-color: var(--red); }
.badge-general { background-color: var(--gray-600); }
.badge-track {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== TIMELINE ========== */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--ice-blue), var(--red), var(--gold));
    transform: translateX(-50%);
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 18px; height: 18px;
    background: var(--ice-blue);
    border: 3px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(74,144,217,0.2);
    transition: all 0.3s;
}
.timeline-item.official::before { background: var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,0.2); }
.timeline-item.general::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(212,168,67,0.2); }
.timeline-content {
    width: 44%;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--ice-blue);
    transition: all 0.3s;
}
.timeline-content:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-2px); }
.timeline-item.official .timeline-content { border-left-color: var(--red); }
.timeline-item.general .timeline-content { border-left-color: var(--gold); }
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-right: auto; }
.timeline-date {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item::before { left: 20px; }
    .timeline-content { width: calc(100% - 55px) !important; margin-left: 55px !important; }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section { padding: 4rem 0 5rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-stat-number { font-size: 1.5rem; }
    .section-heading { font-size: 1.6rem; }
}

/* ========== DONATION PROGRESS ========== */
.donation-progress .progress {
    height: 28px;
    border-radius: 14px;
    background-color: var(--gray-200);
    overflow: visible;
    position: relative;
}
.donation-progress .progress-bar {
    background: linear-gradient(90deg, var(--ice-blue), var(--ice-blue-light), var(--red));
    background-size: 200% 100%;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    animation: progressFill 1.5s ease, shimmer 3s ease-in-out infinite;
    position: relative;
    overflow: visible;
}
.donation-amount-raised {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.donation-amount-goal { color: var(--gray-600); font-size: 1rem; }

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--ice-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(200,16,46,0.08) 0%, transparent 60%);
}
.btn-support {
    background: var(--red);
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn-support::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-support:hover { background: var(--red-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,16,46,0.3); }
.btn-support:hover::before { left: 100%; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.65);
    padding: 4rem 0 1.5rem;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ice-blue), var(--red), var(--gold));
}
.site-footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.2s; }
.site-footer a:hover { color: white; padding-left: 3px; }
.site-footer h5 { color: white; font-weight: 700; margin-bottom: 1.25rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    font-size: 1.1rem;
}
.footer-social-link:hover { background: var(--ice-blue); color: white; transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* ========== PAGE HEADERS ========== */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(74,144,217,0.1) 0%, transparent 50%);
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--ice-white), transparent);
}
.page-header h1 { font-weight: 800; font-size: 2.5rem; position: relative; z-index: 1; }
.page-header p { position: relative; z-index: 1; }
.page-header .breadcrumb { position: relative; z-index: 1; }

/* ========== SINGLE POST ========== */
.post-header { margin-bottom: 2.5rem; }
.post-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.post-meta {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}
.post-meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.post-body { font-size: 1.1rem; line-height: 1.9; color: var(--gray-800); }
.post-body p { margin-bottom: 1.5rem; }
.post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; }
.post-body h2, .post-body h3 { color: var(--navy); margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.post-body blockquote {
    border-left: 4px solid var(--ice-blue);
    background: var(--ice-white);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--gray-600);
}
.post-featured-image { width: 100%; max-height: 450px; object-fit: cover; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: 2rem 0;
}
.post-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all 0.2s;
    text-decoration: none;
}
.post-share-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ========== ABOUT PAGE ========== */
.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}
.about-photo-placeholder {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice-blue-pale), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-stat {
    text-align: center;
    padding: 1.5rem;
}
.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.about-stat-label {
    color: var(--gray-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}
.about-quote {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    text-align: center;
}
.about-quote::before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -10px; left: 20px;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}
.about-quote p { font-size: 1.2rem; font-style: italic; line-height: 1.8; margin-bottom: 1rem; }

/* ========== SUPPORT PAGE ========== */
.impact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}
.impact-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.impact-card .impact-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.impact-card h5 { font-weight: 700; color: var(--navy); }
.impact-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
.donor-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.2s;
}
.donor-card:hover { background: var(--gray-100); }
.donor-avatar {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-item .accordion-button {
    font-weight: 600;
    color: var(--navy);
    background: white;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--ice-blue); background: var(--gray-100); }

/* ========== CONTACT PAGE ========== */
.contact-info-card {
    background: var(--navy);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}
.contact-info-card h3 { font-weight: 700; margin-bottom: 1.5rem; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-form-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form-card .form-control {
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}
.contact-form-card .form-control:focus {
    border-color: var(--ice-blue);
    box-shadow: 0 0 0 3px rgba(74,144,217,0.15);
}

/* ========== SIDEBAR ========== */
.sidebar-card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.sidebar-card .card-header {
    background: white;
    border-bottom: 2px solid var(--ice-white);
    font-weight: 700;
    color: var(--navy);
    padding: 1rem 1.25rem;
}
.sidebar-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-category-link:last-child { border-bottom: none; }
.sidebar-category-link:hover { color: var(--ice-blue); padding-left: 5px; }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--ice-blue); transform: translateY(-3px); }

/* ========== ADMIN ========== */
.admin-sidebar {
    background: var(--navy-dark);
    min-height: 100vh;
    padding-top: 0;
    width: 260px;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    overflow-y: auto;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.65);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    margin: 1px 0.75rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.admin-sidebar .nav-link i { width: 20px; text-align: center; margin-right: 10px; font-size: 0.85rem; }
.admin-sidebar .nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.admin-sidebar .nav-link.active { color: white; background: var(--ice-blue); font-weight: 600; }
.admin-sidebar .sidebar-brand {
    color: white;
    font-weight: 700;
    padding: 1.25rem 1.25rem 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-sidebar .sidebar-section {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    padding: 1rem 1.25rem 0.3rem;
}
.admin-content { margin-left: 260px; padding: 1.5rem 2rem; min-height: 100vh; background: var(--ice-white); }

/* Top bar */
.admin-topbar {
    background: white;
    margin: -1.5rem -2rem 1.5rem;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-topbar .breadcrumb { margin: 0; font-size: 0.9rem; }
.admin-topbar .breadcrumb-item a { color: var(--gray-600); text-decoration: none; }
.admin-topbar .breadcrumb-item.active { color: var(--navy); font-weight: 600; }

/* Stat Cards */
.stat-card {
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); color: white; }
.stat-card .stat-icon { font-size: 2rem; opacity: 0.4; }
.stat-card .stat-number { font-size: 2rem; font-weight: 800; }
.stat-card .stat-label { opacity: 0.85; font-size: 0.85rem; }
.stat-card-blue { background: linear-gradient(135deg, var(--ice-blue), #357ABD); }
.stat-card-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.stat-card-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.stat-card-green { background: linear-gradient(135deg, #28a745, #1e7e34); }

/* Admin Cards */
.admin-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}
.admin-card .card-header {
    background: white;
    border-bottom: 2px solid var(--ice-white);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    padding: 1rem 1.25rem;
}

/* Activity Feed */
.activity-item {
    display: flex;
    gap: 12px;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.activity-item:last-child { border-bottom: none; }
.activity-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}
.activity-icon.created { background: #d4edda; color: #155724; }
.activity-icon.updated { background: #cce5ff; color: #004085; }
.activity-icon.deleted { background: #f8d7da; color: #721c24; }
.activity-icon.login { background: #d1ecf1; color: #0c5460; }
.activity-icon.settings_changed { background: #fff3cd; color: #856404; }
.activity-text { font-size: 0.85rem; color: var(--gray-800); }
.activity-time { font-size: 0.75rem; color: var(--gray-600); }

/* Toast Container */
.toast-container-admin {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}

/* Message inbox */
.msg-unread { font-weight: 600; background: rgba(74,144,217,0.04); }

/* Media Grid */
.media-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.media-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.2s;
}
.media-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Quick Actions */
.quick-action-btn {
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Responsive Admin */
@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
    }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .admin-topbar { margin: -1.5rem -1rem 1rem; padding: 0.75rem 1rem; }
    .stat-card .stat-number { font-size: 1.5rem; }
}
