/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Corporate Hero */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #202020 100%);
    color: white;
    padding: 110px 8% 140px 8%;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.about-hero h1 span {
    color: var(--primary-red);
}

.about-hero p {
    font-size: 1.2rem;
    color: #bbb;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

/* Narrative Section */
.narrative-block {
    max-width: 1200px;
    margin: -60px auto 100px auto;
    padding: 0 8%;
    position: relative;
    z-index: 10;
}

.narrative-card {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.narrative-left h2 {
    font-size: 2.4rem;
    color: var(--dark-bg);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.narrative-left h2 span {
    color: var(--accent-blue);
}

.narrative-left p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.narrative-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Timeline Area */
.timeline-section {
    background: var(--light-grey);
    padding: 100px 8%;
    text-align: center;
}

.timeline-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.timeline-section .lead-p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.timeline-wrapper {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
    position: relative;
}

.timeline-column {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.timeline-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ddd;
    transition: var(--transition-smooth);
}

.timeline-column:hover,
.timeline-column.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: #ccc;
}

.timeline-column:hover::before,
.timeline-column.active::before {
    background: var(--primary-red);
}

.time-epoch {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 10px;
    display: block;
}

.timeline-column h3 {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.timeline-column p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Global Strategic Hubs */
.hubs-section {
    padding: 100px 8%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.hubs-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.hubs-section h2 span {
    color: var(--primary-red);
}

.hubs-section .lead-p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px auto;
}

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

.exec-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    text-align: left;
}

.exec-img-container {
    height: 320px;
    overflow: hidden;
    background: #eee;
    position: relative;
}

.exec-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.exec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: #ddd;
}

.exec-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.exec-details {
    padding: 25px;
    border-top: 1px solid var(--border-color);
}

.exec-details h3 {
    font-size: 20px;
    color: var(--dark-bg);
    margin-bottom: 4px;
    font-weight: 700;
}

.exec-details p {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.exec-bio {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Action Bar */
.about-cta {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center center/cover;
    color: white;
    padding: 90px 8%;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 650px;
    margin: 0 auto 35px auto;
    font-weight: 300;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .narrative-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    .timeline-wrapper {
        flex-direction: column;
    }
    .timeline-column::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
}
