/* ===== LMS PAGE STYLES ===== */
/* Dark Theme with Gold Accents */

:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
}

/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

.view-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-all i {
    transition: transform 0.3s ease;
}

.view-all:hover {
    color: var(--gold);
}

.view-all:hover i {
    transform: translateX(5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===== LMS HERO ===== */
.lms-hero {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.lms-hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.lms-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.lms-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lms-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.lms-hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lms-stat {
    display: flex;
    flex-direction: column;
}

.lms-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.lms-stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.lms-hero-visual {
    position: relative;
    height: 300px;
}

.lms-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(50px);
    opacity: 0.15;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

.lms-floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatIcon 8s ease-in-out infinite;
}

.lms-floating-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.icon-1 {
    top: 15%;
    right: 20%;
}

.icon-2 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

.icon-3 {
    top: 45%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 15px) scale(1.05); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== USER DASHBOARD ===== */
.user-dashboard {
    padding: 2rem 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.user-info p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

/* Progress Overview */
.progress-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.progress-card {
    background: var(--bg-elevated);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.progress-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.progress-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.progress-info {
    display: flex;
    flex-direction: column;
}

.progress-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 0.2rem;
}

.progress-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== CONTINUE LEARNING ===== */
.continue-learning {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.continue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.continue-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
}

.continue-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.course-thumbnail {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-progress-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--gold);
    color: var(--bg-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.course-info {
    flex: 1;
    padding: 1.2rem;
}

.course-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.course-instructor {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 0.8rem;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0.5rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-bar.completed {
    background: #4caf50;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin: 0.5rem 0;
}

.course-meta i {
    color: var(--gold);
    margin-right: 0.2rem;
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-continue i {
    transition: transform 0.3s ease;
}

.btn-continue:hover {
    gap: 0.5rem;
}

.btn-continue:hover i {
    transform: scale(1.2);
}

/* ===== MY COURSES ===== */
.my-courses {
    padding: 4rem 0;
    background: var(--bg-card);
}

.course-filter-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-dark);
    padding: 0.3rem;
    border-radius: 60px;
    border: 1px solid var(--border-light);
}

.filter-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    color: var(--gold);
}

.filter-tab.active {
    background: var(--gold);
    color: var(--bg-dark);
}

.courses-grid-lms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.course-card-lms {
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.course-card-lms:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.course-card-header {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.course-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-status.in-progress {
    background: var(--gold);
    color: var(--bg-dark);
}

.course-status.completed {
    background: #4caf50;
    color: white;
}

.course-status.saved {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.course-card-body {
    padding: 1.5rem;
}

.course-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.course-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.course-card-meta i {
    color: var(--gold);
    margin-right: 0.2rem;
}

.course-card-progress {
    margin-bottom: 1rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.btn-continue-small {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue-small:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.btn-review,
.btn-start {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-review:hover,
.btn-start:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.btn-favorite {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    color: #ff4d4d;
    transform: scale(1.1);
}

.btn-favorite .fas.fa-heart {
    color: #ff4d4d;
}

/* ===== RECOMMENDED SECTION ===== */
.recommended-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.recommended-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.recommended-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.7rem;
    z-index: 2;
    text-transform: uppercase;
}

.recommended-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recommended-card:hover img {
    transform: scale(1.1);
}

.recommended-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommended-card:hover .recommended-overlay {
    opacity: 1;
}

.recommended-overlay h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.recommended-overlay p {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.recommended-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.recommended-meta i {
    color: var(--gold);
    margin-right: 0.2rem;
}

.btn-recommended {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.btn-recommended i {
    transition: transform 0.3s ease;
}

.btn-recommended:hover {
    color: var(--gold);
}

.btn-recommended:hover i {
    transform: translateX(5px);
}

/* ===== LEARNING PATH ===== */
.learning-path-lms {
    padding: 4rem 0;
    background: var(--bg-card);
}

.path-timeline-lms {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}

.path-timeline-lms::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.path-node {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.node-marker {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.path-node.completed .node-marker {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.path-node.active .node-marker {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 5px rgba(248, 190, 20, 0.1);
}

.node-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.node-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.node-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.node-progress {
    width: 100%;
    margin-top: 0.5rem;
}

/* ===== ACHIEVEMENTS ===== */
.achievements-lms {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.achievement-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.achievement-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.achievement-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.achievement-date {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

/* ===== DEADLINES SECTION ===== */
.deadlines-section {
    padding: 2rem 0;
    background: var(--bg-card);
}

.deadlines-card {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-gold);
}

.deadlines-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deadlines-card h3 i {
    color: var(--gold);
}

.deadlines-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.deadline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.deadline-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.deadline-info p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.deadline-badge {
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.deadline-badge.urgent {
    background: #ff4d4d;
    color: white;
    border: none;
}

.btn-deadlines {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-deadlines:hover {
    gap: 0.8rem;
}

/* ===== INSTRUCTOR MESSAGES ===== */
.instructor-messages {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.messages-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.messages-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.messages-card h3 i {
    color: var(--gold);
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.message-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: 12px;
    position: relative;
}

.message-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    flex: 1;
}

.message-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.message-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.message-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-messages {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-messages:hover {
    gap: 0.8rem;
}

/* ===== STUDY STATISTICS ===== */
.study-stats {
    padding: 4rem 0;
    background: var(--bg-card);
}

.stats-grid-lms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card-lms {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-card-lms:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-details h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 0.2rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.stat-details p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== WEEKLY GOAL ===== */
.weekly-goal {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.goal-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-gold);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.goal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.goal-progress-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.goal-progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.goal-progress-bar .progress-bar {
    height: 100%;
    background: var(--gold);
}

.goal-message {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-goal {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    padding: 0.6rem 2rem;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-goal:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

/* ===== CERTIFICATES ===== */
.certificates-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certificate-card {
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
}

.certificate-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.certificate-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.certificate-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.certificate-badge {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.btn-download {
    color: var(--text-tertiary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-download:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== REMINDER SECTION ===== */
.reminder-section {
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-card));
}

.reminder-card {
    background: var(--bg-elevated);
    border-radius: 32px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--border-gold);
}

.reminder-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.reminder-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.reminder-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reminder-time {
    padding: 0.8rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 60px;
    color: var(--text-primary);
    font-size: 1rem;
    min-width: 150px;
}

.reminder-icon {
    width: 120px;
    height: 120px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ring 3s ease-in-out infinite;
}

.reminder-icon i {
    font-size: 4rem;
    color: var(--gold);
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .progress-overview,
    .stats-grid-lms,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid-lms,
    .recommended-grid,
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .continue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .lms-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lms-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .lms-hero-stats {
        justify-content: center;
    }
    
    .lms-hero-visual {
        display: none;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .path-timeline-lms {
        flex-direction: column;
        gap: 2rem;
    }
    
    .path-timeline-lms::before {
        display: none;
    }
    
    .reminder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reminder-form {
        justify-content: center;
    }
    
    .reminder-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .courses-grid-lms,
    .recommended-grid,
    .certificates-grid,
    .continue-grid,
    .progress-overview,
    .stats-grid-lms,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .course-filter-tabs {
        width: 100%;
        overflow-x: auto;
        padding: 0.5rem;
    }
    
    .dashboard-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .reminder-form {
        flex-direction: column;
    }
    
    .reminder-time {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lms-hero-title {
        font-size: 2.5rem;
    }
    
    .user-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .continue-card {
        flex-direction: column;
    }
    
    .course-thumbnail {
        width: 100%;
        height: 160px;
    }
    
    .certificate-card {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-download {
        margin: 0;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .lms-shape,
    .lms-floating-icon,
    .progress-card,
    .continue-card,
    .course-card-lms,
    .achievement-card,
    .stat-card-lms,
    .certificate-card,
    .btn,
    .reminder-icon {
        animation: none;
        transition: none;
    }
}