/* ============================================
   About Page Styles
   Dark-themed design matching site design system
   ============================================ */

/* Page-specific CSS Variables */
.about-page {
    --lime-green: #D6F08D;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --darkest-bg: #0f3460;
    --text-muted: #adb5bd;
    --border-color: #2d3748;
}

/* Hero Section */
.about-page .hero-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.about-page .hero-section.hero-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-page .hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--lime-green);
    margin-bottom: var(--space-4);
}

.about-page .hero-subtitle {
    font-size: 1.3rem;
    color: var(--lime-green);
}

.about-page .hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 20px auto 0;
}

/* Section Title */
.about-page .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 25px;
}

/* Mission Card */
.about-page .mission-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.about-page .mission-card h3 {
    color: var(--lime-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-page .mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-page .mission-card p:last-child {
    margin-bottom: 0;
}

/* Partnership Badge */
.about-page .partnership-badge {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 2px solid var(--lime-green);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.about-page .partnership-badge h3 {
    color: var(--lime-green);
    margin-bottom: 15px;
}

.about-page .partnership-badge p {
    color: var(--text-muted);
}

.about-page .partnership-badge .badge-label {
    display: inline-block;
    background: var(--lime-green);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Expertise Cards */
.about-page .expertise-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.about-page .expertise-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
}

.about-page .expertise-card .expertise-icon {
    font-size: 2.5rem;
    color: var(--lime-green);
    margin-bottom: 15px;
}

.about-page .expertise-card h4 {
    color: var(--lime-green);
    margin-bottom: 10px;
}

.about-page .expertise-card p {
    color: var(--text-muted);
}

/* Team Section Placeholder */
.about-page .team-placeholder {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    color: var(--text-muted, #adb5bd);
}

.about-page .team-placeholder svg {
    color: var(--lime-green);
    opacity: 0.5;
}

.about-page .team-placeholder h4 {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.about-page .team-placeholder p {
    color: var(--text-muted);
}

/* Timeline */
.about-page .timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.about-page .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--lime-green);
}

.about-page .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.about-page .timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--lime-green);
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
}

.about-page .timeline-year {
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 0.25rem;
}

.about-page .timeline-item strong {
    color: #ffffff;
}

.about-page .timeline-item p {
    color: var(--text-muted);
}

/* CTA Section */
.about-page .cta-section {
    background: linear-gradient(135deg, var(--lime-green) 0%, #b8d66f 100%);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.about-page .cta-section h2 {
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.about-page .cta-section p {
    color: #1a1a2e;
}

/* Lime Button */
.about-page .btn-lime {
    background: var(--dark-bg);
    color: var(--lime-green);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about-page .btn-lime:hover {
    background: #0f3460;
    color: var(--lime-green);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-page .hero-title {
        font-size: var(--font-size-5xl);
    }

    .about-page .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .about-page .hero-description {
        font-size: var(--font-size-base);
    }

    .about-page .section-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 767px) {
    .about-page .hero-title {
        font-size: var(--font-size-4xl);
    }

    .about-page .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .about-page .hero-description {
        font-size: var(--font-size-sm);
    }

    .about-page .section-title {
        font-size: var(--font-size-xl);
    }

    .about-page .mission-card,
    .about-page .partnership-badge,
    .about-page .expertise-card {
        padding: 20px;
    }

    .about-page .cta-section {
        padding: 30px 20px;
    }
}
