/* ═══════════════════════════════════════
   REBHNI ABOUT PAGE
   Depends on: public/css/saas/design-system.css
   ═══════════════════════════════════════ */

/* --- Hero --- */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,148,136,0.07) 0%, transparent 60%),
        var(--charcoal-deep);
}

/* --- Story --- */
.story-content { max-width: 800px; margin: 0 auto; }
.story-block {
    padding: 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--teal);
}
[dir="rtl"] .story-block { border-left: none; border-right: 3px solid var(--teal); }
.story-block h3 { color: var(--teal-light); font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }
.story-block p { color: var(--gray-400); line-height: 1.85; font-size: 0.95rem; }

/* --- Timeline --- */
.about-timeline { position: relative; margin-top: 48px; padding-inline-start: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--teal) 0%, rgba(13,148,136,0.1) 100%);
}
[dir="rtl"] .about-timeline::before { right: 16px; left: auto; }
[dir="ltr"] .about-timeline::before { left: 16px; right: auto; }

.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--charcoal-deep);
    top: 4px;
}
[dir="rtl"] .timeline-dot { right: -38px; }
[dir="ltr"] .timeline-dot { left: -38px; }
.timeline-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; font-weight: 700; }
.timeline-item p { color: var(--gray-400); font-size: 0.92rem; line-height: 1.75; }

/* Light section timeline overrides */
.section-light .timeline-item h4 { color: var(--charcoal); }
.section-light .timeline-item p { color: var(--gray-600); }
.section-light .timeline-dot { border-color: var(--paper); }
.section-light .about-timeline::before { background: linear-gradient(180deg, var(--teal) 0%, rgba(13,148,136,0.08) 100%); }

/* --- Mission & Vision --- */
.about-mission-vision .card { padding: 40px; }
.mission-icon, .vision-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.mission-icon { background: rgba(13,148,136,0.12); color: var(--teal-light); }
.vision-icon { background: rgba(245,158,11,0.12); color: var(--amber); }
.section-light .mission-icon { background: rgba(13,148,136,0.08); color: var(--teal); }
.section-light .vision-icon { background: rgba(245,158,11,0.08); color: var(--amber); }

/* --- Stats --- */
.stat-box { text-align: center; padding: 32px 16px; }
.stat-box h3 { font-size: 2rem; font-weight: 900; color: var(--teal-light); font-family: var(--font-heading); margin-bottom: 8px; }
.stat-box [data-count] { font-size: 2rem; font-weight: 900; color: var(--teal-light); font-family: var(--font-heading); }
.stat-box p { color: var(--gray-400); font-size: 0.88rem; }

/* --- Values --- */
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13,148,136,0.15) 0%, rgba(13,148,136,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    font-size: 1.2rem;
}
.section-light .value-icon { background: rgba(13,148,136,0.08); color: var(--teal); }

/* --- Team --- */
.team-card { text-align: center; }
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}
.team-title { color: var(--teal-light); font-weight: 600; margin-top: 4px; font-size: 0.88rem; }
.section-light .team-title { color: var(--teal); }

/* --- Awards --- */
.award-card { text-align: center; padding: 32px; }
.award-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

/* --- Culture --- */
.culture-card { text-align: center; padding: 32px; }

/* --- Investors --- */
.investor-highlight {
    background: rgba(13,148,136,0.06);
    border: 1px solid rgba(13,148,136,0.12);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.section-light .investor-highlight {
    background: rgba(13,148,136,0.04);
    border-color: rgba(13,148,136,0.1);
}

/* --- CTA --- */
.about-cta { margin-top: 80px; padding: 64px 32px; text-align: center; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .about-hero { min-height: 50vh; }
    .story-block { padding: 20px; }
    .stat-box h3, .stat-box [data-count] { font-size: 1.6rem; }
    .about-mission-vision .card { padding: 24px; }
    .team-avatar { width: 64px; height: 64px; font-size: 1.4rem; }
    .investor-highlight { padding: 32px 20px; }
    .about-cta { padding: 48px 20px; }
}
