/* Culture Page Styles - Light Theme */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-page);
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
        url('../../images/banner.png') center center / cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    margin-bottom: 32px;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.page-hero h1 span {
    display: block;
}

.page-hero h1 span:last-child {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

/* Revealed State for Hero */
.hero-label.revealed,
.page-hero h1.revealed,
.hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header Shared Styles */
.section-header {
    text-align: center;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-title);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Company Culture Section */
.company-culture {
    background: #f0f4f8;
    padding: 100px 0;
    position: relative;
}

/* Culture Values — List */
.culture-list {
    margin: 0 auto;
}

.culture-list-item {
    display: flex;
    gap: 48px;
    padding: 32px 40px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 4px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.culture-list-item:last-child {
    margin-bottom: 0;
}

.culture-list-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.culture-list-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    background: var(--primary);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-top: 4px;
}

.culture-list-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 12px;
}

.culture-list-body p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin: 0;
}

/* Culture Features Section */
.culture-features {
    background: #f0f4f8;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: rgba(59, 130, 246, 0.03);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.feature-title {
    color: var(--text-title);
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-description {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
}

/* Work Environment Section */
.work-environment {
    background: var(--bg-surface);
    padding: 100px 0;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.environment-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.environment-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.environment-card:hover {
    background: rgba(59, 130, 246, 0.03);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.env-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.env-title {
    color: var(--text-title);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.env-description {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-background {
        background:
            linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
            url('../../images/banner-mobile.png') center center / cover no-repeat;
    }

    .company-culture {
        padding: 60px 20px;
    }

    .culture-features {
        padding: 60px 20px;
    }

    .work-environment {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .culture-list-item {
        gap: 20px;
        padding: 24px 16px;
        width: 100%;
        margin: 0 0 24px;
    }

    .environment-grid {
        grid-template-columns: 1fr;
    }

    .environment-card {
        padding: 28px 20px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 20px;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 24px;
    }
}
