/* Culture Page Specific Styles */

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 128, 200, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

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

.page-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Core Values */
.core-values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 128, 200, 0.1);
    position: relative;
    overflow: hidden;
}

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

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    margin-bottom: 2rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.value-detail {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.value-detail p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Culture Pillars */
.culture-pillars {
    background: var(--bg-light);
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.pillar {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 128, 200, 0.1);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pillar-icon {
    margin-bottom: 2rem;
    text-align: center;
}

.pillar h3 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.pillar-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.pillar-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pillar-features li {
    background: rgba(51, 128, 200, 0.1);
    color: var(--primary-color);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pillar-features li:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Mission Vision */
.mission-vision {
    background: white;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 128, 200, 0.1);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mv-card h3 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.mission-text,
.vision-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-point {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.mission-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mission-point p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.vision-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.vision-stat {
    text-align: center;
}

.vision-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.vision-stat .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Philosophy */
.philosophy {
    background: var(--bg-light);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 128, 200, 0.1);
}

.philosophy-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.philosophy-icon {
    margin-bottom: 1.5rem;
}

.philosophy-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.philosophy-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Future Planning */
.future-planning {
    background: white;
}

.planning-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.planning-year {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 128, 200, 0.1);
    position: relative;
}

.planning-year:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.planning-year::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary-color);
    border-radius: 3px;
}

.year-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.year-header h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin: 0;
    min-width: 100px;
}

.year-focus {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.year-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.planning-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.planning-details span {
    background: rgba(51, 128, 200, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.equipment-expansion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.expansion-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(51, 128, 200, 0.1);
}

.expansion-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.expansion-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.digital-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.goal-item {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(51, 128, 200, 0.1);
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.goal-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design for Culture Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-container {
        grid-template-columns: 1fr;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .equipment-expansion {
        grid-template-columns: 1fr;
    }
    
    .digital-goals {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .pillar {
        padding: 2rem 1.5rem;
    }
    
    .pillar-features {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-item {
        padding: 2rem 1.5rem;
    }
    
    .planning-year {
        padding: 2rem 1.5rem;
    }
    
    .digital-goals {
        grid-template-columns: 1fr;
    }
}

/* Animation Enhancements */
.value-card {
    animation: glow 4s ease-in-out infinite;
}

.value-card:nth-child(2) {
    animation-delay: -1s;
}

.value-card:nth-child(3) {
    animation-delay: -2s;
}

.value-card:nth-child(4) {
    animation-delay: -3s;
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow);
    }
    50% {
        box-shadow: 0 0 20px rgba(51, 128, 200, 0.2);
    }
}

.pillar {
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(51, 128, 200, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar:hover::before {
    opacity: 1;
}

/* Ripple Animation Keyframes */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}