/* ============================================================
   APEX SHARES — ABOUT PAGE STYLES
   Extracted from about.blade.php
   ============================================================ */

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #0B1F3A 0%, #1A3A6B 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(74, 127, 199,0.06);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(74, 127, 199,0.05);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.page-hero .breadcrumb-item a {
    color: #4A7FC7;
    text-decoration: none;
}

.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.8); }

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.35);
}

/* ===== WHO WE SERVE ===== */
.who-section {
    padding: 90px 0;
    background: #fff;
}

.about-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
}

.about-stat-box {
    flex: 1;
    min-width: 140px;
    background: #F8FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.about-stat-box:hover {
    border-color: #4A7FC7;
    background: rgba(74, 127, 199,0.04);
}

.about-stat-box .stat-n {
    font-size: 2rem;
    font-weight: 800;
    color: #4A7FC7;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-stat-box .stat-l {
    color: #6B7280;
    font-size: 0.82rem;
    margin-top: 4px;
    font-weight: 400 !important;
}

/* ===== MISSION/VISION ===== */
.mission-section {
    padding: 90px 0;
    background: #F8FAFB;
}

.mission-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    height: 100%;
    border: 1.5px solid #E5E7EB;
    transition: all 0.3s;
}

.mission-card:hover {
    border-color: rgba(74, 127, 199,0.35);
    box-shadow: 0 16px 40px rgba(11,31,58,0.07);
    transform: translateY(-3px);
}

.mission-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0B1F3A, #1A3A6B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A7FC7;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 10px;
}

.mission-card p {
    color: #6B7280;
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 400 !important;
    margin: 0;
}

/* ===== HISTORY / STORY ===== */
.story-section {
    padding: 90px 0;
    background: #fff;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.story-experience {
    position: absolute;
    top: 28px; right: 28px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    text-align: center;
}

.story-experience .exp-num {
    font-size: 2rem;
    font-weight: 800;
    color: #4A7FC7;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.story-experience .exp-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400 !important;
}

/* ===== SKILLS ===== */
.skill-item { margin-bottom: 20px; }

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0B1F3A;
}

.skill-bar {
    background: #E5E7EB;
    border-radius: 30px;
    height: 8px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, #4A7FC7, #35619E);
    position: relative;
    transition: width 1.5s ease;
}

/* ===== TEAM ===== */
.team-section {
    padding: 90px 0;
    background: #F8FAFB;
}

.team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid #E5E7EB;
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    border-color: rgba(74, 127, 199,0.3);
    box-shadow: 0 16px 40px rgba(11,31,58,0.08);
    transform: translateY(-4px);
}

.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #0B1F3A, #1A3A6B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(74, 127, 199,0.6);
}

.team-body { padding: 24px; }

.team-name {
    font-weight: 700;
    color: #0B1F3A;
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-role {
    color: #4A7FC7;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    color: #6B7280;
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 400 !important;
}

/* ===== TRADING WIDGETS ===== */
.about-trading {
    padding: 80px 0;
    background: #F8FAFB;
}

/* ===== CTA ===== */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A7FC7 0%, #35619E 100%);
}

.about-cta h2 { color: #0B1F3A; font-weight: 800; }
.about-cta p { color: rgba(11,31,58,0.72); font-weight: 400 !important; }
