/**
 * Future Skills Banner & Section Styles
 * Omanye Yehowada Research: Education for the Next 30 Years
 */

/* ===== Banner Container ===== */
.future-skills-banner {
    background: linear-gradient(135deg, #0B3C5D 0%, #00A8E8 100%);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-skills-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(140, 198, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 79, 55, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Animated background shapes */
.future-skills-banner .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.future-skills-banner .shape-1 {
    width: 300px;
    height: 300px;
    background: #8CC63F;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.future-skills-banner .shape-2 {
    width: 200px;
    height: 200px;
    background: #E94F37;
    bottom: -50px;
    left: 10%;
    animation-delay: -5s;
}

.future-skills-banner .shape-3 {
    width: 150px;
    height: 150px;
    background: #FFD966;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -60px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

/* ===== Banner Content ===== */
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
    color: white;
}

.banner-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: opacity 0.6s ease;
    min-height: 1.2em;
}

.banner-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2rem;
    transition: opacity 0.6s ease;
    min-height: 1.5em;
}

/* Category-specific styling */
.future-skills-banner[data-category="opportunity"] {
    background: linear-gradient(135deg, #0B3C5D 0%, #00A8E8 100%);
}

.future-skills-banner[data-category="mindset"] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.future-skills-banner[data-category="creation"] {
    background: linear-gradient(135deg, #0B3C5D 0%, #8CC63F 100%);
}

.future-skills-banner[data-category="provocative"] {
    background: linear-gradient(135deg, #2d1b4e 0%, #E94F37 100%);
}

.future-skills-banner[data-category="action"] {
    background: linear-gradient(135deg, #0B3C5D 0%, #FFD966 100%);
}

.future-skills-banner[data-category="subtle"] {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

/* CTA Button */
.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #0B3C5D;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: opacity 0.6s ease;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: transparent;
    color: white;
    border-color: white;
}

.banner-cta i {
    transition: transform 0.3s ease;
}

.banner-cta:hover i {
    transform: translateX(5px);
}

/* Progress Bar */
.banner-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.banner-progress {
    height: 100%;
    background: #8CC63F;
    width: 0%;
}

/* Navigation Dots */
.banner-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot:hover {
    border-color: white;
    transform: scale(1.2);
}

.banner-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.banner-prev { left: 2rem; }
.banner-next { right: 2rem; }

/* ===== Future Skills Section ===== */
.future-skills-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.future-skills-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.future-skills-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B3C5D;
    margin-bottom: 1rem;
}

.future-skills-header p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.skill-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(11, 60, 93, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A8E8, #8CC63F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 60, 93, 0.15);
    border-color: #e2e8f0;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.skill-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: inherit;
    opacity: 0.2;
    filter: blur(8px);
}

.skill-card:nth-child(1) .skill-icon { background: linear-gradient(135deg, #00A8E8, #0B3C5D); color: white; }
.skill-card:nth-child(2) .skill-icon { background: linear-gradient(135deg, #8CC63F, #4ade80); color: white; }
.skill-card:nth-child(3) .skill-icon { background: linear-gradient(135deg, #E94F37, #f87171); color: white; }
.skill-card:nth-child(4) .skill-icon { background: linear-gradient(135deg, #FFD966, #fbbf24); color: white; }
.skill-card:nth-child(5) .skill-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: white; }
.skill-card:nth-child(6) .skill-icon { background: linear-gradient(135deg, #ec4899, #f472b6); color: white; }

.skill-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B3C5D;
    margin-bottom: 0.75rem;
}

.skill-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.skill-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.skill-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.skill-tag.critical {
    background: #fef3c7;
    color: #92400e;
}

.skill-tag.growing {
    background: #dcfce7;
    color: #166534;
}

.skill-link {
    margin-left: auto;
    color: #00A8E8;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.skill-link:hover {
    gap: 0.75rem;
    color: #0B3C5D;
}

/* Statistics Section */
.skills-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, #0B3C5D, #00A8E8);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Timeline Section */
.skills-timeline {
    padding: 5rem 2rem;
    background: white;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B3C5D;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00A8E8, #8CC63F, #E94F37);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(11, 60, 93, 0.1);
    max-width: 400px;
    position: relative;
    border: 2px solid #e2e8f0;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #00A8E8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00A8E8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B3C5D;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.future-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0B3C5D 0%, #00A8E8 100%);
    text-align: center;
    color: white;
}

.future-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.future-cta p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.future-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: white;
    color: #0B3C5D;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #0B3C5D;
}

/* Responsive */
@media (max-width: 768px) {
    .future-skills-banner {
        min-height: 500px;
    }
    
    .banner-nav {
        display: none;
    }
    
    .banner-dots {
        bottom: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -45px;
        right: auto;
    }
    
    .skills-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .future-skills-banner .shape,
    .banner-progress,
    .skill-card,
    .banner-cta {
        animation: none;
        transition: none;
    }
}
