/* Vision Visual - Enhanced */
.vision-showcase {
    position: relative;
}

.showcase-main {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 1rem;
}

.showcase-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.85) 0%, rgba(27, 94, 32, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-main:hover .showcase-overlay {
    opacity: 1;
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.overlay-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

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

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

.item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-weight: 600;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f5e9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
    border-color: #2e7d32;
}

.stat-icon {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
    transition: width 1s ease;
}

/* Mission Cards Enhanced */
.mission-card-enhanced {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 3px solid #e8f5e9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2e7d32, #4caf50, #66bb6a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.2);
    border-color: #2e7d32;
}

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

.mission-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mission-icon-enhanced {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mission-card-enhanced:hover .mission-icon-enhanced {
    transform: rotate(10deg) scale(1.1);
}

.mission-number-enhanced {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e0e0e0;
    font-family: 'Playfair Display', serif;
}

.mission-title-enhanced {
    font-family: 'Playfair Display', serif;
    color: #1b5e20;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mission-desc-enhanced {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.mission-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #a5d6a7;
}

.mission-arrow {
    display: inline-block;
    margin-left: 1rem;
    color: #2e7d32;
    font-size: 1.2rem;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 3px solid #e8f5e9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2e7d32, #4caf50, #66bb6a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.2);
    border-color: #2e7d32;
}

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

.value-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.value-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(20px);
    z-index: 1;
}

.value-title {
    font-family: 'Playfair Display', serif;
    color: #1b5e20;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
    margin: 0 auto;
    border-radius: 2px;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 100px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2e7d32, #4caf50, #66bb6a);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -100px;
    top: 0;
}

.timeline-year {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    font-family: 'Playfair Display', serif;
}

.timeline-dot {
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #2e7d32;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f5e9;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
    border-color: #2e7d32;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    color: #1b5e20;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.progress-percentage {
    color: #2e7d32;
    font-weight: 800;
}

.progress-bar-custom {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2e7d32, #4caf50, #66bb6a);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f5e9;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    border-color: #2e7d32;
}

.program-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(46, 125, 50, 0.15);
}

.program-content {
    flex: 1;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.program-title {
    font-family: 'Playfair Display', serif;
    color: #1b5e20;
    font-size: 1.2rem;
    margin: 0;
}

.program-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-aktif {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    border: 2px solid #a5d6a7;
}

.status-berjalan {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    border: 2px solid #ffb74d;
}

.program-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Achievement Cards */
.achievements-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-year {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.achievement-category {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }

/* Responsive */
@media (max-width: 992px) {
    .timeline-container {
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: -80px;
    }
    
    .timeline-container::before {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 5vh;
    }
    
    .showcase-main img {
        height: 300px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container {
        padding-left: 0;
    }
    
    .timeline-marker {
        position: relative;
        left: 0;
        margin-bottom: 1rem;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .program-card {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .vision-card-main {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-card-enhanced {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
}
