/* ===== FILOSOFIE PAGE SPECIFIC STYLES ===== */

/* Filosofie Hero Section */
.filosofie-hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, #8B40C9 0%, #6A2FA8 100%);
    position: relative;
    overflow: hidden;
}

.filosofie-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(184, 133, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
}

.filosofie-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge-filosofie {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filosofie-hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-stats-filosofie {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Filosofie Hero Visual */
.filosofie-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle-filosofie {
    width: 100%;
    max-width: 400px;
    height: 400px;
}

.visual-circle-filosofie svg {
    width: 100%;
    height: 100%;
}

.orbit-1 { animation: orbitPulse 3s ease-in-out infinite 0s; }
.orbit-2 { animation: orbitPulse 3s ease-in-out infinite 0.5s; }
.orbit-3 { animation: orbitPulse 3s ease-in-out infinite 1s; }
.orbit-4 { animation: orbitPulse 3s ease-in-out infinite 1.5s; }
.orbit-5 { animation: orbitPulse 3s ease-in-out infinite 2s; }
.orbit-6 { animation: orbitPulse 3s ease-in-out infinite 2.5s; }

.orbit-ring {
    animation: ringRotate 40s linear infinite;
}

@keyframes orbitPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
        transform-origin: center;
    }
    to {
        transform: rotate(360deg);
        transform-origin: center;
    }
}

/* Core Values Section */
.core-values-section {
    padding: 100px 20px;
    background: var(--text-white);
}

.section-title-center {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 64, 201, 0.15);
    border-color: var(--primary-purple);
    background: var(--text-white);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(139, 64, 201, 0.08);
    line-height: 1;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.value-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* Training Phases Section */
.training-phases-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.phases-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

.phase-card {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.phase-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 64, 201, 0.3);
    position: relative;
    z-index: 2;
}

.phase-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.phase-content {
    flex: 1;
    background: var(--text-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phase-content:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(139, 64, 201, 0.15);
    border-color: var(--primary-purple);
}

.phase-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.phase-content h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.phase-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.phase-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.phase-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.phase-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 64, 201, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.phase-highlights i {
    font-size: 0.8rem;
}

/* CTA Section */
.filosofie-cta {
    padding: 100px 20px;
    background: var(--gradient-primary);
}

.cta-box-filosofie {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}

.cta-box-filosofie h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box-filosofie p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-filosofie {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .filosofie-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .filosofie-hero-visual {
        order: -1;
    }
    
    .visual-circle-filosofie {
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .filosofie-hero h1 {
        font-size: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .phase-marker {
        width: 50px;
        height: 50px;
    }
    
    .phase-number {
        font-size: 1.5rem;
    }
    
    .phase-card {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .filosofie-hero {
        padding: 80px 20px;
    }
    
    .filosofie-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-stats-filosofie {
        gap: 25px;
    }
    
    .value-number {
        font-size: 3rem;
    }
    
    .phase-content {
        padding: 25px;
    }
    
    .phase-highlights {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-box-filosofie h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons-filosofie {
        flex-direction: column;
    }
    
    .cta-buttons-filosofie .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .filosofie-hero h1 {
        font-size: 2rem;
    }
    
    .visual-circle-filosofie {
        max-width: 280px;
        height: 280px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .phase-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .phase-marker {
        margin: 0 auto;
    }
}
