/* Culture Page Styles - BMW Style */

:root {
    --primary-blue: #0066B1;
    --light-blue: #00a3e0;
    --dark-bg: #0a1628;
    --darker-bg: #060d18;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --gradient-primary: linear-gradient(135deg, #0066B1 0%, #00a3e0 100%);
}

/* Culture Hero Section */
.culture-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 102, 177, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 163, 224, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; top: 40%; animation-delay: 8s; }

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-10px, -60px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(30px, -30px) scale(1.1); opacity: 0.7; }
}

.culture-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 102, 177, 0.2);
    border: 1px solid rgba(0, 102, 177, 0.4);
    border-radius: 30px;
    color: var(--light-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-label svg {
    fill: var(--light-blue);
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { 
    animation-delay: 0.4s;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-blue), transparent);
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-visual {
    position: relative;
}

.mission-image {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-shape {
    position: absolute;
    border-radius: 50%;
    animation: pulse-shape 4s ease-in-out infinite;
}

.mission-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 102, 177, 0.2);
    animation-delay: 0s;
}

.mission-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 163, 224, 0.3);
    animation-delay: 1s;
}

.mission-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    animation-delay: 2s;
}

@keyframes pulse-shape {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.mission-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 102, 177, 0.5);
}

.mission-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.mission-content {
    padding: 40px 0;
}

.mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 177, 0.15);
    border-radius: 20px;
    color: var(--light-blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label svg {
    fill: var(--light-blue);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    position: relative;
    padding: 40px 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 30px 60px rgba(0, 102, 177, 0.3);
}

.value-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 177, 0.1), rgba(0, 163, 224, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .value-hover-bg {
    opacity: 1;
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 102, 177, 0.15);
    z-index: 0;
}

.value-title {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.value-description {
    position: relative;
    z-index: 1;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Journey Section */
.journey-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--light-blue), var(--primary-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

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

.marker-dot {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 102, 177, 0.5);
}

.marker-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 102, 177, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.timeline-content {
    padding: 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(0, 102, 177, 0.1);
    transform: translateX(10px);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.timeline-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.timeline-icon {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 177, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--light-blue);
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--darker-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 30px 60px rgba(0, 102, 177, 0.3);
}

.team-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 177, 0.3), rgba(0, 163, 224, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-avatar svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--light-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    background: rgba(0, 102, 177, 0.05);
    border: 1px solid rgba(0, 102, 177, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 30px 60px rgba(0, 102, 177, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

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

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 150px 0;
    background: var(--darker-bg);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 102, 177, 0.3), transparent 70%);
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--light-blue);
    border-radius: 50%;
    animation: float-particle 10s infinite ease-in-out;
}

.cta-particle:nth-child(1) { left: 20%; top: 30%; animation-delay: 0s; }
.cta-particle:nth-child(2) { left: 50%; top: 50%; animation-delay: 3s; }
.cta-particle:nth-child(3) { left: 80%; top: 40%; animation-delay: 6s; }

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 177, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 177, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn svg {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive */
@media (max-width: 1200px) {
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-image {
        height: 350px;
    }
    
    .mission-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 100px;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-line {
        left: 5px;
    }
    
    .timeline-marker {
        left: -30px;
    }
    
    .marker-dot {
        width: 20px;
        height: 20px;
    }
    
    .timeline-icon {
        position: static;
        margin-top: 15px;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}