/* =========================================
   ABOUT.CSS - About Page Styles
   Uses design tokens from base.css
   ========================================= */

/* =========================================
   1. HERO SECTION
   ========================================= */
.about-hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    padding: 140px 0 100px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================================
   2. ABOUT SECTIONS
   ========================================= */
.about-section {
    padding: 80px 0;
}

.about-section.alt {
    background: var(--bg-surface);
}

/* =========================================
   3. STORY SECTION GRID
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.08));
    border-radius: var(--radius-xxl);
    padding: 80px;
}

.about-image i {
    font-size: 120px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   4. VALUES SECTION
   ========================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-xxl);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(249, 115, 22, 0.3);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #FFF7ED, #FEF3C7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-sm);
}

.value-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   5. TIMELINE SECTION
   ========================================= */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-orange), var(--secondary-gold));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

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

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: var(--bg-white);
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.timeline-content {
    background: var(--bg-white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.2);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   6. CTA SECTION
   ========================================= */
.cta-about {
    background: linear-gradient(135deg, #0f1724 0%, #1E3A5F 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.cta-about p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-about .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

/* =========================================
   7. RESPONSIVE
   ========================================= */
@media (max-width: 968px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero p {
        font-size: 18px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
        padding: 60px;
    }

    .about-image i {
        font-size: 80px;
    }

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

    .about-content h2 {
        font-size: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline::before {
        left: 4px;
    }

    .timeline-dot {
        left: -32px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-image {
        padding: 48px;
    }

    .about-image i {
        font-size: 60px;
    }

    .value-card {
        padding: 32px 24px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 26px;
    }

    .cta-about {
        padding: 80px 0;
    }

    .cta-about h2 {
        font-size: 28px;
    }

    .cta-about p {
        font-size: 17px;
    }
}
