/* ============================================================
   ABOUT US PAGE - CUSTOM STYLES
   ============================================================ */

/* --- PAGE TITLE BANNER --- */
.page-title {
    position: relative;
    overflow: hidden;
}
.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bsf-accent), var(--bsf-primary), var(--bsf-accent));
}

/* --- CALL TO ACTION SECTION --- */
.bsf-ap-cta {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, var(--bsf-primary) 0%, var(--bsf-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.bsf-ap-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,135,42,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.bsf-ap-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,135,42,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.bsf-ap-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.bsf-ap-cta-content {
    flex: 1;
}
.bsf-ap-cta-content .bsf-subtitle {
    display: inline-block;
    color: var(--bsf-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.bsf-ap-cta-content h2 {
    color: var(--bsf-white) !important;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}
.bsf-ap-cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
}
.bsf-ap-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bsf-accent) !important;
    color: var(--bsf-white) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(232,135,42,0.4);
}
.bsf-ap-cta-btn:hover {
    background: var(--bsf-white) !important;
    color: var(--bsf-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

/* --- MISSION & VISION SECTION --- */
.bsf-ap-features {
    padding: 60px 0;
    background: var(--bsf-light);
}
.bsf-ap-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.bsf-ap-feature-card {
    background: var(--bsf-white);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--bsf-border);
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.bsf-ap-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bsf-accent), var(--bsf-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.bsf-ap-feature-card:hover::before {
    transform: scaleX(1);
}
.bsf-ap-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11,37,69,0.12);
    border-color: transparent;
}
.bsf-ap-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--bsf-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(232,135,42,0.15);
}
.bsf-ap-feature-card:hover .bsf-ap-feature-icon {
    background: var(--bsf-accent-light);
    border-color: var(--bsf-accent);
    transform: scale(1.08);
}
.bsf-ap-feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.bsf-ap-feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--bsf-primary);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
.bsf-ap-feature-card h3 a {
    color: inherit !important;
    text-decoration: none;
}
.bsf-ap-feature-text {
    color: var(--bsf-text-body);
    font-size: 14px;
    line-height: 1.7;
}
.bsf-ap-feature-text p {
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .bsf-ap-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    .bsf-ap-cta-content p {
        max-width: 100%;
    }
    .bsf-ap-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .bsf-ap-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bsf-ap-feature-card {
        padding: 25px 20px;
    }
    .bsf-ap-cta-content h2 {
        font-size: 24px;
    }
    .bsf-ap-cta-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}
