/*
Theme Name: UMKM Coaching Theme
Theme URI: https://example.com
Author: Kamu
Author URI: https://example.com
Description: Custom theme untuk landing page pelatihan UMKM
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: umkm-coaching
*/
/* Enhanced CSS with Rich Features */
:root {
    --tokped-primary: #03AC0E;
    --tokped-primary-dark: #02910C;
    --tokped-secondary: #42B883;
    --tokped-accent: #FF6B35;
    --tokped-success: #07B53B;
    --tokped-warning: #FFC107;
    --tokped-danger: #E53E3E;
    --tokped-info: #3182CE;
    --tokped-purple: #8B5CF6;
    --tokped-pink: #EC4899;
    
    --tokped-gray-50: #F7FAFC;
    --tokped-gray-100: #EDF2F7;
    --tokped-gray-200: #E2E8F0;
    --tokped-gray-300: #CBD5E0;
    --tokped-gray-400: #A0AEC0;
    --tokped-gray-500: #718096;
    --tokped-gray-600: #4A5568;
    --tokped-gray-700: #2D3748;
    --tokped-gray-800: #1A202C;
    --tokped-gray-900: #171923;
    
    --gradient-primary: linear-gradient(135deg, var(--tokped-primary), var(--tokped-secondary));
    --gradient-info: linear-gradient(135deg, var(--tokped-info), var(--tokped-purple));
    --gradient-warning: linear-gradient(135deg, var(--tokped-warning), var(--tokped-accent));
    --gradient-success: linear-gradient(135deg, var(--tokped-success), var(--tokped-primary));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--tokped-gray-50);
    color: var(--tokped-gray-800);
    line-height: 1.6;
}

/* Mobile-optimized body */
body.mobile-optimized {
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    -webkit-tap-highlight-color: rgba(3, 172, 14, 0.1); /* Custom tap highlight */
    touch-action: manipulation; /* Improve touch responsiveness */
}

/* Disable zoom on form inputs for mobile */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* Loading & Skeleton Animations */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--tokped-gray-200);
    border-top: 4px solid var(--tokped-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 20px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-card {
    height: 120px;
    margin-bottom: 16px;
    border-radius: 12px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .super-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .super-header {
        padding: 20px 16px;
    }
    
    .super-user-info h2 {
        font-size: 20px;
    }
    
    .super-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .super-level-progress {
        width: 150px;
    }
    
    .notification-dropdown {
        width: 300px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .super-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

/* PWA & Real-time Features */
.update-indicator {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--tokped-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transform: translateX(300px);
    transition: transform 0.3s ease;
    z-index: 1002;
    box-shadow: 0 4px 20px rgba(3, 172, 14, 0.3);
}

.update-indicator.show {
    transform: translateX(0);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Online Status Indicator */
.connection-status {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1000;
    transition: all 0.3s ease;
}

.connection-status.online {
    background: var(--tokped-success);
    color: white;
}

.connection-status.offline {
    background: var(--tokped-danger);
    color: white;
}

/* Enhanced Header with Mobile Optimization */
.super-header {
display: none !important;
}

/* Mobile-first header adjustments */
@media (max-width: 768px) {
    .super-header {
        display: none !important;
    }
}

.super-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
}

.super-user-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.super-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border: 3px solid rgba(255,255,255,0.3);
    position: relative;
}

.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #4ADE80;
    border-radius: 50%;
    border: 2px solid white;
}

.super-user-info h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.super-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.super-level-progress {
    width: 200px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.super-level-fill {
    height: 100%;
    background: rgba(255,255,255,0.8);
    border-radius: 3px;
    transition: width 1s ease;
}

.super-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.super-stat-card {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.super-stat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.super-stat-number {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.super-stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Notification System */
.super-notifications {
    position: relative;
}

.notification-bell {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.notification-bell:hover {
    background: rgba(255,255,255,0.3);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--tokped-danger);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: 10px;
    display: none;
    z-index: 1001;
}

.notification-dropdown.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.notification-header {
    padding: 20px;
    border-bottom: 1px solid var(--tokped-gray-200);
    font-weight: 600;
    color: var(--tokped-gray-800);
}

.notification-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--tokped-gray-100);
    display: flex;
    gap: 12px;
    transition: background 0.2s ease;
}

.notification-item:hover {
    background: var(--tokped-gray-50);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.notification-text {
    font-size: 14px;
    color: var(--tokped-gray-600);
    margin-bottom: 4px;
}

.notification-time {
    font-size: 12px;
    color: var(--tokped-gray-500);
}

/* Enhanced Tabs */
.super-tabs-container {
    background: white;
    border-bottom: 1px solid var(--tokped-gray-200);
    top: 110px;
    z-index: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 7 Langkah Mentoring UKM Styles */
.mentoring-step-card {
    background: white;
    border: 2px solid var(--tokped-gray-200);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mentoring-step-card:hover {
    border-color: var(--tokped-primary);
    box-shadow: 0 8px 25px rgba(3, 172, 14, 0.15);
    transform: translateY(-2px);
}

.mentoring-step-card.graduation {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
    border-color: #FFD700;
}

.step-header {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    font-size: 24px;
    font-weight: bold;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.step-content {
    padding: 20px;
}

.step-description {
    color: var(--tokped-gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.step-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--tokped-gray-50);
    border-radius: 8px;
    font-size: 14px;
    color: var(--tokped-gray-700);
}

.step-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-decoration: none;
}

.step-action-btn.primary {
    background: var(--tokped-primary);
    color: white;
}

.step-action-btn.primary:hover {
    background: var(--tokped-primary-dark);
    transform: translateY(-1px);
}

.step-action-btn.secondary {
    background: var(--tokped-info);
    color: white;
}

.step-action-btn.info {
    background: var(--tokped-purple);
    color: white;
}

.step-action-btn.warning {
    background: var(--tokped-warning);
    color: var(--tokped-gray-800);
}

.step-action-btn.success {
    background: var(--tokped-success);
    color: white;
}

.step-action-btn.graduation-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--tokped-gray-800);
    font-weight: 700;
}

.step-action-btn.disabled {
    background: var(--tokped-gray-300);
    color: var(--tokped-gray-500);
    cursor: not-allowed;
}

/* Mentoring Stats */
.mentoring-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--tokped-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--tokped-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Task Progress */
.task-progress {
    margin-bottom: 16px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: var(--tokped-gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--tokped-gray-300);
}

.task-item.completed {
    background: rgba(7, 181, 59, 0.1);
    border-left-color: var(--tokped-success);
}

.task-item.in-progress {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: var(--tokped-warning);
}

.task-item.pending {
    background: var(--tokped-gray-50);
    border-left-color: var(--tokped-gray-300);
}

.task-icon {
    font-size: 18px;
}

.task-text {
    flex: 1;
    font-size: 14px;
    color: var(--tokped-gray-700);
}

/* Progress Overview New */
.progress-overview-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.progress-circle {
    text-align: center;
}

.circle-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--tokped-primary) 75%, var(--tokped-gray-200) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.progress-text {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--tokped-primary);
}

.progress-label {
    font-size: 12px;
    color: var(--tokped-gray-100);
}

.progress-stats {
    flex: 1;
}

.progress-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--tokped-gray-700);
}

.stat-icon {
    font-size: 16px;
}

/* Graduation Requirements */
.graduation-requirements {
    margin-bottom: 16px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
}

.requirement-item.completed .req-text {
    color: var(--tokped-success);
    font-weight: 600;
}

.req-icon {
    font-size: 16px;
}

.req-text {
    color: var(--tokped-gray-700);
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: none;
    border-radius: 12px;
    background: var(--tokped-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 172, 14, 0.3);
}

.quick-action-btn.secondary {
    background: var(--tokped-info);
}

.quick-action-btn.success {
    background: var(--tokped-success);
}

.quick-action-btn.info {
    background: var(--tokped-purple);
}

.quick-action-icon {
    font-size: 20px;
}

/* Daily Tip */
.daily-tip {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(3, 172, 14, 0.05), rgba(66, 184, 131, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--tokped-primary);
    margin-bottom: 20px;
}

.tip-icon {
    font-size: 24px;
}

.tip-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.tip-content p {
    font-size: 12px;
    color: var(--tokped-gray-600);
    line-height: 1.4;
}

/* Weekly Progress */
.weekly-progress {
    margin-bottom: 20px;
}

/* Community Stats */
.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.community-item {
    text-align: center;
    padding: 12px 8px;
    background: var(--tokped-gray-50);
    border-radius: 8px;
}

.community-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--tokped-primary);
    margin-bottom: 4px;
}

.community-label {
    font-size: 10px;
    color: var(--tokped-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.community-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--tokped-primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background: var(--tokped-primary-dark);
    transform: translateY(-1px);
}

/* Tips Grid untuk Analytics */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.tip-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 1px solid var(--tokped-gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--tokped-primary);
    box-shadow: 0 4px 15px rgba(3, 172, 14, 0.1);
}

.tip-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 8px;
}

.tip-content p {
    font-size: 14px;
    color: var(--tokped-gray-600);
    line-height: 1.5;
}

/* Achievement Styles Baru */
.achievements-section {
    margin-bottom: 32px;
}

.achievement-progress {
    margin-top: 8px;
}

.achievement-reward {
    font-size: 12px;
    color: var(--tokped-success);
    font-weight: 600;
    margin-top: 8px;
}

.achievement-cta {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(3, 172, 14, 0.05), rgba(66, 184, 131, 0.05));
    border-radius: 16px;
    border: 2px dashed var(--tokped-primary);
}

.achievement-cta h4 {
    margin-bottom: 12px;
    color: var(--tokped-gray-800);
}

.achievement-cta p {
    color: var(--tokped-gray-600);
    margin-bottom: 16px;
}

.achievement-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: var(--tokped-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.achievement-btn:hover {
    background: var(--tokped-primary-dark);
    transform: translateY(-1px);
}

/* Programs Section Styles */
.programs-section {
    margin-bottom: 32px;
}

.recommendation-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--tokped-danger);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.recommendation-card.featured {
    border: 2px solid var(--tokped-primary);
    position: relative;
}

.recommendation-features {
    margin: 12px 0;
}

.feature-item {
    font-size: 14px;
    color: var(--tokped-gray-700);
    margin-bottom: 6px;
}

.recommendation-btn.primary {
    background: var(--tokped-primary);
    color: white;
}

.recommendation-btn.secondary {
    background: var(--tokped-info);
    color: white;
}

/* Level Programs */
.level-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.level-card {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--tokped-gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.level-card:hover {
    border-color: var(--tokped-primary);
    box-shadow: 0 8px 25px rgba(3, 172, 14, 0.15);
}

.level-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--tokped-gray-50);
}

.level-icon {
    font-size: 24px;
}

.level-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
}

.level-programs-list {
    padding: 16px;
}

.program-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--tokped-gray-100);
}

.program-item:last-child {
    border-bottom: none;
}

.program-icon {
    margin-right: 8px;
}

.program-name {
    flex: 1;
    font-size: 14px;
    color: var(--tokped-gray-700);
}

.program-price {
    font-weight: 600;
    color: var(--tokped-primary);
    font-size: 14px;
}

.level-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--tokped-primary);
    color: white;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.level-btn:hover {
    background: var(--tokped-primary-dark);
}

/* Free Programs */
.free-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.free-program-card {
    background: white;
    border: 2px solid var(--tokped-success);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    text-align: center;
}

.free-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tokped-success);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
}

.free-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.free-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tokped-gray-800);
}

.free-content p {
    font-size: 14px;
    color: var(--tokped-gray-600);
    margin-bottom: 8px;
}

.free-schedule {
    font-size: 12px;
    color: var(--tokped-success);
    font-weight: 600;
    margin-bottom: 12px;
}

.free-btn {
    padding: 8px 16px;
    border: 2px solid var(--tokped-success);
    background: transparent;
    color: var(--tokped-success);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.free-btn:hover {
    background: var(--tokped-success);
    color: white;
}

.programs-cta {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 16px;
    border: 2px dashed var(--tokped-purple);
}

.programs-cta h4 {
    margin-bottom: 12px;
    color: var(--tokped-gray-800);
}

.programs-cta p {
    color: var(--tokped-gray-600);
    margin-bottom: 16px;
}

.cta-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: var(--tokped-purple);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #7C3AED;
    transform: translateY(-1px);
}

/* Calendar Styles */
.calendar-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.calendar-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: var(--tokped-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(3, 172, 14, 0.3);
}

.calendar-action-btn.secondary {
    background: var(--tokped-info);
}

.calendar-action-btn.success {
    background: var(--tokped-success);
}

.upcoming-schedule {
    margin-bottom: 24px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--tokped-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.schedule-item.webinar {
    border-left-color: var(--tokped-info);
}

.schedule-item.workshop {
    border-left-color: var(--tokped-warning);
}

.schedule-date {
    text-align: center;
    min-width: 60px;
}

.date-day {
    font-size: 24px;
    font-weight: 700;
    color: var(--tokped-primary);
}

.date-month {
    font-size: 12px;
    color: var(--tokped-gray-600);
    text-transform: uppercase;
}

.schedule-content {
    flex: 1;
}

.schedule-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.schedule-mentor, .schedule-time, .schedule-type {
    font-size: 14px;
    color: var(--tokped-gray-600);
    margin-bottom: 2px;
}

.schedule-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-btn.join {
    background: var(--tokped-primary);
    color: white;
}

.schedule-btn.reschedule, .schedule-btn.reminder, .schedule-btn.location {
    background: var(--tokped-gray-200);
    color: var(--tokped-gray-700);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--tokped-gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day-header {
    background: var(--tokped-gray-100);
    padding: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--tokped-gray-600);
}

.calendar-day {
    background: white;
    padding: 8px;
    text-align: center;
    min-height: 40px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calendar-day:hover {
    background: var(--tokped-gray-50);
}

.calendar-day.has-event {
    background: rgba(3, 172, 14, 0.1);
    color: var(--tokped-primary);
    font-weight: 600;
}

.history-section {
    margin-bottom: 24px;
}

.time-management-tips h4 {
    margin-bottom: 16px;
    color: var(--tokped-gray-800);
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid var(--tokped-primary);
}

.tip-text {
    font-size: 14px;
    color: var(--tokped-gray-700);
}

/* Community Styles */
.community-overview {
    margin-bottom: 24px;
}

.community-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.community-stat {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--tokped-gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.community-stat:hover {
    border-color: var(--tokped-primary);
}

.community-stat-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    opacity: 0.3;
}

.community-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.community-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: var(--tokped-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.community-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(3, 172, 14, 0.3);
}

.community-action-btn.secondary {
    background: var(--tokped-info);
}

.community-action-btn.success {
    background: var(--tokped-success);
}

.community-action-btn.info {
    background: var(--tokped-purple);
}

.trending-topics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--tokped-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.topic-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.topic-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.topic-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--tokped-gray-500);
}

.topic-category {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.topic-category.marketplace {
    background: rgba(255, 107, 53, 0.1);
    color: var(--tokped-accent);
}

.topic-category.finance {
    background: rgba(255, 193, 7, 0.1);
    color: var(--tokped-warning);
}

.topic-category.marketing {
    background: rgba(139, 92, 246, 0.1);
    color: var(--tokped-purple);
}

/* Success Stories */
.success-stories {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--tokped-gray-200);
}

.story-avatar {
    font-size: 32px;
    flex-shrink: 0;
}

.story-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.story-author {
    font-size: 14px;
    color: var(--tokped-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.story-excerpt {
    font-size: 14px;
    color: var(--tokped-gray-600);
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
}

.story-engagement {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--tokped-gray-500);
}

/* Mentorship Styles */
.mentorship-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mentorship-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--tokped-gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.mentorship-card:hover {
    border-color: var(--tokped-primary);
    box-shadow: 0 8px 25px rgba(3, 172, 14, 0.15);
}

.mentorship-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.mentorship-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tokped-gray-800);
}

.mentorship-content p {
    color: var(--tokped-gray-600);
    margin-bottom: 16px;
}

.mentorship-content ul {
    text-align: left;
    margin-bottom: 20px;
}

.mentorship-content li {
    font-size: 14px;
    color: var(--tokped-gray-700);
    margin-bottom: 4px;
}

.mentorship-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mentorship-btn.mentor-btn {
    background: var(--tokped-primary);
    color: white;
}

.mentorship-btn.mentee-btn {
    background: var(--tokped-info);
    color: white;
}

.community-guidelines h4 {
    margin-bottom: 16px;
    color: var(--tokped-gray-800);
}

.guidelines-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--tokped-primary);
}

.guideline-text {
    font-size: 14px;
    color: var(--tokped-gray-700);
}

/* Mentoring Tab Styles */
.mentor-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--tokped-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.mentor-experience {
    font-size: 12px;
    color: var(--tokped-gray-500);
    margin-bottom: 8px;
}

.mentor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.specialty {
    padding: 2px 6px;
    background: var(--tokped-gray-100);
    border-radius: 8px;
    font-size: 10px;
    color: var(--tokped-gray-600);
}

.session-agenda {
    font-size: 14px;
    color: var(--tokped-gray-600);
    margin-bottom: 2px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.package-card {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--tokped-gray-200);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--tokped-primary);
    box-shadow: 0 8px 25px rgba(3, 172, 14, 0.15);
}

.package-card.popular {
    border-color: var(--tokped-primary);
    transform: scale(1.05);
}

.package-header {
    padding: 20px;
    text-align: center;
    background: var(--tokped-gray-50);
}

.package-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 8px;
}

.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--tokped-primary);
    margin-bottom: 4px;
}

.package-duration {
    font-size: 14px;
    color: var(--tokped-gray-600);
}

.package-features {
    padding: 20px;
}

.package-feature {
    font-size: 14px;
    color: var(--tokped-gray-700);
    margin-bottom: 8px;
}

.package-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--tokped-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: var(--tokped-primary-dark);
}

.package-btn.popular {
    background: var(--gradient-primary);
}

.history-notes {
    font-size: 12px;
    color: var(--tokped-gray-500);
    margin-top: 4px;
}

.mentoring-tips {
    margin-top: 24px;
}

.mentoring-tips h4 {
    margin-bottom: 16px;
    color: var(--tokped-gray-800);
}

/* Mobile Responsive untuk 7 Langkah */
@media (max-width: 768px) {
    .step-items {
        grid-template-columns: 1fr;
    }
    
    .mentoring-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .progress-overview-new {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-subtitle {
        font-size: 12px;
    }
    
    .calendar-actions {
        flex-direction: column;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .schedule-actions {
        flex-direction: row;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile tab navigation */
@media (max-width: 768px) {
    .super-tabs-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        background: white;
        border-top: 1px solid var(--tokped-gray-200);
        border-bottom: none;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 1001;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
}

.super-tabs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Mobile tabs optimization */
@media (max-width: 768px) {
    .super-tabs {
        padding: 0 10px;
        justify-content: space-between;
        max-width: 100%;
    }
}

.super-tabs::-webkit-scrollbar {
    display: none;
}

.super-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: none;
    background: none;
    color: var(--tokped-gray-600);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

/* Mobile tab buttons - native mobile experience */
@media (max-width: 768px) {
    .super-tab-btn {
        flex-direction: column;
        gap: 4px;
        padding: 12px 8px;
        min-width: unset;
        flex: 1;
        font-size: 0.75rem;
        font-weight: 600;
        min-height: 60px; /* Touch-friendly height */
    }
    
    .super-tab-btn span:last-child {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

.super-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.super-tab-btn:hover {
    color: var(--tokped-primary);
    background: rgba(3, 172, 14, 0.05);
}

.super-tab-btn.active {
    color: var(--tokped-primary);
    font-weight: 600;
}

.super-tab-btn.active::after {
    width: 100%;
}

.super-tab-icon {
    font-size: 20px;
}

/* Mobile icon adjustments */
@media (max-width: 768px) {
    .super-tab-icon {
        font-size: 18px;
    }
    
    .super-tab-btn::after {
        height: 2px;
        bottom: 2px;
    }
}

/* Main Container */
.super-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px;
}

/* Mobile container optimization */
@media (max-width: 768px) {
    .super-container {
        padding: 16px 12px 80px 12px; /* Bottom padding for bottom navigation */
        margin-bottom: env(safe-area-inset-bottom, 0);
    }
}

.super-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.super-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Grid Layout */
.super-dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Mobile dashboard grid - single column */
@media (max-width: 768px) {
    .super-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }
}

/* Analytics Section */
.super-analytics-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

/* Mobile analytics section */
@media (max-width: 768px) {
    .super-analytics-section {
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
}

.super-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--tokped-gray-800);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile section title */
@media (max-width: 768px) {
    .super-section-title {
        font-size: 18px;
        margin-bottom: 16px;
        gap: 8px;
    }
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* Mobile analytics grid */
@media (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.analytics-card {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile analytics cards */
@media (max-width: 768px) {
    .analytics-card {
        padding: 16px 12px;
        border-radius: 10px;
        min-height: 80px; /* Touch-friendly height */
    }
}

.analytics-card::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.6s;
}

.analytics-card:hover::before {
    left: 100%;
}

.analytics-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.analytics-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.analytics-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Charts Container */
.charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.chart-card {
    background: var(--tokped-gray-50);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.chart-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gradient-info);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    margin-bottom: 12px;
}

/* Achievement System */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.achievement-card {
    background: white;
    border: 2px solid var(--tokped-gray-200);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card.earned {
    border-color: var(--tokped-primary);
    background: linear-gradient(135deg, rgba(3, 172, 14, 0.05), rgba(66, 184, 131, 0.05));
}

.achievement-card.earned::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(3, 172, 14, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.achievement-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 8px;
}

.achievement-description {
    font-size: 14px;
    color: var(--tokped-gray-600);
}

.achievement-card:not(.earned) {
    opacity: 0.6;
    filter: grayscale(1);
}

/* Activity Timeline */
.activity-timeline {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--tokped-gray-100);
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-item:not(:last-child) .timeline-icon::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 60px;
    background: var(--tokped-gray-200);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.timeline-time {
    font-size: 12px;
    color: var(--tokped-gray-500);
}

/* Recommendations Engine */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.recommendation-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.recommendation-image {
    width: 100%;
    height: 150px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.recommendation-content {
    padding: 20px;
}

.recommendation-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 8px;
}

.recommendation-reason {
    font-size: 12px;
    color: var(--tokped-primary);
    background: rgba(3, 172, 14, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.recommendation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.recommendation-price {
    font-weight: 700;
    color: var(--tokped-primary);
    font-size: 18px;
}

.recommendation-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--tokped-gray-600);
}

.recommendation-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recommendation-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(3, 172, 14, 0.3);
}

/* Calendar Widget */
.calendar-widget {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.calendar-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--tokped-gray-600);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.calendar-nav:hover {
    background: var(--tokped-gray-100);
}

.calendar-month {
    font-weight: 600;
    color: var(--tokped-gray-800);
}

.event-list {
    max-height: 300px;
    overflow-y: auto;
}

.event-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--tokped-gray-100);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    font-size: 12px;
    font-weight: 600;
}

.event-content {
    flex: 1;
}

.event-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
    margin-bottom: 4px;
}

.event-type {
    font-size: 12px;
    color: var(--tokped-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Community Section */
.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.community-stat {
    text-align: center;
    padding: 16px;
    background: var(--tokped-gray-50);
    border-radius: 12px;
}

.community-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--tokped-primary);
    margin-bottom: 4px;
}

.community-stat-label {
    font-size: 12px;
    color: var(--tokped-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .super-dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .super-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .charts-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .super-header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .super-user-section {
        flex-direction: column;
        gap: 12px;
    }
    
    .super-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .super-container {
        padding: 16px;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
}

/* Loading and Skeleton States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mentoring Styles */
.mentoring-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mentoring-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mentoring-section h4 {
    color: var(--tokped-gray-800);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mentor-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-avatar {
    font-size: 3rem;
    text-align: center;
}

.mentor-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--tokped-gray-800);
}

.mentor-expertise {
    color: var(--tokped-gray-600);
    font-size: 0.9rem;
}

.mentor-rating {
    color: var(--tokped-warning);
    font-size: 0.9rem;
}

.mentor-price {
    font-weight: 600;
    color: var(--tokped-primary);
}

.mentor-book-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mentor-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 172, 14, 0.3);
}

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.session-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.session-date {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    padding: 10px;
    min-width: 60px;
}

.session-day {
    font-size: 1.5rem;
    font-weight: 700;
}

.session-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.session-info {
    flex: 1;
}

.session-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
}

.session-mentor {
    color: var(--tokped-gray-600);
    font-size: 0.9rem;
}

.session-time {
    color: var(--tokped-primary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.session-actions {
    display: flex;
    gap: 10px;
}

.session-btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-btn.primary {
    background: var(--tokped-primary);
    color: white;
}

.session-btn.secondary {
    background: transparent;
    color: var(--tokped-gray-600);
    border: 1px solid var(--tokped-gray-300);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--tokped-gray-600);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.empty-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tokped-gray-800);
}

.empty-subtitle {
    margin-bottom: 20px;
}

.empty-action-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.history-icon {
    font-size: 1.5rem;
}

.history-content {
    flex: 1;
}

.history-title {
    font-weight: 600;
    color: var(--tokped-gray-800);
}

.history-subtitle {
    font-size: 0.9rem;
    color: var(--tokped-gray-600);
}

.history-rating {
    color: var(--tokped-warning);
    font-weight: 600;
}

/* Quick Navigation Buttons */
.quick-nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.quick-nav-btn {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid var(--tokped-gray-200);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--tokped-gray-700);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.95rem;
}

.quick-nav-btn:hover {
    border-color: var(--tokped-primary);
    color: var(--tokped-primary);
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 172, 14, 0.15);
}

.quick-nav-btn:active {
    transform: translateY(-1px);
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Mobile FAB optimization */
@media (max-width: 768px) {
    .fab-container {
        bottom: 80px; /* Above bottom navigation */
        right: 16px;
        gap: 10px;
    }
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(3, 172, 14, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile FAB buttons */
@media (max-width: 768px) {
    .fab {
        width: 48px;
        height: 48px;
        font-size: 20px;
        box-shadow: 0 3px 15px rgba(3, 172, 14, 0.4);
    }
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(3, 172, 14, 0.4);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--tokped-gray-800);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab:hover .fab-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    footer {
        display: none !important;
    }
}