/* ==========================================================================
   ABOUT PAGE STYLES (DEDICATED MODULAR STYLESHEET)
   Magnate Finance & Investment Consultants
   ========================================================================== */

/* ---- Section Padding Utility (Full Width Sections) ---- */
.about-padding {
    padding: 120px 24px;
    box-sizing: border-box;
    width: 100%;
}
@media (max-width: 768px) {
    .about-padding {
        padding: 80px 16px;
    }
}
@media (max-width: 425px) {
    .about-padding {
        padding: 60px 16px;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.about-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2a4a 100%);
    padding: 100px 24px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}
.about-hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.about-hero-content {
    flex: 1 1 420px;
}
.about-h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 12px 0 20px;
}
.about-sub {
    display: block;
    font-size: 20px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 24px;
}
.about-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 36px;
}
.about-hero-img {
    flex: 1 1 380px;
}
.about-hero-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevation);
    max-height: 440px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .about-h1 {
        font-size: 34px;
    }
    .about-hero-img {
        display: none;
    }
}

/* =========================================
   WHO WE ARE
   ========================================= */
.who-section {
    background: white;
}
.who-container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}
.who-narrative {
    flex: 1 1 360px;
}
.narrative-p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 24px;
}
.trust-container {
    background: var(--bg-off-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
}
.trust-line {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}
.trust-micro {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}
.micro-item {
    font-weight: 500;
}
.who-highlights {
    flex: 1 1 380px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.highlight-point {
    background: var(--bg-off-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.2s;
}
.highlight-point:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}
.point-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 15px;
    margin-bottom: 10px;
}
.point-icon {
    color: var(--primary-green);
    font-size: 22px;
}
.point-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* =========================================
   WHO WE SERVE
   ========================================= */
.serve-section {
    background: var(--bg-off-white);
}
.serve-container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.serve-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}
.serve-item {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    flex: 1 1 240px;
    max-width: 300px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.2s;
}
.serve-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation);
    border-color: var(--primary-green);
}
.serve-icon {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 18px;
    display: block;
}
.serve-title {
    font-size: 19px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}
.serve-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   OUR CORE VALUES
   ========================================= */
.values-section {
    background: white;
}
.values-container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}
.value-item {
    background: var(--bg-off-white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    flex: 1 1 240px;
    max-width: 320px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.2s;
}
.value-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation);
    background: white;
}
.value-icon-box {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.value-title {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}
.value-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   LEADERSHIP & OVERSIGHT
   ========================================= */
.leadership-section {
    background: linear-gradient(135deg, #f0f6f3 0%, #e8f4ef 100%);
}
.leadership-container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}
.leadership-narrative {
    flex: 1 1 380px;
}
.leadership-narrative .section-header {
    text-align: left;
}
.leadership-narrative .section-header h2 {
    color: var(--primary-navy);
}
.leadership-p {
    font-size: 17px;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
}
.leadership-p-sm {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.leadership-profile {
    flex: 1 1 380px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-elevation);
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
@media (max-width: 600px) {
    .leadership-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.leader-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-off-white);
    flex-shrink: 0;
}
.leader-info {
    flex: 1;
}
.leader-name {
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 4px;
    font-weight: 800;
}
.leader-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 16px;
}
.leader-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .leader-creds {
        justify-content: center;
    }
}
.cred-badge {
    background: var(--bg-off-white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
}
.leader-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* =========================================
   OUR APPROACH
   ========================================= */
.approach-section {
    background: white;
}

/* =========================================
   CREDENTIALS & COMPLIANCE
   ========================================= */
.credentials-section {
    background: var(--bg-off-white);
}
.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: var(--max-width);
    margin: 48px auto 0;
}
.cred-col {
    flex: 1 1 360px;
    background: white;
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.cred-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-off-white);
}
.cred-col-header i {
    color: var(--primary-green);
    font-size: 24px;
}
.cred-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-off-white);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}
.cred-item:last-child {
    border-bottom: none;
}
.cred-item i {
    color: var(--primary-green);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* =========================================
   OUR JOURNEY (TIMELINE)
   ========================================= */
.journey-section {
    background: white;
}
.timeline {
    max-width: 720px;
    margin: 48px auto 0;
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--primary-green));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    background: var(--bg-off-white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.2s;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item:hover {
    box-shadow: var(--shadow-subtle);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 24px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-green);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-green);
}
.timeline-year {
    display: inline-block;
    font-weight: 800;
    font-size: 15px;
    color: white;
    background: var(--accent-gold);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.timeline-title {
    font-size: 19px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
