/* =========================
   About Page Styles
   ========================= */

.page-hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), var(--bg-image) center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
    border-radius: 28px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    z-index: 2;
    position: relative;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin: 0 0 20px;
}

.page-hero .sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.hero-band {
    height: 200px;
    margin-bottom: 60px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-band.bg-img-3 {
    background: var(--bg-image) center/cover;
}

.hero-band-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.hero-band-text h2 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 32px;
}

.about {
    max-width: 1200px;
    margin: 0 auto;
}

.content-grid-staggered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.content-grid-staggered.reverse {
    direction: rtl;
}

.content-grid-staggered.reverse>* {
    direction: ltr;
}

.text-block h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--ink);
}

.text-block p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.glass-card-center {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 48px;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-center-large {
    font-size: 6rem !important;
    line-height: 1;
}

.stat-item span {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 700;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 2;
}

.values-item-bordered {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.values-item {
    padding: 10px 0;
}

.history-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

/* Animations */
.animate-enter {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 980px) {
    .content-grid-staggered {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid-staggered.reverse {
        direction: ltr;
        /* Reset direction for mobile so text/image order is consistent if desired */
    }

    .content-grid-staggered.reverse>* {
        direction: ltr;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .hero-band-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 100px 20px 60px;
    }

    .page-hero h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    .stat-row {
        flex-direction: column;
        gap: 32px;
    }

    .stat-item strong {
        font-size: 42px;
    }

    .stat-center-large {
        font-size: 72px;
    }

    .hero-band {
        height: auto;
        min-height: 180px;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-band-text {
        padding: 24px;
        width: 100%;
    }

    .glass-card {
        padding: 24px !important;
        /* Force override inline styles if any */
    }

    /* History Card Polish */
    .history-card {
        margin-bottom: 60px;
    }
}