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

/* About Hero */
.about-hero { padding-top: 140px; padding-bottom: 80px; }

/* About Story */
.about-image-wrapper {
    position: relative;
    height: 500px;
}
.about-img-card.main-img {
    width: 80%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0; right: 0;
}
.img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}
.about-img-card.floating-card {
    position: absolute;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}
.card-tl { top: 40px; left: 0; }
.card-br { bottom: 60px; left: 20px; }
.mini-stat .stat-num { display: block; font-size: 1.75rem; font-weight: 800; font-family: var(--font-display); }
.mini-stat .stat-label { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; }
.about-experience-badge {
    position: absolute;
    bottom: 0; right: 0;
    background: var(--teal-primary);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
}
.exp-num { display: block; font-size: 2rem; font-weight: 800; font-family: var(--font-display); color: #fff; }
.exp-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-family: var(--font-mono); text-transform: uppercase; }
.about-highlight-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}
.about-highlight-card:hover { border-color: var(--teal-primary); background: rgba(45,122,110,0.08); }
.about-highlight-card h4 { font-size: 1rem; font-weight: 700; margin: 8px 0 6px; font-family: var(--font-display); }
.about-highlight-card p { font-size: 0.825rem; color: var(--text-muted); margin: 0; }

/* Stats Section */
.stats-section { position: relative; }
.stats-bg-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(45,122,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.stat-card { padding: 40px 24px; text-align: center; position: relative; overflow: hidden; }
.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal-primary), transparent);
}
.stat-icon { font-size: 1.5rem; color: var(--teal-primary); margin-bottom: 16px; }
.stat-number { font-size: 3rem; font-weight: 800; font-family: var(--font-display); line-height: 1; display: inline; }
.stat-plus { font-size: 2rem; font-weight: 700; color: var(--teal-primary); display: inline; }
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 8px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; }

/* Vision Mission */
.vm-card { padding: 48px 40px; }
.vm-icon {
    width: 64px; height: 64px;
    background: var(--teal-gradient);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; margin-bottom: 24px;
}
.mission-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.vm-title { font-size: 1.75rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 16px; }
.vm-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.vm-list { list-style: none; padding: 0; margin: 0; }
.vm-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--text-muted); }
.vm-list li i { flex-shrink: 0; }

/* Founder Section */
.founder-image-wrapper { position: relative; }
.founder-img {
    width: 100%; aspect-ratio: 4/5;
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
}
.founder-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.founder-quote {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    border-left: 3px solid var(--teal-primary);
    padding-left: 24px;
    margin: 24px 0 32px;
    font-style: italic;
}
.founder-signature { border-top: 1px solid var(--border-color); padding-top: 24px; }
.signature-name { font-size: 1.2rem; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); }
.signature-title { font-size: 0.875rem; color: var(--teal-primary); font-family: var(--font-mono); }

/* Timeline */
.timeline-wrapper { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, transparent, var(--teal-primary), transparent);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 48px;
}
.timeline-item.left { justify-content: flex-end; padding-right: calc(50% + 40px); }
.timeline-item.right { justify-content: flex-start; padding-left: calc(50% + 40px); }
.timeline-content { padding: 28px 32px; max-width: 340px; }
.timeline-year {
    font-size: 0.75rem; font-family: var(--font-mono);
    color: var(--teal-primary); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 8px;
}
.timeline-content h4 { font-size: 1.1rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 8px; }
.timeline-content p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.7; }
.timeline-dot {
    position: absolute; left: 50%; top: 28px;
    width: 16px; height: 16px;
    background: var(--teal-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(45,122,110,0.5);
}

/* Values */
.value-card { padding: 40px 32px; position: relative; overflow: hidden; }
.value-number {
    position: absolute; top: 20px; right: 24px;
    font-size: 3.5rem; font-weight: 800; font-family: var(--font-display);
    color: rgba(255,255,255,0.03); line-height: 1;
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h4 { font-size: 1.2rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 12px; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Awards */
.award-card { padding: 40px 24px; }
.award-icon { font-size: 2.5rem; color: var(--teal-accent); margin-bottom: 16px; display: block; }
.award-card h5 { font-size: 1rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 8px; }
.award-org { font-size: 0.8rem; color: var(--teal-primary); font-family: var(--font-mono); margin: 0; }

/* Team CTA */
.team-cta-card { padding: 80px 60px; }

/* Responsive */
@media (max-width: 768px) {
    .timeline-line { left: 20px; }
    .timeline-item.left,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 56px;
        padding-right: 0;
    }
    .timeline-dot { left: 20px; }
    .about-image-wrapper { height: 300px; }
    .about-img-card.main-img { width: 100%; height: 260px; }
    .card-tl, .card-br { display: none; }
    .about-experience-badge { position: static; margin-top: 16px; display: inline-flex; gap: 12px; align-items: center; }
    .team-cta-card { padding: 40px 24px; }
}
