/* ============================================
   PAGES CSS (STATIC PAGES ONLY)
   about, faq, terms, dll
============================================ */


/* HERO KHUSUS PAGES (TANPA SEARCH) */
.fc-hero-about{
    margin-top:-18px; /* tarik ke atas nutup padding .fc-content */
}

/* ===============================
HERO ABOUT
=============================== */

.fc-hero-about{
    position:relative;
    overflow:hidden;

    /* keluar dari padding fc-content */
    margin-left:-4px;
    margin-right:-4px;
    margin-top:-16px;

    padding:50px 28px;
    border-radius:0 0 20px 20px;

    background:linear-gradient(135deg,#0d4c7d,#1e88e5);
    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.fc-hero-about::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-60px;
    right:-60px;
}

.fc-hero-text h1{
    font-size:28px;
    font-weight:800;
    line-height:1.2;
}

.fc-hero-text p{
    margin:12px 0 20px;
    opacity:0.9;
}



/* ===============================
SECTION CLEAN
=============================== */

.fc-section{
    margin-top:32px;
}

.fc-section:first-of-type{
    margin-top:0;
}

.fc-section-divider{
    height:1px;
    background:linear-gradient(to right,transparent,#d1d5db,transparent);
    margin:40px 0;
}

/* ===============================
TITLE
=============================== */

.fc-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

/* ===============================
HIGHLIGHT STRIP
=============================== */

.fc-highlight{
    background:#f3f7fb;
    border-left:4px solid #1e88e5;
    padding:14px 16px;
    border-radius:10px;
    font-size:14px;
    color:#333;
}

/* ===============================
BLOCK (VISI MISI)
=============================== */

/* VISI MISI → JADI CARD */
.fc-block{
    background:#ffffff;
    border:1px solid #e5e7eb;

    border-radius:16px;
    padding:20px;

    box-shadow:0 6px 16px rgba(0,0,0,0.04);

    height:100%;
}

/* rapihin spacing */
.fc-block h4{
    margin-bottom:8px;
}

.fc-block p,
.fc-block ul{
    margin-bottom:0;
}

/* TITLE VISI MISI */
.fc-block h4{
    font-size:18px;   /* sebelumnya terlalu gede */
    font-weight:700;
    margin-bottom:10px;
}


/* ===============================
VALUE CARD — CLEAN CENTER
=============================== */

.fc-value-card{
    background:#fff;
    border-radius:18px;

    /* HAPUS outline */
    border:none;

    padding:22px;

    /* height sama */
    height:100%;
    min-height:180px;

    /* center semua */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.2s;
}

.fc-value-card:hover{
    transform:translateY(-4px);
}

/* ICON */
.fc-value-icon{
    font-size:30px;
    margin-bottom:10px;
}

/* TITLE */
.fc-value-card h5{
    font-size:17px;
    font-weight:700;
    margin-bottom:6px;
}

/* DESC */
.fc-value-card p{
    font-size:13px;
    line-height:1.4;
    margin:0;
}

/* ===============================
PROGRAM LIST (NO CARD STYLE)
=============================== */

.fc-program-list{
    width:100%;
    max-width:100%; /* atau hapus saja */
    margin:0;
}

.fc-program{
    position:relative;

    display:flex;
    gap:14px;
    align-items:flex-start;

    background:linear-gradient(135deg,#0d4c7d,#1e88e5);
    color:#fff;

    
    padding:16px 18px;
    border-radius:14px;

    margin-bottom:12px;

    box-shadow:0 6px 16px rgba(0,0,0,0.08);
    transition:0.2s;
}

.fc-program:hover{
    transform:translateX(4px);
}

.fc-program::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:6px;
    background:#0dc0e6;
}

.fc-program-number{
    font-size:14px;
    font-weight:700;
    opacity:0.6;
    min-width:24px;
    margin-top:2px;
}

.fc-program h5{
    margin-bottom:4px;
}

.fc-program p{
    margin:0;
    font-size:13px;
    opacity:0.9;
}

/* ===============================
TEAM LIST (VERTICAL)
=============================== */

.fc-team-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* ROW */
.fc-team-row{
    display:flex;
    gap:18px;

    background:#fff;
    border-radius:18px;
    padding:18px;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    align-items:flex-start;
}

/* FOTO */
.fc-team-row .fc-team-photo{
    width:80px;
    height:80px;
    min-width:80px;

    border-radius:50%;
    overflow:hidden;
}

.fc-team-row .fc-team-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */
.fc-team-content h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
}

.fc-team-role{
    font-size:14px;
    color:#6b7280;
    font-style:italic;
    margin-bottom:8px;
}

.fc-team-content p{
    font-size:14px;
    line-height:1.5;
    color:#374151;
    margin:0;
}


/* OTHERS */
.fc-cta-final{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}