﻿/* === Mobile Sidebar Styles === */
.mobile-nav-section {
    border-bottom: 1px solid #dee2e6;
}

.mobile-nav-header {
    background: #f8f9fa;
    color: var(--pfx-primary);
    font-weight: 600;
    padding: 1rem;
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sidebar-section {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.mobile-stat-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

    .mobile-stat-item .stat-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--pfx-primary);
    }

    .mobile-stat-item .stat-label {
        font-size: 0.75rem;
        color: var(--pfx-secondary);
        text-transform: uppercase;
    }

.mobile-cta-card {
    background: linear-gradient(135deg, var(--pfx-primary), var(--pfx-accent));
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.mobile-cta-title {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.mobile-cta-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.list-group-item {
    border-left: none;
    border-right: none;
}

    .list-group-item:hover {
        background-color: var(--pfx-light);
        color: var(--pfx-primary);
    }

/* === Mobile Styles === */
@media (max-width: 991.98px) {
    .sidebar-content {
        padding: 1rem;
    }

    .main-content {
        padding: 1.5rem 1rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .cta-card {
        padding: 1.5rem 1rem;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .header-tagline {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .sidebar-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .main-content {
        padding: 1rem 0.75rem;
    }
}
