/* 
 * Ubhara News - Custom Styles
 * File: ubhara-news.css
 */

/* VARIABLES */
:root {
    /* Warna Branding Ubhara */
    --primary: #FF5722;    /* Orange terang untuk fokus */
    --secondary: #2196F3;   /* Biru cerah untuk berita */
    --accent: #FFC107;      /* Kuning untuk highlight */
    --dark: #2D3748;        /* Dark gray untuk teks */
    --light: #F7FAFC;       /* Light background */
    --success: #4CAF50;     /* Hijau untuk event */
    --purple: #9C27B0;      /* Ungu untuk kategori khusus */
    --danger: #F44336;      /* Merah untuk error */
    --warning: #FF9800;     /* Orange untuk warning */
    --info: #00BCD4;        /* Cyan untuk info */
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;

    /* Ubhara Yellow (Khas Ubhara) */
    --ubhara-yellow: #f59e0b;
    --ubhara-yellow-dark: #d97706;
    
    /* Font Family */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: #F9FAFB;
    color: var(--dark);
    min-height: 100vh;
}

.heading-font {
    font-family: var(--font-heading);
}

/* COLOR UTILITY CLASSES */
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-dark { background-color: var(--dark); }
.bg-success { background-color: var(--success); }
.bg-purple { background-color: var(--purple); }
.bg-danger { background-color: var(--danger); }
.bg-warning { background-color: var(--warning); }
.bg-info { background-color: var(--info); }
.bg-gold { background-color: var(--gold); }
.bg-silver { background-color: var(--silver); }
.bg-bronze { background-color: var(--bronze); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-dark { color: var(--dark); }
.text-success { color: var(--success); }
.text-purple { color: var(--purple); }
.text-white { color: white; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gold { color: #B8860B; }
.text-silver { color: #808080; }
.text-bronze { color: #8B4513; }

/* GRADIENTS */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #FF7043 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #03A9F4 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, var(--dark) 0%, #4A5568 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #FFD54F 100%);
}

.gradient-success {
    background: linear-gradient(135deg, var(--success) 0%, #66BB6A 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, var(--purple) 0%, #BA68C8 100%);
}

.ubhara-yellow {
    background: linear-gradient(135deg, var(--ubhara-yellow) 0%, #fbbf24 100%);
}

.ubhara-yellow-dark {
    background: linear-gradient(135deg, var(--ubhara-yellow-dark) 0%, var(--ubhara-yellow) 100%);
}

/* TEXT EFFECTS */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SHADOWS & EFFECTS */
.shadow-3d {
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.08);
}

.shadow-neon {
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* GLASS MORPHISM */
.glass-morphism {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* HOVER EFFECTS */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-opacity {
    transition: opacity 0.3s ease;
}

.hover-opacity:hover {
    opacity: 0.8;
}

/* ANIMATIONS */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* CATEGORY TAGS */
.tag-news { 
    background-color: var(--secondary); 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-event { 
    background-color: var(--success); 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-campus { 
    background-color: var(--primary); 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-research { 
    background-color: var(--purple); 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-student { 
    background-color: var(--accent); 
    color: var(--dark); 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-sport { 
    background-color: #FF4081; 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-art { 
    background-color: #673AB7; 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-tech { 
    background-color: #00BCD4; 
    color: white; 
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CUSTOM COMPONENTS */
.hot-topic {
    background: var(--ubhara-yellow-dark);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.2);
}

.featured-news {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.featured-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 32px;
    color: white;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.event-card {
    background: linear-gradient(135deg, var(--success), #66BB6A);
    color: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #FF7043);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E64A19, #F4511E);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #03A9F4);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1976D2, #0288D1);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #FFD54F);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* NAVIGATION */
.nav-link {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.nav-link i {
    margin-right: 8px;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--dark), #4A5568);
    color: white;
    padding-top: 48px;
    padding-bottom: 32px;
    margin-top: 64px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-link {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .featured-news {
        height: 300px;
    }
    
    .news-card img {
        height: 180px;
    }
    
    .hot-topic {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .grid-cols-1 { grid-template-columns: 1fr; }
    .grid-cols-2 { grid-template-columns: 1fr; }
    .grid-cols-3 { grid-template-columns: 1fr; }
    .grid-cols-4 { grid-template-columns: 1fr; }
}

/* Gallery Hover Effects */
.gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Masonry Layout */
@supports (grid-template-rows: masonry) {
    .masonry-grid {
        grid-template-rows: masonry;
    }
}

/* Lightbox Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox {
    animation: fadeIn 0.3s ease-out;
}

/* Berita Terbaru CSS*/


        .heading-font {
            font-family: 'Montserrat', sans-serif;
        }
        
        :root {
            --primary: #FF5722;
            --secondary: #2196F3;
            --accent: #FFC107;
            --dark: #2D3748;
            --success: #4CAF50;
            --purple: #9C27B0;
        }
        
        .gradient-primary {
            background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
        }
        
        .gradient-secondary {
            background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
        }
        
        .gradient-success {
            background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
        }
        
        .gradient-purple {
            background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
        }
        
        .shadow-3d {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.08);
        }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .text-gradient {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Active Tab Style */
        .active-tab {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
        }
        
        /* News Categories */
        .category-all { background-color: #FF5722; color: white; }
        .category-campus { background-color: #2196F3; color: white; }
        .category-event { background-color: #4CAF50; color: white; }
        .category-research { background-color: #9C27B0; color: white; }
        .category-student { background-color: #FF9800; color: white; }
        .category-tech { background-color: #00BCD4; color: white; }
        
        /* Calendar Event Styles */
        .calendar-day {
            width: 50px;
            height: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .calendar-day:hover {
            transform: scale(1.1);
            background-color: #FF5722;
            color: white;
        }
        
        .calendar-day.has-event {
            background-color: #FFEBEE;
            color: #FF5722;
            font-weight: bold;
        }
        
        .calendar-day.today {
            background: linear-gradient(135deg, #FF5722, #FF9800);
            color: white;
            box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
        }
        
        /* Filter Tags */
        .filter-tag {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
        }
        
        .filter-tag:hover {
            transform: translateY(-2px);
        }
        
        .filter-tag.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-color: var(--primary);
        }

        




       /* ============================================
   EVENT & CALENDAR STYLES (ADDITIONAL)
   ============================================ */

/* Event Type Styles */
.event-seminar { 
    background: linear-gradient(135deg, var(--secondary), #03A9F4); 
    color: white; 
}

.event-workshop { 
    background: linear-gradient(135deg, var(--success), #66BB6A); 
    color: white; 
}

.event-festival { 
    background: linear-gradient(135deg, var(--purple), #BA68C8); 
    color: white; 
}

.event-competition { 
    background: linear-gradient(135deg, var(--warning), #FFB74D); 
    color: white; 
}

.event-career { 
    background: linear-gradient(135deg, #607D8B, #78909C); 
    color: white; 
}

.event-sports { 
    background: linear-gradient(135deg, var(--danger), #EF5350); 
    color: white; 
}

/* Calendar Container */
.calendar-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-3d);
}

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

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

/* Calendar Day (Enhanced) */
.calendar-day {
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calendar-day:hover {
    background-color: #FFEBEE;
    color: var(--primary);
}

.calendar-day.event-day {
    background-color: #E3F2FD;
    color: var(--secondary);
    font-weight: bold;
}

.calendar-day.today {
    background: linear-gradient(135deg, var(--primary), var(--warning));
    color: white;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.calendar-day.has-event {
    background-color: #FFEBEE;
    color: var(--primary);
    font-weight: bold;
}

/* Event Card Styles (Enhanced) */
.event-card {
    border-left: 5px solid;
    transition: all 0.3s ease;
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Event Card Colors */
.event-card.seminar { border-left-color: var(--secondary); }
.event-card.workshop { border-left-color: var(--success); }
.event-card.festival { border-left-color: var(--purple); }
.event-card.competition { border-left-color: var(--warning); }
.event-card.career { border-left-color: #607D8B; }
.event-card.sports { border-left-color: var(--danger); }

.timeline-item {
    position: relative;
}

/* Garis vertikal timeline */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 10px; /* Sesuaikan dengan padding kiri */
    top: 40px; /* Mulai dari bawah dot */
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, #E5E7EB, #D1D5DB);
}

/* Timeline dot dengan nomor */
.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
    position: absolute;
    left: -12px;
    top: 0;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Warna gradient untuk timeline dots */
.timeline-dot.orange {
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
}

.timeline-dot.blue {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
}

.timeline-dot.green {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.timeline-dot.purple {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.border-gray-200 {
    border-color: #E5E7EB !important;
}

.border-blue-100 {
    border-color: #DBEAFE !important;
}

.border-green-100 {
    border-color: #D1FAE5 !important;
}

.border-purple-100 {
    border-color: #EDE9FE !important;
}

/* Background gradient utilities */
.from-blue-50 {
    --tw-gradient-from: #EFF6FF;
}

.to-white {
    --tw-gradient-to: #FFFFFF;
}

.from-green-50 {
    --tw-gradient-from: #F0FDF4;
}

.from-purple-50 {
    --tw-gradient-from: #FAF5FF;
}

/* Text colors */
.text-blue-500 {
    color: #3B82F6 !important;
}

.text-green-500 {
    color: #10B981 !important;
}

.text-purple-500 {
    color: #8B5CF6 !important;
}

/* Hover effects untuk links */
.hover\:text-blue-700:hover {
    color: #1D4ED8 !important;
}

.hover\:text-green-700:hover {
    color: #047857 !important;
}

.hover\:text-purple-700:hover {
    color: #7C3AED !important;
}

/* ============================================
   FILTER TAGS (UPDATE existing ones)
   ============================================ */

.filter-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    display: inline-block;
    margin: 2px;
    font-weight: 500;
}

.filter-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-tag.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
    font-weight: 600;
}

/* Filter Tag Colors (matching categories) */
.filter-tag.category-all { 
    background-color: var(--primary); 
    color: white; 
}

.filter-tag.category-campus { 
    background-color: var(--secondary); 
    color: white; 
}

.filter-tag.category-event { 
    background-color: var(--success); 
    color: white; 
}

.filter-tag.category-research { 
    background-color: var(--purple); 
    color: white; 
}

.filter-tag.category-student { 
    background-color: var(--warning); 
    color: white; 
}

.filter-tag.category-tech { 
    background-color: #00BCD4; 
    color: white; 
}

/* ============================================
   ACTIVE TAB STYLES (UPDATE)
   ============================================ */

.active-tab {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE CALENDAR
   ============================================ */

@media (max-width: 640px) {
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }
    
    .calendar-day {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -25px;
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   EVENT STATUS BADGES
   ============================================ */

.event-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status.upcoming {
    background-color: #E8F5E9;
    color: var(--success);
}

.event-status.ongoing {
    background-color: #FFF3E0;
    color: var(--warning);
}

.event-status.finished {
    background-color: #F5F5F5;
    color: #757575;
}

.event-status.cancelled {
    background-color: #FFEBEE;
    color: var(--danger);
}

/* ============================================
   EVENT DETAILS
   ============================================ */

.event-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--dark);
}

.event-detail-item i {
    width: 24px;
    color: var(--primary);
    margin-right: 10px;
}

.event-register-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.event-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.event-register-btn:disabled {
    background: #E0E0E0;
    color: #9E9E9E;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================
   EVENT & SEMINAR ADDITIONAL STYLES
   ============================================ */

/* Event Type Badges */
.badge-seminar {
    background: linear-gradient(135deg, var(--secondary), #03A9F4);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-workshop {
    background: linear-gradient(135deg, var(--success), #66BB6A);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-training {
    background: linear-gradient(135deg, var(--purple), #BA68C8);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-webinar {
    background: linear-gradient(135deg, var(--warning), #FFB74D);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Cards (For Event Categories) */
.category-card {
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    box-shadow: var(--shadow-3d);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Timeline for Event Schedule */
.timeline-container {
    position: relative;
    padding-left: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

/* Timeline Item Types */
.timeline-item.upcoming::before { background: var(--success); box-shadow: 0 0 0 3px var(--success); }
.timeline-item.ongoing::before { background: var(--accent); box-shadow: 0 0 0 3px var(--accent); }
.timeline-item.completed::before { background: var(--secondary); box-shadow: 0 0 0 3px var(--secondary); }

/* Pricing Cards (For Paid Events) */
.pricing-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-3d);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: scale(1.03);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

/* Speaker Cards (For Event Speakers) */
.speaker-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-3d);
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 5px solid #f3f4f6;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Registration Steps */
.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.step-circle.completed {
    background: linear-gradient(135deg, var(--success), #66BB6A);
}

.step-circle.active {
    background: linear-gradient(135deg, var(--accent), #FFD54F);
    color: var(--dark);
}

.step-circle.pending {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-3d);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: #f3f4f6;
    font-family: serif;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FILTER TAGS ENHANCEMENT
   ============================================ */

/* Update existing filter-tag with enhanced styles */
.filter-tag {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid #e5e7eb;
    background-color: white;
    display: inline-block;
    margin: 2px 4px;
    font-weight: 500;
}

.filter-tag:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-tag.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .category-card {
        padding: 20px;
    }
    
    .timeline-container {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -23px;
        width: 12px;
        height: 12px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .speaker-card {
        padding: 15px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .category-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .pricing-card.popular::before {
        font-size: 10px;
        right: -40px;
        padding: 4px 35px;
    }
    
    .timeline-container::before {
        left: 15px;
    }
}


/* ============================================
   VIDEO GALLERY & PLAYER STYLES
   ============================================ */

/* Video Container */
.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-3d);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
}

.video-thumbnail:hover {
    transform: scale(1.03);
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
    transform: scale(1.1);
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    animation: slideInUp 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

/* Video Categories */
.category-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid #e5e7eb;
    background-color: white;
    display: inline-block;
    margin: 2px 4px;
    font-weight: 500;
}

.category-tag:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-tag.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
    font-weight: 600;
}

/* Video Stats */
.video-stats {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 10px 15px;
    border-radius: 0 0 15px 15px;
}

/* Featured Video */
.featured-video {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .featured-video {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Playlist Styles */
.playlist-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.playlist-item:hover {
    background-color: #f3f4f6;
    transform: translateX(5px);
}

.playlist-item.active {
    background-color: #E3F2FD;
    border-left: 4px solid var(--secondary);
    font-weight: 600;
}

.playlist-thumbnail {
    width: 80px;
    height: 45px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF0000;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
    z-index: 5;
}

.live-badge::before {
    content: '•';
    margin-right: 5px;
    animation: pulse 1s infinite;
}

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

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 65%;
    transition: width 0.3s ease;
}

/* Channel Card */
.channel-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-3d);
    cursor: pointer;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.channel-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid #f3f4f6;
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Duration Badge */
.duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Video Quality Selector */
.quality-selector {
    position: absolute;
    bottom: 60px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    display: none;
}

.video-container:hover .quality-selector {
    display: block;
}

.quality-option {
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.quality-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.quality-option.active {
    background: var(--primary);
    font-weight: 600;
}

/* Volume Control */
.volume-control {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 5;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.control-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ============================================
   PHOTO GALLERY STYLES
   ============================================ */

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: var(--shadow-3d);
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 13px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Lightbox Modal (Enhanced) */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.lightbox-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lightbox-content:hover .lightbox-info {
    transform: translateY(0);
}

/* Album Card */
.album-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-3d);
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.album-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.album-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Stats Badge */
.stats-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    color: var(--dark);
    backdrop-filter: blur(10px);
}

/* Masonry Grid Layout */
.grid-masonry {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-auto-rows: 200px;
            grid-auto-flow: dense;
        }
        
        .grid-masonry .tall {
            grid-row: span 2;
        }
        
        .grid-masonry .wide {
            grid-column: span 2;
        }

@media (max-width: 768px) {
    .grid-masonry {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .grid-masonry .wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .grid-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .grid-masonry .tall,
    .grid-masonry .wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

/* Download & Share Buttons */
.gallery-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.gallery-item:hover .gallery-actions {
    opacity: 1;
}

.gallery-action-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.gallery-action-btn:hover {
    background: white;
    transform: scale(1.1);
    color: var(--primary);
}

/* Fullscreen Toggle */
.fullscreen-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 0;
}

.gallery-item:hover .fullscreen-toggle {
    opacity: 1;
}

.fullscreen-toggle:hover {
    background: white;
    transform: scale(1.1);
    color: var(--primary);
}

/* Grid View Toggle */
.grid-view-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.view-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.view-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Zoom Effect */
.zoom-container {
    overflow: hidden;
    border-radius: 12px;
}

.zoom-container img {
    transition: transform 0.5s ease;
}

.zoom-container:hover img {
    transform: scale(1.1);
}




/* ===== KARIR PAGE SPECIFIC STYLES ===== */
/* Job Tags Khusus Karir */
.tag-fulltime { background-color: var(--success); color: white; }
.tag-parttime { background-color: var(--accent); color: #333; }
.tag-internship { background-color: var(--secondary); color: white; }
.tag-remote { background-color: #673AB7; color: white; }
.tag-freshgraduate { background-color: #00BCD4; color: white; }
.tag-manager { background-color: var(--purple); color: white; }
.tag-tech { background-color: #FF5722; color: white; }

/* Career Level Colors */
.level-entry { background-color: #E3F2FD; color: #1565C0; }
.level-mid { background-color: #E8F5E9; color: #2E7D32; }
.level-senior { background-color: #FFF3E0; color: #EF6C00; }
.level-manager { background-color: #F3E5F5; color: #7B1FA2; }

/* Job Card Effects */
.job-card-featured {
    border-left: 6px solid var(--primary);
    position: relative;
}

.job-card-featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    transform: rotate(45deg);
}

/* Salary Badge */
.salary-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    font-weight: bold;
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Warna khusus untuk perusahaan */
.company-logo.gojek {
    background: linear-gradient(135deg, #00AA13 0%, #00D51A 100%);
}

.company-logo.bank-tabungan {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.company-logo.telkom {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.company-logo.shopee {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
}

.company-logo.astra {
    background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
}

/* Timeline for Career Tips */
.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 25px;
    width: 2px;
    height: calc(100% + 10px);
    background: #E2E8F0;
}

.timeline-item:last-child::after {
    display: none;
}

/* Untuk gradien khusus karir */
.gradient-secondary {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%) !important;
}

.gradient-primary {
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%) !important;
}

/* Glass morphism khusus untuk karir */
.glass-morphism {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Animasi floating untuk ikon karir */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Efek teks gradient */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Efek shadow dan hover */
.shadow-3d {
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.08);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient untuk tombol dan badge */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-orange-500 {
    --tw-gradient-from: #FF5722;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 87, 34, 0));
}

.to-orange-400 {
    --tw-gradient-to: #FF7043;
}

.from-blue-500 {
    --tw-gradient-from: #2196F3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 150, 243, 0));
}

.to-blue-400 {
    --tw-gradient-to: #29B6F6;
}

.from-green-500 {
    --tw-gradient-from: #4CAF50;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 175, 80, 0));
}

.to-green-400 {
    --tw-gradient-to: #66BB6A;
}

.logo-container {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
}

.logo-ubhara {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Floating animation untuk logo */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-5px); 
    }
}

.logo-floating {
    animation: float 5s ease-in-out infinite;
}

/* ============================================
   CRITICAL ACTIVE MENU FIXES
   ============================================ */

/* ============================================
   ACTIVE TAB FIX - ULTRA SPECIFIC
   ============================================ */

/* Level 1: General active tab */
nav a.active-tab {
    background: linear-gradient(135deg, #FF5722, #2196F3) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3) !important;
}

/* Level 2: More specific */
header nav a.active-tab {
    background: linear-gradient(135deg, #FF5722, #2196F3) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3) !important;
}

/* Level 3: Even more specific */
.sticky.top-0.z-50.glass-morphism.shadow-3d nav a.active-tab {
    background: linear-gradient(135deg, #FF5722, #2196F3) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3) !important;
}

/* Level 4: For mobile nav */
#mobile-nav a.active-tab {
    background: linear-gradient(135deg, #FF5722, #2196F3) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3) !important;
}

/* ICON dalam active tab - SEMUA VERSI */
nav a.active-tab i,
header nav a.active-tab i,
.sticky.top-0.z-50.glass-morphism.shadow-3d nav a.active-tab i,
#mobile-nav a.active-tab i {
    color: white !important;
}

/* ============================================
   NON-ACTIVE TABS
   ============================================ */

/* Non-active desktop */
nav a.bg-gray-100.text-dark {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
}

nav a.bg-gray-100.text-dark i {
    color: #2196F3 !important;
}

/* Non-active mobile */
#mobile-nav a.bg-gray-100.text-dark {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
}

#mobile-nav a.bg-gray-100.text-dark i {
    color: #2196F3 !important;
}

/* Hover untuk non-active */
nav a.bg-gray-100.text-dark:hover,
#mobile-nav a.bg-gray-100.text-dark:hover {
    background-color: #e5e7eb !important;
}
