/* CORPORATE ELITE V6 CSS */

/* Cinematic Hero */
.hero-about-v6 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #020617;
    /* Very Dark Slate */
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-about-v6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
    z-index: 0;
}

.hero-title-v6 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

.hero-subtitle-v6 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.gold-glow-text {
    background: linear-gradient(135deg, #eab308 0%, #fef08a 50%, #eab308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(234, 179, 8, 0.3);
}

/* Glassmorphism MVV */
.mvv-glass-section {
    background: #0f172a;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mvv-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mvv-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--card-color, #eab308);
    opacity: 0.5;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.mvv-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.mvv-glass-card:hover::before {
    opacity: 1;
    height: 4px;
}

.mvv-icon-v6 {
    font-size: 3rem;
    color: var(--card-color, #eab308);
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

/* Interactive Timeline */
.timeline-v6-section {
    background: #020617;
    padding: 120px 0;
    position: relative;
}

.timeline-v6-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-v6-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(14, 165, 233, 0.5), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item-v6 {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    transition: all 0.3s ease;
}

.timeline-item-v6::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #020617;
    border: 4px solid #0ea5e9;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item-v6.left {
    left: 0;
}

.timeline-item-v6.right {
    left: 50%;
}

.timeline-item-v6.right::after {
    left: -10px;
}

.timeline-content-v6 {
    padding: 30px;
    background: #1e293b;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.timeline-item-v6:hover .timeline-content-v6 {
    transform: scale(1.02);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.timeline-item-v6:hover::after {
    background: #0ea5e9;
    box-shadow: 0 0 15px #0ea5e9;
}

.year-v6 {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0ea5e9;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

/* Hover-Reveal Team */
.team-v6-section {
    background: #0f172a;
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-v6-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card-v6 {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: #1e293b;
    /* Fallback */
    cursor: pointer;
}

.team-card-v6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: grayscale(80%) contrast(1.2);
}

.team-info-v6 {
    position: absolute;
    bottom: -80px;
    /* Hidden initially */
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.8) 60%, transparent 100%);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: left;
}

.team-card-v6:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

.team-card-v6:hover .team-info-v6 {
    bottom: 0;
}

.team-info-v6 h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.team-info-v6 p {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mass Metrics */
.mass-metrics-section {
    background: #020617;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mass-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.mass-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mass-stat p {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Glassmorphism CTA */
.glass-cta-v6-section {
    background: #020617;
    padding: 120px 0;
    position: relative;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(234, 179, 8, 0.1) 0%, transparent 50%);
}

/* Responsive */
@media (max-width: 991px) {
    .mvv-glass-grid {
        grid-template-columns: 1fr;
    }

    .team-v6-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mass-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .timeline-v6-container::after {
        left: 31px;
    }

    .timeline-item-v6 {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item-v6.right {
        left: 0%;
    }

    .timeline-item-v6.left::after,
    .timeline-item-v6.right::after {
        left: 21px;
    }
}

@media (max-width: 768px) {
    .team-v6-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-v6 {
        font-size: 3rem;
    }
}