
.dynamic-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.2);
    border-radius: 50px;
    padding: 8px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    width: auto;
}

.dynamic-navbar.expanded {
    border-radius: 24px;
    padding: 12px 32px;
    background: rgba(15, 15, 35, 0.9);
}

.dynamic-navbar .navbar-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dynamic-navbar .nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 24px;
}

.dynamic-navbar .nav-link {
    color: rgba(226, 232, 240, 0.8);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 2px;
}

.dynamic-navbar .nav-link:hover {
    color: white;
    background: rgba(136, 120, 204, 0.2);
    transform: translateY(-1px);
}

.dynamic-navbar .nav-link.active {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.3), rgba(168, 85, 247, 0.3));
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(136, 120, 204, 0.2);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    background: rgba(136, 120, 204, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 120, 204, 0.2);
    border-radius: 25px;
    padding: 4px;
    gap: 3px;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: rgba(226, 232, 240, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn.active {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.3), rgba(168, 85, 247, 0.3));
    color: white;
    box-shadow: 0 2px 8px rgba(136, 120, 204, 0.2);
}

.lang-btn:hover {
    color: white;
    background: rgba(136, 120, 204, 0.2);
    transform: scale(1.05);
}

.flag-icon {
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.lang-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .dynamic-navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 8px;
        padding: 16px;
        flex-direction: column;
        gap: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(136, 120, 204, 0.2);
    }
    
    .dynamic-navbar .nav-links.show {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
        margin-left: auto;
    }
    
    .dynamic-navbar {
        width: calc(100% - 40px);
        max-width: none;
    }
    
    .language-switcher {
        order: -1;
        margin-left: 12px;
        margin-right: 12px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .lang-text {
        display: none;
    }
    
    .flag-icon {
        font-size: 1rem;
    }
}

/* Glass Buttons */
.glass-btn {
    background: rgba(136, 120, 204, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn:hover {
    background: rgba(136, 120, 204, 0.25);
    border-color: rgba(136, 120, 204, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(136, 120, 204, 0.2);
    color: white;
}

.glass-btn-primary {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.3), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(136, 120, 204, 0.4);
}

.glass-btn-primary:hover {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.4), rgba(168, 85, 247, 0.4));
    border-color: rgba(136, 120, 204, 0.6);
}

.glass-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(136, 120, 204, 0.4);
}

.glass-btn-outline:hover {
    background: rgba(136, 120, 204, 0.15);
    border-color: rgba(136, 120, 204, 0.6);
}

/* Glass Timeline Cards */
.glass-timeline-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    box-shadow: 
        0 8px 32px rgba(136, 120, 204, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.glass-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 120, 204, 0.3), transparent);
}

.glass-timeline-card:hover {
    background: rgba(136, 120, 204, 0.12);
    border-color: rgba(136, 120, 204, 0.25);
    box-shadow: 
        0 16px 48px rgba(136, 120, 204, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.timeline-year-badge {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.3), rgba(168, 85, 247, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 120, 204, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-year-badge.current {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(99, 102, 241, 0.4));
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.timeline-text {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.glass-timeline-card:hover .timeline-icon {
    opacity: 1;
    transform: scale(1.1);
}


.glass-roadmap-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    box-shadow: 
        0 8px 32px rgba(136, 120, 204, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 120, 204, 0.3), transparent);
}

.glass-roadmap-card:hover {
    background: rgba(136, 120, 204, 0.12);
    border-color: rgba(136, 120, 204, 0.25);
    box-shadow: 
        0 16px 48px rgba(136, 120, 204, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.glass-badge {
    background: rgba(136, 120, 204, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 120, 204, 0.3);
    color: #e2e8f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-text {
    color: #cbd5e1;
    line-height: 1.6;
}

.glass-progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(136, 120, 204, 0.1);
    position: relative;
}

.glass-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.glass-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8878cc, #a855f7, #6366f1);
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.glass-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.glass-status-dot.active {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.glass-status-dot.progress {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.glass-status-dot.planned {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: 0 0 12px rgba(107, 114, 128, 0.4);
}

.glass-status-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}


.modern-footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 120, 204, 0.5), transparent);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(136, 120, 204, 0.1);
    border: 1px solid rgba(136, 120, 204, 0.2);
    border-radius: 16px;
    color: #8878cc;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: rgba(136, 120, 204, 0.2);
    border-color: rgba(136, 120, 204, 0.4);
    color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 120, 204, 0.2);
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #8878cc;
    transform: translateX(4px);
}

.footer-section-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #8878cc, #a855f7);
    border-radius: 2px;
}


.hero-bg {
    background: linear-gradient(135deg, #8878cc 0%, #1a1a2e 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.7) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(45, 27, 105, 0.7) 100%);
    z-index: 1;
}

.timeline-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/timeline-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.timeline-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 35, 0.9) 50%, rgba(45, 27, 105, 0.8) 100%);
    z-index: 1;
}

.timeline-content {
    position: relative;
    z-index: 2;
}

.hero-bg.no-image {
    background-image: none;
    background: linear-gradient(135deg, #8878cc 0%, #1a1a2e 50%, #2d1b69 100%);
}

.hero-bg.no-image::before {
    background: rgba(15, 15, 35, 0.7);
}

.timeline-bg.no-image {
    background-image: none;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #2d1b69 100%);
}

.timeline-bg.no-image::before {
    background: rgba(26, 26, 46, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, #8878cc, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(136, 120, 204, 0.1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(136, 120, 204, 0.15);
    border-color: rgba(136, 120, 204, 0.3);
}

.icon-container {
    background: linear-gradient(135deg, #8878cc, #a855f7);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(136, 120, 204, 0.3);
}

@media (max-width: 768px) {
    .glass-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .glass-roadmap-card {
        margin-bottom: 1rem;
    }
    
    .glass-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .hero-bg, .timeline-bg {
        background-attachment: scroll;
    }
    
    .timeline-icon {
        position: static;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: 0;
    }
    
    .glass-timeline-card {
        padding: 1rem;
    }
}