body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

.page-banner {
    padding: 80px 0;
    background: var(--theme-gradient);
}

.profil-container {
    padding: 60px 0 100px;
}

/* Shared card base */
.profil-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 35px 40px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .profil-card {
        padding: 25px 20px;
    }
}

/* Section heading inside card */
.profil-section-heading {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profil-section-heading i {
    color: var(--theme-primary);
    font-size: 22px;
}

.profil-divider {
    border-top: 1px dashed #e2e8f0;
    margin: 20px 0;
}

/* Visi & Misi */
.vm-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background-color: rgba(108, 197, 155, 0.12);
    border: 1px solid rgba(11, 92, 59, 0.15);
    border-radius: 50px;
    padding: 5px 16px;
}

.visi-text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.6;
    border-left: 4px solid var(--theme-primary);
    padding-left: 20px;
    margin: 0;
}

.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.misi-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.misi-num {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: var(--theme-mint-light);
    color: var(--theme-primary);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Direksi */
.direksi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.direksi-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.direksi-card:hover {
    border-color: var(--theme-secondary);
    box-shadow: var(--theme-shadow-hover);
    transform: translateY(-4px);
    background-color: #ffffff;
}

.direksi-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(11, 92, 59, 0.2);
    margin: 0 auto 15px;
    display: block;
    background-color: #e2e8f0;
}

.direksi-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--theme-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 15px;
    border: 3px solid rgba(11, 92, 59, 0.2);
}

.direksi-name {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
    font-family: 'Raleway', sans-serif;
}

.direksi-position {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-primary);
    margin-bottom: 6px;
}

.direksi-nip {
    font-size: 12px;
    color: #94a3b8;
}

/* Maklumat */
.maklumat-quote {
    background: linear-gradient(135deg, rgba(11, 92, 59, 0.04), rgba(11, 92, 59, 0.08));
    border: 1px solid rgba(11, 92, 59, 0.15);
    border-left: 5px solid var(--theme-primary);
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 25px;
}

.maklumat-quote p {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
    margin: 0;
    font-style: italic;
}

.maklumat-sign-area {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
    margin-top: 20px;
}

.maklumat-sign-name {
    font-size: 17px;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Raleway', sans-serif;
}

.maklumat-sign-title {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* Tata Nilai & Motto */
.nilai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.nilai-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nilai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nilai-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--theme-shadow-hover);
    border-color: rgba(11, 92, 59, 0.2);
}

.nilai-card:hover::before {
    opacity: 1;
}

.nilai-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(108, 197, 155, 0.12);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.nilai-card:hover .nilai-icon {
    background-color: var(--theme-primary);
    color: #ffffff;
}

.nilai-akronim {
    font-size: 28px;
    font-weight: 900;
    color: var(--theme-primary);
    font-family: 'Raleway', sans-serif;
    margin-bottom: 4px;
}

.nilai-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.nilai-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.motto-banner {
    background: var(--theme-gradient);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    margin-top: 30px;
    box-shadow: var(--theme-shadow-hover);
}

.motto-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.motto-text {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    margin: 0;
}
