/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* About Hero */
.about-hero {
    min-height: 55vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920") center/cover;
    position: relative;
    margin-top: 60px;
    padding: 6.5rem 0 4rem;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

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

.about-hero .breadcrumb {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-align: left;
}

.about-hero .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.about-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

.about-hero .breadcrumb span {
    margin: 0 0.5rem;
}

.about-hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-hero-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.95;
}

/* Intro */
.about-intro {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-intro-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.about-badge {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

[data-theme="dark"] .about-badge {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.35);
}

.about-intro-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Values */
.about-values {
    padding: 5rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--light-color);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}

[data-theme="dark"] .value-card {
    border-color: rgba(255, 255, 255, 0.12);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 7, 0.8);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Timeline */
.about-timeline {
    padding: 5rem 0;
    background: var(--light-color);
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

[data-theme="dark"] .timeline-item {
    border-color: rgba(255, 255, 255, 0.12);
}

.timeline-year {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark-color);
    background: var(--primary-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
}

.timeline-content h3 {
    margin: 0 0 0.4rem;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats */
.about-stats {
    padding: 4.5rem 0;
    background: var(--primary-color);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

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

.about-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #2C2C2C;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.about-stat-label {
    font-size: 1.05rem;
    color: #2C2C2C;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-media img {
        height: 320px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-year {
        width: fit-content;
    }
}

@media (max-width: 375px) {
    .about-hero {
        padding: 6rem 0 3rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

